.campaign-page .campaign-logo {
    top: 0;
}

.campaign-page .campaign-title h2 {
    position: absolute;
    top: 25px;
    font-family: "Fira Sans Condensed", sans-serif;
    text-transform: capitalize;
    color: rgb(31, 39, 89);
    letter-spacing: 0.02em;
    overflow: hidden;
    padding: 5px 0;
}

/* Specific styling for the '50 Years' part */
.campaign-page .campaign-title h2 .gold-text {
    color: #e4ac03;
    font-weight: 800;
    background: linear-gradient(to bottom, #f7d781 0%, #e4ac03 50%, #b88a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
}

/* Shine effect on hover */
.campaign-page .campaign-title h2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

.campaign-page .campaign-title h2:hover::after {
    animation: shine 1.75s ease-in-out;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

/*  */

.g-swiper .g-swiper-slider .swiper-slide .swiper-bg {
    background-position: top;
}

/* Jubilee Button Styles */
.j-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
}

.j-button-container a {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out, transform 0.8s ease-out;
    background-color: #1f2759;
    /* Default Blue */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 auto;
    min-width: 200px;
    opacity: 0;
    transform: translateY(20px);
}

.j-button-container a.reveal {
    opacity: 1;
    transform: translateY(0);
}

.j-button-container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #2a3574 !important;
    /* Slightly lighter blue */
    color: #ffffff;
}

/* First button - Golden */
.j-button-container a:first-child {
    background: linear-gradient(135deg, #f7d781 0%, #e4ac03 50%, #b88a00 100%);
    color: #1f2759;
    box-shadow: 0 4px 15px rgba(228, 172, 3, 0.4);
}

.j-button-container a:first-child:hover {
    background: linear-gradient(135deg, #fce4a8 0%, #f7c123 50%, #d4a000 100%);
    box-shadow: 0 8px 25px rgba(228, 172, 3, 0.6);
    color: #1f2759;
}

/* Sign up button - Red */
.j-button-container a[href*="signupgenius"] {
    background-color: #ac1f23;
    color: #ffffff;
}

.j-button-container a[href*="signupgenius"]:hover {
    background-color: #c4262b !important;
    /* Brighter red, NOT white */
    color: #ffffff;
}

/*  */

#g-bottom {
    padding: 2rem !important;
}

/* Box Container & Grid Styling */
.box-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 40px 0;
    margin: 0 auto;
    max-width: 1600px;
}

.box {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(31, 39, 89, 0.08);
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.box.reveal {
    opacity: 1;
    transform: translateY(0);
}

.box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(31, 39, 89, 0.12);
    border-color: #e4ac03;
}

.box i {
    font-size: 3.5rem;
    color: #e4ac03;
    /* margin-bottom: 45px; */
    padding: 1rem 0;
    display: block;
}

.box h3 {
    font-family: "Fira Sans Condensed", sans-serif;
    color: #1f2759;
    font-size: 1.75rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.box p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1.15rem;
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
}

/* Container Background Swoosh */
#g-container-main {
    position: relative;
    z-index: 1;
}

#g-container-main::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -15%;
    width: 60%;
    height: 110%;
    background: linear-gradient(165deg,
            rgba(31, 39, 89, 0.04) 0%,
            rgba(228, 172, 3, 0.08) 40%,
            transparent 75%);
    clip-path: ellipse(95% 100% at 0% 50%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

@media (max-width: 768px) {
    #g-bottom {
        padding: 2rem 0 !important;
    }

    .box-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

#g-sidebar,
#g-mainbar,
#g-aside {
    background: transparent !important;
}