/* Enhanced Glacier Effect and Premium Info Card */
.premium-glacier-section {
    padding: 60px 0;
    position: relative;
}

.glacier-card-v2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.theme-light .glacier-card-v2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    border: 1px solid rgba(16, 35, 90, 0.1);
    box-shadow: 0 20px 40px rgba(16, 35, 90, 0.08);
}

.glacier-card-v2:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--accent-primary);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.glacier-card-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 185, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: transform 0.8s ease;
}

.glacier-card-v2:hover::before {
    transform: translate(10%, 10%);
}

.premium-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.premium-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
}

body.theme-light .premium-content h3 {
    background: linear-gradient(to right, black, #0e3573);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

body.theme-light .premium-content p {
    color: #475569;
}

.premium-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(242, 185, 21, 0.15);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(242, 185, 21, 0.3);
}

.commitment-box {
    background: var(--accent-primary);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(242, 185, 21, 0.2);
}

.commitment-box:hover {
    transform: rotate(-1deg) scale(1.05);
}

.commitment-box h4 {
    color: #000;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commitment-box p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}
body.theme-light .commitment-box h4 {
    color: #fff;
}

body.theme-light .commitment-box p {
    color: #fff;
}

.premium-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.glacier-card-v2:hover .premium-icon {
    transform: rotate(15deg) scale(1.1);
    background: var(--accent-primary);
    color: #000;
}
body.theme-light .glacier-card-v2:hover .premium-icon {
    color: #fff;
}

@media (max-width: 992px) {
    .premium-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.about-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 6%, rgba(242, 185, 21, 0.16), transparent 38%),
                radial-gradient(circle at 88% 16%, rgba(55, 109, 237, 0.18), transparent 42%);
    pointer-events: none;
}

.about-hero-panel,
.about-why-section,
.about-stats-section {
    position: relative;
    z-index: 1;
}

.about-hero-panel {
    padding: 34px 0 26px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(5, 17, 52, 0.22);
    backdrop-filter: blur(6px);
}

.about-kicker {
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f2b915;
    margin-bottom: 10px;
}

.about-hero-copy h2 {
    font-size: clamp(1.65rem, 3.8vw, 2.55rem);
    line-height: 1.18;
    margin-bottom: 12px;
}

.about-hero-copy p {
    color: rgba(245, 248, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.66;
    margin-bottom: 10px;
}

.about-highlight-list {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-highlight-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(242, 185, 21, 0.25);
    background: rgba(242, 185, 21, 0.08);
    color: #f9dd89;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.about-highlight-list span:hover {
    transform: translateY(-5px);
    background: rgba(242, 185, 21, 0.18);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(242, 185, 21, 0.15);
    /* color: #fff; */
}

body.theme-light .about-highlight-list span {
    color: #10235a;
    background: rgba(16, 35, 90, 0.05);
    border-color: rgba(16, 35, 90, 0.12);
}

body.theme-light .about-highlight-list span:hover {
    background: #10235a;
    /* color: #fff; */
    border-color: #10235a;
    box-shadow: 0 8px 20px rgba(16, 35, 90, 0.15);
}

/* Mobile Optimization for Chips */
@media (max-width: 768px) {
    .about-highlight-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        flex-wrap: nowrap;
    }

    .about-highlight-list span {
        padding: 8px 10px;
        font-size: 0.75rem;
        border-radius: 10px;
        justify-content: center;
        text-align: center;
        white-space: normal;
        height: 100%;
    }

    .about-highlight-list span i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-highlight-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .about-highlight-list span:last-child {
        grid-column: span 2;
    }
}

.about-hero-media {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.about-hero-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #3d3c39;
    box-shadow: 0 12px 28px rgba(6, 16, 46, 0.3)    ;
    transition: transform 0.7s ease;
}

.about-hero-media:hover img {
    transform: scale(1.05);
}

.about-why-section {
    padding: 16px 0 18px;
}

.about-section-head {
    text-align: center;
    margin: 0 auto 18px;
    max-width: 880px;
}

.about-section-head h3 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    margin-bottom: 8px;
}

.about-section-head p {
    color: rgba(245, 248, 255, 0.85);
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-feature-card {
    background: linear-gradient(145deg, rgba(16, 35, 90, 0.56), rgba(8, 19, 54, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 16px 18px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(3, 10, 35, 0.26);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(242, 185, 21, 0.52);
    box-shadow: 0 20px 40px rgba(3, 10, 35, 0.35);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #10235a;
    background: radial-gradient(circle at 35% 25%, #ffe8a9 0%, #f2b915 70%);
    box-shadow: 0 12px 24px rgba(242, 185, 21, 0.28);
}

.about-feature-card h4 {
    font-size: 1.52rem;
    margin-bottom: 6px;
    color: #fff;
}

.about-feature-card p {
    color: rgba(236, 242, 255, 0.86);
    font-size: 0.94rem;
}

.about-stats-section {
    padding: 12px 0 40px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 20px 16px;
    transition: transform 0.28s ease, background 0.28s ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.about-stat-card h4 {
    font-size: clamp(1.48rem, 2.8vw, 2.1rem);
    margin-bottom: 8px;
}

.about-stat-card p {
    color: rgba(234, 241, 255, 0.88);
}

.about-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.theme-light .about-page::before {
    background: radial-gradient(circle at 14% 9%, rgba(16, 35, 90, 0.1), transparent 38%),
                radial-gradient(circle at 84% 12%, rgba(242, 185, 21, 0.2), transparent 42%);
}

body.theme-light .about-hero-grid {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.92));
    border-color: rgba(16, 35, 90, 0.14);
    box-shadow: 0 16px 38px rgba(16, 35, 90, 0.14);
}

body.theme-light .about-kicker {
    color: #1b3f9a;
}

body.theme-light .about-hero-copy h2,
body.theme-light .about-section-head h3,
body.theme-light .about-feature-card h4,
body.theme-light .about-stat-card h4 {
    color: #16244d;
}

body.theme-light .about-hero-copy p,
body.theme-light .about-section-head p,
body.theme-light .about-feature-card p,
body.theme-light .about-stat-card p {
    color: #334369;
}

body.theme-light .about-highlight-list span {
    color: #1e3f95;
    background: rgba(16, 35, 90, 0.08);
    border-color: rgba(16, 35, 90, 0.2);
}

body.theme-light .about-highlight-list span:hover {
    background: rgba(16, 35, 90, 0.13);
}

body.theme-light .about-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
    border-color: rgba(16, 35, 90, 0.12);
    box-shadow: 0 16px 34px rgba(16, 35, 90, 0.12);
}

body.theme-light .feature-icon-circle {
    color: #fff;
    background: radial-gradient(circle at 35% 25%, #1c4cae 0%, #10235a 78%);
    box-shadow: 0 12px 24px rgba(16, 35, 90, 0.24);
}

body.theme-light .about-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(16, 35, 90, 0.14);
}

body.theme-light .about-stat-card:hover {
    background: rgba(244, 248, 255, 0.98);
}

body.theme-light .about-hero-media img {
    border-color: rgba(16, 35, 90, 0.12);
    box-shadow: 0 10px 30px rgba(16, 35, 90, 0.1);
}

@media (max-width: 1000px) {
    .about-hero-grid,
    .about-feature-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-media {
        max-height: none;
        gap: 0;
    }

    .hero-img-bottom {
        display: none;
    }

    .about-hero-media img {
        height: auto;
        min-height: 270px;
    }
}

@media (max-width: 768px) {
    .about-hero-panel {
        padding-top: 22px;
    }

    .about-hero-grid {
        padding: 16px;
        border-radius: 18px;
    }

    .about-feature-card,
    .about-stat-card {
        border-radius: 16px;
    }

    .feature-icon-circle {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }
}

/* Message pages */
.message-top {
    padding: 18px 0 12px;
    background: linear-gradient(180deg, rgba(16, 35, 90, 0.95) 0%, rgba(0, 0, 0, 0.62) 100%);
    /* background: linear-gradient(180deg, rgba(16, 35, 90, 0.9), rgba(9, 17, 44, 0.82)); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.message-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.message-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-brand img {
    width: 64px;
    height: 64px;
}

.message-brand h1 {
    color: #fff;
    font-size: clamp(1.05rem, 2.4vw, 1.6rem);
    line-height: 1.2;
}

.message-brand p {
    color: #f2b915;
    font-size: 0.86rem;
}

.message-breadcrumb {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #d5def8;
    font-size: 0.9rem;
}

.message-breadcrumb a {
    color: #fff;
}

.message-breadcrumb strong {
    color: #f2b915;
}

.message-page {
    padding: 34px 0 56px;
}

.message-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 36px);
    box-shadow: 0 20px 48px rgba(4, 12, 38, 0.28);
}

.message-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #f2b915;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.message-card h2 {
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}

.message-card p {
    color: rgba(238, 244, 255, 0.9);
    line-height: 1.72;
    margin-bottom: 10px;
}

.message-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.message-profile {
    position: sticky;
    top: 94px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 14px;
    text-align: center;
}

.message-profile-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 10px;
}

.message-profile-frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.message-profile h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.message-profile p {
    color: rgba(225, 234, 255, 0.82);
    font-size: 0.82rem;
    margin: 0;
}

body.theme-light .message-top {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 246, 255, 0.92));
    border-bottom-color: rgba(16, 35, 90, 0.12);
}

body.theme-light .message-brand h1 {
    color: #10235a;
}

body.theme-light .message-brand p {
    color: #1c4dad;
}

body.theme-light .message-breadcrumb {
    color: #425681;
}

body.theme-light .message-breadcrumb a {
    color: #1a3f96;
}

body.theme-light .message-breadcrumb strong {
    color: #10235a;
}

body.theme-light .message-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
    border-color: rgba(16, 35, 90, 0.14);
    box-shadow: 0 18px 42px rgba(16, 35, 90, 0.13);
}

body.theme-light .message-kicker {
    color: #1b439e;
}

body.theme-light .message-card h2 {
    color: #132451;
}

body.theme-light .message-card p {
    color: #33456d;
}

body.theme-light .message-profile {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(16, 35, 90, 0.13);
}

body.theme-light .message-profile-frame {
    border-color: rgba(16, 35, 90, 0.15);
}

body.theme-light .message-profile h3 {
    color: #132451;
}

body.theme-light .message-profile p {
    color: #4a5c82;
}

@media (max-width: 768px) {
    .message-top {
        padding-top: 14px;
    }

    .message-top-row {
        align-items: flex-start;
    }

    .message-brand {
        width: calc(100% - 62px);
        align-items: flex-start;
    }

    .message-brand img {
        width: 52px;
        height: 52px;
    }

    .message-brand p {
        font-size: 0.78rem;
    }

    .message-page {
        padding-top: 22px;
    }

    .message-card {
        border-radius: 18px;
    }

    .message-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .message-profile {
        position: static;
        max-width: 260px;
        margin: 0 auto;
    }
}

/* Admission Rules page */
.admission-page {
    position: relative;
    overflow: hidden;
}

.admission-rules-section {
    padding: 30px 0 34px;
}

.admission-rules-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    align-items: start;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(4, 12, 38, 0.24);
}

.admission-rules-visual {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 92px;
}

.admission-visual-card {
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(16, 35, 90, 0.68), rgba(8, 19, 54, 0.6));
    box-shadow: 0 12px 28px rgba(4, 12, 38, 0.24);
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.admission-visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 185, 21, 0.55);
}

.admission-visual-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    color: #10235a;
    background: radial-gradient(circle at 35% 25%, #ffe7a3 0%, #f2b915 72%);
    box-shadow: 0 10px 22px rgba(242, 185, 21, 0.3);
}

.admission-visual-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 4px;
}

.admission-visual-card p {
    font-size: 0.9rem;
    color: #f2d989;
}

.admission-rules-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 8px;
    color: #fff;
}

.admission-note {
    color: rgba(242, 247, 255, 0.9);
    line-height: 1.68;
    margin-bottom: 10px;
}

.admission-rules-content h3 {
    margin: 12px 0 8px;
    font-size: clamp(1.28rem, 2.3vw, 1.7rem);
}

.admission-rule-list {
    margin: 0;
    padding-left: 22px;
}

.admission-rule-list li {
    color: rgba(234, 241, 255, 0.9);
    margin-bottom: 7px;
    line-height: 1.55;
    transition: transform 0.2s ease, color 0.2s ease;
}

.admission-rule-list li:hover {
    transform: translateX(4px);
    color: #ffe5a8;
}

body.theme-light .admission-rules-grid {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
    border-color: rgba(16, 35, 90, 0.14);
    box-shadow: 0 16px 36px rgba(16, 35, 90, 0.12);
}

body.theme-light .admission-visual-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
    border-color: rgba(16, 35, 90, 0.14);
}

body.theme-light .admission-visual-icon {
    color: #fff;
    background: radial-gradient(circle at 35% 25%, #1f4dad 0%, #10235a 78%);
    box-shadow: 0 10px 22px rgba(16, 35, 90, 0.22);
}

body.theme-light .admission-visual-card h3,
body.theme-light .admission-rules-content h2,
body.theme-light .admission-rules-content h3 {
    color: #142a61;
}

body.theme-light .admission-visual-card p,
body.theme-light .admission-note,
body.theme-light .admission-rule-list li {
    color: #334972;
}

body.theme-light .admission-rule-list li:hover {
    color: #173d9b;
}

@media (max-width: 980px) {
    .admission-rules-grid {
        grid-template-columns: 1fr;
    }

    .admission-rules-visual {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .admission-rules-section {
        padding-top: 20px;
    }

    .admission-rules-grid {
        border-radius: 18px;
        padding: 14px;
    }

    .admission-rules-visual {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Admission Rules Page Styles */
.admission-page {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 8%, rgba(242, 185, 21, 0.12), transparent 42%),
                radial-gradient(circle at 85% 92%, rgba(55, 109, 237, 0.15), transparent 38%);
}

.admission-rules-section {
    padding: 40px 0 60px;
    position: relative;
}

.admission-rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f2b915, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.admission-rules-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(4, 12, 38, 0.24);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.admission-rules-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 185, 21, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.admission-rules-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.admission-visual-card {
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(16, 35, 90, 0.68), rgba(8, 19, 54, 0.6));
    box-shadow: 0 12px 28px rgba(4, 12, 38, 0.24);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admission-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 185, 21, 0.2), transparent);
    transition: left 0.6s ease;
}

.admission-visual-card:hover::before {
    left: 100%;
}

.admission-visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(242, 185, 21, 0.6);
    box-shadow: 0 20px 40px rgba(4, 12, 38, 0.3), 0 0 30px rgba(242, 185, 21, 0.1);
}

.admission-visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #10235a;
    background: radial-gradient(circle at 35% 25%, #ffe8a9 0%, #f2b915 70%);
    box-shadow: 0 12px 24px rgba(242, 185, 21, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.admission-visual-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(242, 185, 21, 0.3);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.admission-visual-card:hover .admission-visual-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 16px 32px rgba(242, 185, 21, 0.4);
}

.admission-visual-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.admission-visual-card:hover h3 {
    color: #f2b915;
}

.admission-visual-card p {
    font-size: 0.9rem;
    color: #f2d989;
    margin: 0;
    transition: all 0.3s ease;
}

.admission-visual-card:hover p {
    color: #ffe5a8;
    transform: translateY(2px);
}

.admission-rules-content {
    position: relative;
}

.admission-rules-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 16px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.admission-rules-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f2b915, transparent);
    border-radius: 2px;
    animation: line-grow 1s ease-out;
}

@keyframes line-grow {
    0% { width: 0; }
    100% { width: 100%; }
}

.admission-note {
    color: rgba(242, 247, 255, 0.92);
    line-height: 1.68;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(242, 185, 21, 0.08);
    border-left: 4px solid #f2b915;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admission-note:hover {
    background: rgba(242, 185, 21, 0.12);
    transform: translateX(5px);
}

.admission-rules-content h3 {
    margin: 24px 0 12px;
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.admission-rules-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #f2b915;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.admission-rule-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.admission-rule-list li {
    color: rgba(234, 241, 255, 0.92);
    margin-bottom: 12px;
    line-height: 1.65;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admission-rule-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #f2b915, transparent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.admission-rule-list li:hover::before {
    transform: scaleY(1);
}

.admission-rule-list li:hover {
    transform: translateX(8px);
    background: rgba(242, 185, 21, 0.08);
    border-color: rgba(242, 185, 21, 0.3);
    color: #ffe5a8;
    box-shadow: 0 4px 12px rgba(242, 185, 21, 0.1);
}

.admission-rule-list li::after {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: -15px;
    top: 16px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f2b915, #e0a610);
    color: #0a0a0a;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.admission-rule-list li:hover::after {
    opacity: 1;
    transform: scale(1);
}

.admission-rule-list {
    counter-reset: list-item;
}

/* Light Theme Styles for Admission Rules */
body.theme-light .admission-page {
    background: radial-gradient(circle at 15% 8%, rgba(16, 35, 90, 0.08), transparent 42%),
                radial-gradient(circle at 85% 92%, rgba(242, 185, 21, 0.1), transparent 38%);
}

body.theme-light .admission-rules-grid {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.92));
    border-color: rgba(16, 35, 90, 0.14);
    box-shadow: 0 16px 36px rgba(16, 35, 90, 0.12);
}

body.theme-light .admission-visual-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
    border-color: rgba(16, 35, 90, 0.14);
    box-shadow: 0 12px 24px rgba(16, 35, 90, 0.12);
}

body.theme-light .admission-visual-card:hover {
    border-color: rgba(242, 185, 21, 0.4);
    box-shadow: 0 20px 40px rgba(16, 35, 90, 0.15), 0 0 30px rgba(242, 185, 21, 0.08);
}

body.theme-light .admission-visual-icon {
    color: #fff;
    background: radial-gradient(circle at 35% 25%, #1f4dad 0%, #10235a 78%);
    box-shadow: 0 12px 24px rgba(16, 35, 90, 0.22);
}

body.theme-light .admission-visual-icon::after {
    border-color: rgba(16, 35, 90, 0.3);
}

body.theme-light .admission-visual-card h3,
body.theme-light .admission-rules-content h2,
body.theme-light .admission-rules-content h3 {
    color: #10235a;
}

body.theme-light .admission-visual-card p,
body.theme-light .admission-note,
body.theme-light .admission-rule-list li {
    color: #33456d;
}

body.theme-light .admission-visual-card:hover p,
body.theme-light .admission-rule-list li:hover {
    color: #1c4cae;
}

body.theme-light .admission-note {
    background: rgba(16, 35, 90, 0.06);
    border-left-color: #1c4cae;
}

body.theme-light .admission-note:hover {
    background: rgba(16, 35, 90, 0.1);
}

body.theme-light .admission-rules-content h3::before {
    background: #1c4cae;
}

body.theme-light .admission-rule-list li {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(16, 35, 90, 0.1);
}

body.theme-light .admission-rule-list li:hover {
    background: rgba(16, 35, 90, 0.06);
    border-color: rgba(242, 185, 21, 0.3);
}

body.theme-light .admission-rule-list li::before {
    background: linear-gradient(180deg, #1c4cae, transparent);
}

body.theme-light .admission-rule-list li::after {
    background: linear-gradient(135deg, #1c4cae, #10235a);
}

body.theme-light .admission-rules-content h2::after {
    background: linear-gradient(90deg, #1c4cae, transparent);
}

/* Responsive Design for Admission Rules */
@media (max-width: 1024px) {
    .admission-rules-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .admission-rules-visual {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .admission-rules-section {
        padding: 30px 0 40px;
    }
    
    .admission-rules-grid {
        padding: 20px;
        border-radius: 18px;
    }
    
    .admission-rules-visual {
        grid-template-columns: 1fr;
    }
    
    .admission-visual-card {
        padding: 16px 12px;
    }
    
    .admission-visual-icon {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
    }
    
    .admission-rules-content h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    
    .admission-rules-content h3 {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        margin: 20px 0 10px;
    }
    
    .admission-rule-list li {
        padding: 12px 16px;
        margin-bottom: 10px;
    }
    
    .admission-rule-list li::after {
        left: -12px;
        top: 12px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .admission-rules-section {
        padding: 20px 0 30px;
    }
    
    .admission-rules-grid {
        padding: 16px;
        border-radius: 16px;
    }
    
    .admission-visual-card {
        padding: 14px 10px;
    }
    
    .admission-visual-icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
    
    .admission-rules-content h2 {
        font-size: 1.5rem;
    }
    
    .admission-rules-content h3 {
        font-size: 1.2rem;
        margin: 16px 0 8px;
    }
    
    .admission-rule-list li {
        padding: 10px 14px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .admission-rule-list li::after {
        left: -10px;
        top: 10px;
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}

.admission-hero-section {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.admission-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.admission-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(242, 185, 21, 0.9), rgba(242, 185, 21, 0.7));
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(242, 185, 21, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-icon {
    font-size: 1.1rem;
}

.admission-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f2b915 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.admission-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(242, 185, 21, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.admission-hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(242, 185, 21, 0.15);
    border-color: rgba(242, 185, 21, 0.4);
    box-shadow: 0 8px 24px rgba(242, 185, 21, 0.2);
}

.hero-feature-item i {
    color: #f2b915;
    font-size: 1.1rem;
}

.admission-rules-section {
    padding: 40px 0 60px;
}

.admission-content-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.admission-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(4, 12, 38, 0.2);
}

.sidebar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 185, 21, 0.4);
    box-shadow: 0 18px 40px rgba(4, 12, 38, 0.3);
}

.card-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: #10235a;
    background: radial-gradient(circle at 35% 25%, #ffe7a3 0%, #f2b915 72%);
    box-shadow: 0 8px 20px rgba(242, 185, 21, 0.3);
    transition: transform 0.3s ease;
}

.sidebar-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.info-list, .contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item, .contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.info-item:hover, .contact-item:hover {
    padding-left: 8px;
    border-bottom-color: rgba(242, 185, 21, 0.4);
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.info-value {
    color: #f2b915;
    font-weight: 600;
}

.contact-item {
    justify-content: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #f2b915;
    width: 20px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.cta-card {
    background: linear-gradient(135deg, rgba(242, 185, 21, 0.15), rgba(242, 185, 21, 0.05));
    border-color: rgba(242, 185, 21, 0.3);
}

.cta-content {
    text-align: center;
}

.cta-content h3 {
    color: #f2b915;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f2b915, #e0a610);
    color: #0a0a0a;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(242, 185, 21, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(242, 185, 21, 0.4);
    background: linear-gradient(135deg, #e0a610, #d0990c);
}

.admission-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(4, 12, 38, 0.18);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #10235a;
    background: radial-gradient(circle at 35% 25%, #ffe7a3 0%, #f2b915 72%);
    box-shadow: 0 8px 20px rgba(242, 185, 21, 0.25);
    flex-shrink: 0;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #ffffff;
    margin: 0;
}

.section-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 12px 0 0 72px;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rule-card {
    background: linear-gradient(145deg, rgba(16, 35, 90, 0.4), rgba(8, 19, 54, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f2b915, #e0a610);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.rule-card:hover::before {
    transform: scaleX(1);
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 185, 21, 0.4);
    box-shadow: 0 12px 32px rgba(4, 12, 38, 0.3);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rule-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2b915, #e0a610);
    color: #0a0a0a;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rule-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: #f2b915;
    background: rgba(242, 185, 21, 0.1);
    border: 1px solid rgba(242, 185, 21, 0.3);
    flex-shrink: 0;
}

.rule-header h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.rule-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.special-section {
    background: linear-gradient(145deg, rgba(242, 185, 21, 0.08), rgba(242, 185, 21, 0.02));
    border-color: rgba(242, 185, 21, 0.2);
}

.special-icon {
    background: radial-gradient(circle at 35% 25%, #ffd700 0%, #f2b915 72%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.special-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.special-rule-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.special-rule-item:hover {
    transform: translateX(8px);
    background: rgba(242, 185, 21, 0.1);
    border-color: rgba(242, 185, 21, 0.3);
}

.special-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: #f2b915;
    background: rgba(242, 185, 21, 0.15);
    border: 1px solid rgba(242, 185, 21, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.special-rule-item:hover .special-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: rgba(242, 185, 21, 0.2);
}

.special-content h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.special-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.action-banner {
    background: linear-gradient(135deg, rgba(242, 185, 21, 0.12), rgba(242, 185, 21, 0.05));
    border: 1px solid rgba(242, 185, 21, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 185, 21, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.banner-content {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.banner-content h3 {
    font-size: 1.8rem;
    color: #f2b915;
    margin-bottom: 8px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #f2b915, #e0a610);
    color: #0a0a0a;
    box-shadow: 0 8px 24px rgba(242, 185, 21, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242, 185, 21, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(242, 185, 21, 0.4);
    transform: translateY(-3px);
}

.admission-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.admission-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Light Theme Styles */
body.theme-light .admission-page {
    background: radial-gradient(circle at 15% 8%, rgba(16, 35, 90, 0.08), transparent 42%),
                radial-gradient(circle at 85% 92%, rgba(242, 185, 21, 0.1), transparent 38%);
}

body.theme-light .admission-hero-title {
    background: linear-gradient(135deg, #10235a 0%, #1c4cae 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.theme-light .admission-hero-subtitle {
    color: #1c4cae;
}

body.theme-light .hero-feature-item {
    background: rgba(16, 35, 90, 0.05);
    border-color: rgba(16, 35, 90, 0.15);
    color: #10235a;
}

body.theme-light .hero-feature-item:hover {
    background: rgba(16, 35, 90, 0.1);
    border-color: rgba(16, 35, 90, 0.3);
}

body.theme-light .hero-feature-item i {
    color: #1c4cae;
}

body.theme-light .sidebar-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.92));
    border-color: rgba(16, 35, 90, 0.12);
}

body.theme-light .sidebar-card h3 {
    color: #10235a;
}

body.theme-light .info-label {
    color: #4a5c82;
}

body.theme-light .info-value {
    color: #1c4cae;
}

body.theme-light .contact-item span {
    color: #33456d;
}

body.theme-light .cta-card {
    background: linear-gradient(135deg, rgba(16, 35, 90, 0.08), rgba(16, 35, 90, 0.03));
    border-color: rgba(16, 35, 90, 0.15);
}

body.theme-light .cta-content h3 {
    color: #1c4cae;
}

body.theme-light .cta-content p {
    color: #4a5c82;
}

body.theme-light .content-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
    border-color: rgba(16, 35, 90, 0.12);
}

body.theme-light .section-header h2 {
    color: #10235a;
}

body.theme-light .section-description {
    color: #33456d;
}

body.theme-light .rule-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.92));
    border-color: rgba(16, 35, 90, 0.1);
}

body.theme-light .rule-header h3 {
    color: #10235a;
}

body.theme-light .rule-content p {
    color: #33456d;
}

body.theme-light .special-section {
    background: linear-gradient(145deg, rgba(16, 35, 90, 0.06), rgba(16, 35, 90, 0.02));
    border-color: rgba(16, 35, 90, 0.15);
}

body.theme-light .special-content h4 {
    color: #10235a;
}

body.theme-light .special-content p {
    color: #4a5c82;
}

body.theme-light .action-banner {
    background: linear-gradient(135deg, rgba(16, 35, 90, 0.08), rgba(16, 35, 90, 0.03));
    border-color: rgba(16, 35, 90, 0.15);
}

body.theme-light .banner-content h3 {
    color: #1c4cae;
}

body.theme-light .banner-content p {
    color: #33456d;
}

body.theme-light .btn-secondary {
    background: rgba(16, 35, 90, 0.05);
    color: #10235a;
    border-color: rgba(16, 35, 90, 0.15);
}

body.theme-light .btn-secondary:hover {
    background: rgba(16, 35, 90, 0.1);
    border-color: rgba(16, 35, 90, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .admission-content-grid {
        grid-template-columns: 1fr;
    }
    
    .admission-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .admission-hero-section {
        padding: 40px 0 30px;
    }
    
    .admission-hero-features {
        gap: 15px;
    }
    
    .hero-feature-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 24px;
        border-radius: 18px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .section-description {
        margin-left: 0;
        text-align: center;
    }
    
    .rules-container {
        grid-template-columns: 1fr;
    }
    
    .special-rules-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .admission-hero-title {
        font-size: 2rem;
    }

    .admission-hero-subtitle {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 20px;
    }

    .action-banner {
        padding: 24px;
    }
}

/* --- Premium Glacier Section Mobile Responsiveness Fix --- */
@media (max-width: 768px) {
    .premium-glacier-section {
        padding: 40px 15px;
    }
    
    .glacier-card-v2 {
        padding: 25px;
        border-radius: 24px;
    }
    
    .premium-content h3 {
        font-size: 1.7rem;
    }
    
    .premium-content p {
        font-size: 1rem;
    }
    
    .commitment-box {
        padding: 22px;
    }
    
    .commitment-box h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .premium-glacier-section {
        padding: 30px 10px;
    }
    
    .glacier-card-v2 {
        padding: 18px;
        border-radius: 20px;
    }
    
    .premium-split {
        gap: 20px;
    }
    
    .premium-content h3 {
        font-size: 1.4rem;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .premium-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .premium-feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .premium-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .commitment-box {
        padding: 18px;
        border-radius: 18px;
    }
    
    .commitment-box h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .commitment-box p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 400px) {
    .premium-glacier-section {
        padding: 20px 8px;
    }
    
    .glacier-card-v2 {
        padding: 15px 12px;
        border-radius: 16px;
    }
    
    .premium-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .premium-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .premium-feature-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        gap: 5px;
    }
    
    .premium-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .commitment-box {
        padding: 14px;
        border-radius: 14px;
    }
    
    .commitment-box h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        gap: 6px;
    }
    
    .commitment-box p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}
