

        .register-card {
            display: flex !important;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;            
            max-width: 500px;       /* Fixed width for centered look */
            min-height: 100px;
            padding: 24px;
            
            /* Visual Style */
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            
            /* REMOVE ROUNDING */
            border-radius: 0; 
            
            color: #ffffff !important;
            text-decoration: none !important;
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .register-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .register-card { 
                width: 95%; 
                font-size: 1rem;
                min-height: 90px;
            }
            .register-options {
                gap: 25px; 
            }
            .hero h1 {
                font-size: 18vw;
            }
        }

/* ---------------- Reset ---------------- */
* {
    margin: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

body {
    color: white;
    background: #000;
}

/* ---------------- Landing Section ---------------- */
.landing-extra {
    position: relative;
    height: 80vh;
    overflow: hidden;
    padding-top: 70px;
}

.landing {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 70px;
}

/* ---------------- Header ---------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(160, 160, 160, 0.2);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.50) 60%,
        rgba(0,0,0,0.25) 90%,
        transparent 100%
    );
    backdrop-filter: blur(8px);
    z-index: -1;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.10),
        transparent
    );
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
}

/* ---------------- Background ---------------- */
.background {
    width: 100%;
    position: absolute;
    inset: 0;
    background: url("background.jpg") center/cover no-repeat;
    filter: brightness(.6);
    transform: scale(1.1);
    z-index: -1;
    /* fade toward bottom */
    mask-image: linear-gradient(to bottom, black 0%, black 25%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 25%, transparent 100%);
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(16px);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 40%, black 80%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 40%, black 80%, black 100%);
}

/* ---------------- Emblem / Scroll ---------------- */
#scroll-next {
    background: rgba(255, 255, 255, 0.593);
    border: none;
    color: black;
    padding: 8px 12px;
    margin-left: 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

#scroll-next:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(2px);
}

.main-emblem {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    flex-shrink: 0;
}

/* ---------------- Horizontal Section Layout ---------------- */
.page-heading {
    font-size: 6vw;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-align: center;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.horizontal {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 6rem 2rem;
}

.horizontal p {
    line-height: 1.6;
}

/* ---------------- Landing Grid ---------------- */
.layout {
    position: relative;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 2rem;
}

/* ---------------- Navigation ---------------- */
.nav {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .15em;
}

/* ---------------- Hero ---------------- */
.hero {
    align-self: end;
}

.hero h1, 
.hero h2 {
    font-weight: 900;
    line-height: .82;
    letter-spacing: -0.05em;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1.4s ease forwards;
    animation-delay: .4s;
}

.hero h1 { font-size: 12vw; }
.hero h2 { font-size: 10vw; }

/* ---------------- Buttons ---------------- */
.committee-button {
    display: inline-block;
    margin-right: 12px;
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all .2s ease;
}

.committee-button:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* ---------------- Register Forms ---------------- */
.register-container {
    margin: 4rem auto;
    padding: 0 2rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-form label {
    font-size: 0.85rem;
    opacity: .75;
}

.register-form input,
.register-form select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
}

.register-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.register-form button {
    margin-top: 1rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 10px 14px;
    cursor: pointer;
    transition: all .2s;
}

.register-form button:hover {
    background: rgba(255,255,255,0.15);
}

/* ---------------- Animations ---------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------- Footer ---------------- */
.footer {
    font-size: 12px;
    opacity: .7;
}

.footnote {
    margin: 6rem auto 1rem auto;
    padding: 2rem 2rem 0 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    color: #ddd;
}

/* ---------------- Team Section ---------------- */
.team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.team-row.reverse {
    flex-direction: row-reverse;
}

.team-image {
    width: 220px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

/* ---------------- Contact ---------------- */
.contact-container {
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-container h3 {
    margin-bottom: 1.5rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.9rem;
    letter-spacing: .05em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.contact-block p {
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.contact-block a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-block a:hover {
    border-color: white;
}

/* ---------------- Hamburger Menu ---------------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    display: block;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ---------------- Mobile Styles ---------------- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 90%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.1);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        margin: 0.6rem 0;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    #scroll-next {
        display: none;
    }

    /* Responsive Hero & Layout */
    .horizontal,
    .team-row,
    .team-row.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 18vw;
        line-height: 0.9;
    }

    .page-heading {
        font-size: 12vw;
        padding: 2rem 1rem;
    }

    .main-emblem,
    .team-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .horizontal p {
        max-width: 100%;
        font-size: 0.95rem;
        margin: 0 auto;
    }

    .committee-button {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .register-container,
    .contact-container,
    .form-wrapper {
        margin: 2rem auto;
        padding: 0 1.2rem;
        width: 95%;
    }

    .footnote {
        text-align: center;
        margin-top: 4rem;
        padding: 2rem 1rem 0 1rem;
    }

    .landing {
        height: 85vh;
    }
}

/* ---------------- Additional Team Section ---------------- */
.bullcrap {
    max-width: 2560px;
    margin: 0 auto;
    padding: 2rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    color: #ccc;
}

/* Stylized horizontal line */
hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    margin: 0;
}

/* Mobile Responsiveness - Stack them on small screens */
@media (max-width: 600px) {
    .team-row {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }
}

/* About Section Mobile Stacking */
@media (max-width: 768px) {
    .about-text {
        display: flex;
        flex-direction: column;
    }

    .about-text h3,
    .about-text p:first-of-type {
        order: 1;
    }

    .main-emblem {
        order: 2;
        margin: 2rem 0;
    }

    .about-text p:last-of-type {
        order: 3;
        width: 100%;
    }

    .committee-button {
        display: block;
        width: 100%;
        margin: 0;
    }
}