*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeSpeed; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

.voyage-essence { max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 6px; }
@media (max-width: 768px) { .voyage-essence { padding: 0 5px; } }

@font-face {
    font-family: 'NorthernStar';
    src: url('/aether-canvas/canvas-fonts/commissioner-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NorthernStar';
    src: url('/aether-canvas/canvas-fonts/commissioner-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FrostbiteHeadline';
    src: url('/aether-canvas/canvas-fonts/spacegrotesk-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FrostIcons';
    src: url('/aether-canvas/canvas-fonts/remixicon.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
.frost-icon {
    font-family: 'FrostIcons';
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'NorthernStar', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #f0f4f8;
    color: #1a2a47;
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
}
@media (min-width: 769px) {
    h1 {
        font-family: 'FrostbiteHeadline', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
}

img[srcset] { width: 100%; height: auto; }

.aurora-banner {
    background-color: #0e1a2f;
    color: #e6f2ff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(10, 25, 47, 0.15);
}

.aurora-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.aurora-banner__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1001;
}

.aurora-banner__brand-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #5dade2;
}

.aurora-banner__brand-text {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
}

.aurora-banner__nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.aurora-banner__nav-link {
    color: #c8e1ff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.aurora-banner__nav-link:hover,
.aurora-banner__nav-link:focus {
    color: #5dade2;
}

.aurora-banner__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5dade2;
    transition: width 0.3s ease;
}

.aurora-banner__nav-link:hover::after {
    width: 100%;
}

.aurora-banner__nav-link-text {
    display: inline;
}

.aurora-banner__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
}

.aurora-banner__burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #c8e1ff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.aurora-banner__burger[aria-expanded="true"] .aurora-banner__burger-line--top {
    transform: translateY(10.5px) rotate(45deg);
}

.aurora-banner__burger[aria-expanded="true"] .aurora-banner__burger-line--mid {
    opacity: 0;
}

.aurora-banner__burger[aria-expanded="true"] .aurora-banner__burger-line--bot {
    transform: translateY(-10.5px) rotate(-45deg);
}

.aurora-banner__mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: rgba(14, 26, 47, 0.98);
    backdrop-filter: blur(8px);
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.4s ease;
}

.aurora-banner__mobile-nav--active {
    transform: translateY(0);
    opacity: 1;
    display: block !important;
}

.aurora-banner__mobile-nav-inner {
    padding: 24px 20px;
}

.aurora-banner__mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aurora-banner__mobile-nav-item {
    border-bottom: 1px solid rgba(200, 225, 255, 0.1);
    padding-bottom: 16px;
}

.aurora-banner__mobile-nav-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.aurora-banner__mobile-nav-link {
    color: #e6f2ff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.aurora-banner__mobile-nav-link:hover,
.aurora-banner__mobile-nav-link:focus {
    color: #5dade2;
}

@media (max-width: 968px) {
    .aurora-banner__nav-list {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .aurora-banner__inner {
        flex-direction: row-reverse;
        min-height: 64px;
    }
    
    .aurora-banner__brand-text {
        font-size: 1.125rem;
    }
    
    .aurora-banner__nav-list {
        display: none;
    }
    
    .aurora-banner__burger {
        display: flex;
    }
    
    .aurora-banner__nav-link-text {
        display: none;
    }
    
    .aurora-banner__nav-item--home .aurora-banner__nav-link {
        font-size: 1.25rem;
        padding: 6px;
    }
}

.crystal-journey {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0a1525;
    color: #e6f2ff;
    padding: 60px 0;
}

.crystal-journey__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
    background: linear-gradient(135deg, #0a1525 0%, #1a2a47 50%, #0e3b5e 100%);
}

.crystal-journey__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.crystal-journey__geo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(93, 173, 226, 0.15);
    color: #5dade2;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    border: 1px solid rgba(93, 173, 226, 0.3);
}

.crystal-journey__geo-icon {
    font-size: 1.1rem;
}

.crystal-journey__title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
    .crystal-journey__title {
        font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
        font-size: 3.8rem;
    }
}

.crystal-journey__desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #c8e1ff;
    max-width: 680px;
    margin-bottom: 40px;
    font-weight: 400;
}

.crystal-journey__prize {
    margin-bottom: 50px;
}

.crystal-journey__prize-amount {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffdd40;
    text-shadow: 0 0 20px rgba(255, 221, 64, 0.3);
    line-height: 1;
    margin-bottom: 8px;
}

.crystal-journey__prize-label {
    font-size: 1.1rem;
    color: #a8c6ff;
    letter-spacing: 1px;
    font-weight: 500;
}

.crystal-journey__timer {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.crystal-journey__timer-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.crystal-journey__timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.crystal-journey__timer-value {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    padding: 15px 5px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.crystal-journey__timer-label {
    font-size: 0.95rem;
    color: #a8c6ff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.crystal-journey__timer-colon {
    font-size: 2.5rem;
    color: #5dade2;
    font-weight: 700;
    margin-top: -15px;
}

.crystal-journey__timer-note {
    font-size: 0.95rem;
    color: #94b8ff;
    font-style: italic;
}

.crystal-journey__notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff9f9f;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    max-width: 500px;
}

.crystal-journey__notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.crystal-journey__access-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5dade2, #2a80b9);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(93, 173, 226, 0.3);
    border: none;
    cursor: pointer;
}

.crystal-journey__access-link:hover,
.crystal-journey__access-link:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(93, 173, 226, 0.4);
    background: linear-gradient(135deg, #6bb7e8, #3a90c9);
}

.crystal-journey__access-icon {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .crystal-journey {
        min-height: auto;
        padding: 40px 0;
    }
    
    .crystal-journey__title {
        font-size: 2.5rem;
    }
    
    .crystal-journey__desc {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .crystal-journey__prize-amount {
        font-size: 2.8rem;
    }
    
    .crystal-journey__timer {
        padding: 20px 15px;
    }
    
    .crystal-journey__timer-grid {
        gap: 8px;
    }
    
    .crystal-journey__timer-unit {
        min-width: 65px;
    }
    
    .crystal-journey__timer-value {
        font-size: 2.2rem;
        min-width: 65px;
        padding: 12px 5px;
    }
    
    .crystal-journey__timer-colon {
        font-size: 1.8rem;
        margin-top: -10px;
    }
    
    .crystal-journey__timer-label {
        font-size: 0.85rem;
    }
    
    .mobile-view .crystal-journey__canvas {
        animation: none !important;
    }
}

@media (min-width: 769px) {
    .crystal-journey__canvas {
        animation: aurora-flow 20s ease-in-out infinite alternate;
    }
    
    @keyframes aurora-flow {
        0% {
            background: linear-gradient(135deg, #0a1525 0%, #1a2a47 50%, #0e3b5e 100%);
            opacity: 0.7;
        }
        50% {
            background: linear-gradient(135deg, #0e1a2f 0%, #1e3c72 50%, #12527a 100%);
            opacity: 0.8;
        }
        100% {
            background: linear-gradient(135deg, #0a2035 0%, #214a7a 50%, #0e3b5e 100%);
            opacity: 0.7;
        }
    }
}

.northern-packs {
    padding: 100px 0;
    background-color: #f5f9ff;
    position: relative;
}

.northern-packs__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.northern-packs__title {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 2.8rem;
    color: #0e1a2f;
    margin-bottom: 20px;
    font-weight: 700;
}

.northern-packs__desc {
    font-size: 1.2rem;
    color: #4a5a7a;
    line-height: 1.6;
}

.northern-packs__grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.northern-packs__card {
    background-color: white;
    border-radius: 20px;
    padding: 35px 30px;
    flex: 1;
    width: 100%;
    min-width: 280px;
    max-width: 1020px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(14, 26, 47, 0.08);
    border: 1px solid rgba(93, 173, 226, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.northern-packs__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(93, 173, 226, 0.15);
}

.northern-packs__card--primary {
    border-top: 4px solid #5dade2;
}

.northern-packs__card--highlight {
    border-top: 4px solid #ff9f43;
}

.northern-packs__card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.northern-packs__card-icon {
    font-size: 2.2rem;
    color: #5dade2;
}

.northern-packs__card--highlight .northern-packs__card-icon {
    color: #ff9f43;
}

.northern-packs__card-title {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
    color: #0e1a2f;
    font-weight: 700;
    margin: 0;
}

.northern-packs__price {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(93, 173, 226, 0.2);
}

.northern-packs__price-amount {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a47;
    display: block;
}

.northern-packs__card--highlight .northern-packs__price-amount {
    color: #e67e22;
}

.northern-packs__features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.northern-packs__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #4a5a7a;
    font-size: 1rem;
    line-height: 1.5;
}

.northern-packs__feature:last-child {
    margin-bottom: 0;
}

.northern-packs__feature-icon {
    font-size: 1.1rem;
    color: #5dade2;
    margin-top: 2px;
    flex-shrink: 0;
}

.northern-packs__tag {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(93, 173, 226, 0.1);
    color: #2a80b9;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    align-self: flex-start;
    border: 1px solid rgba(93, 173, 226, 0.3);
}

.northern-packs__card--highlight .northern-packs__tag {
    background-color: rgba(255, 159, 67, 0.1);
    color: #e67e22;
    border-color: rgba(255, 159, 67, 0.3);
}

.northern-packs__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #5dade2, #2a80b9);
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.northern-packs__action:hover,
.northern-packs__action:focus {
    background: linear-gradient(135deg, #6bb7e8, #3a90c9);
    box-shadow: 0 6px 20px rgba(93, 173, 226, 0.3);
    transform: translateY(-2px);
}

.northern-packs__action--accent {
    background: linear-gradient(135deg, #ff9f43, #e67e22);
}

.northern-packs__action--accent:hover,
.northern-packs__action--accent:focus {
    background: linear-gradient(135deg, #ffaf63, #f68e32);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.3);
}

.northern-packs__action-icon {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .northern-packs__grid {
        gap: 25px;
    }
    .northern-packs__card {
        min-width: 250px;
    }
}

@media (max-width: 992px) {
    .northern-packs__grid {
        gap: 20px;
    }
    .northern-packs__card {
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .northern-packs {
        padding: 70px 0;
    }
    
    .northern-packs__title {
        font-size: 2.2rem;
    }
    
    .northern-packs__desc {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .northern-packs__grid {
        align-items: center;
    }
    
    .northern-packs__card {
        min-width: 100%;
        max-width: 350px;
    }
    
    .northern-packs__card-title {
        font-size: 1.5rem;
    }
    
    .northern-packs__price-amount {
        font-size: 1.8rem;
    }
}

.fjord-network {
    padding: 80px 0;
    background-color: #f5f9ff;
    position: relative;
}

.fjord-network__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.fjord-network__title {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 2.5rem;
    color: #0e1a2f;
    margin-bottom: 18px;
    font-weight: 700;
}

.fjord-network__desc {
    font-size: 1.15rem;
    color: #4a5a7a;
    line-height: 1.6;
}

.fjord-network__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    max-width: 1300px;
    margin: 0 auto;
}

.fjord-network__link {
    text-decoration: none;
    display: block;
}

.fjord-network__card {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(14, 26, 47, 0.05);
}

.fjord-network__link:hover .fjord-network__card,
.fjord-network__link:focus .fjord-network__card {
    border-color: #5dade2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(93, 173, 226, 0.15);
}

.fjord-network__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.fjord-network__img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.fjord-network__link:hover .fjord-network__img,
.fjord-network__link:focus .fjord-network__img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1100px) {
    .fjord-network__grid {
        gap: 20px;
    }
    .fjord-network__card {
        width: 195px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .fjord-network {
        padding: 60px 0;
    }
    
    .fjord-network__title {
        font-size: 2rem;
    }
    
    .fjord-network__desc {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .fjord-network__grid {
        gap: 15px;
    }
    
    .fjord-network__card {
        width: 190px;
        min-width: 180px;
        height: 100px;
        padding: 15px;
    }
    
    .fjord-network__img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .fjord-network__card {
        width: 185px;
        min-width: 180px;
        height: 90px;
    }
    
    .fjord-network__img {
        max-height: 50px;
    }
}

.glacial-foundation {
    background-color: #0a1525;
    color: #c8e1ff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(93, 173, 226, 0.2);
}

.glacial-foundation__main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glacial-foundation__links {
    display: flex;
    gap: 50px;
    flex: 1;
    min-width: 300px;
}

.glacial-foundation__link-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.glacial-foundation__link {
    color: #a8c6ff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.glacial-foundation__link:hover,
.glacial-foundation__link:focus {
    color: #5dade2;
}

.glacial-foundation__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #5dade2;
    transition: width 0.3s ease;
}

.glacial-foundation__link:hover::after {
    width: 100%;
}

.glacial-foundation__info {
    flex: 2;
    min-width: 250px;
}

.glacial-foundation__compliance {
    margin-bottom: 30px;
}

.glacial-foundation__compliance-title {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.glacial-foundation__compliance-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #a8c6ff;
}

.glacial-foundation__notice {
    background-color: rgba(93, 173, 226, 0.08);
    border-left: 3px solid #5dade2;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
}

.glacial-foundation__notice-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c8e1ff;
    font-style: italic;
}

.glacial-foundation__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.glacial-foundation__copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #a8c6ff;
}

.glacial-foundation__copyright-icon {
    font-size: 1.2rem;
    color: #5dade2;
}

.glacial-foundation__meta,
.glacial-foundation__meta a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #94b8ff;
}

.glacial-foundation__meta-separator {
    opacity: 0.5;
}

@media (max-width: 992px) {
    .glacial-foundation__main {
        flex-direction: column;
        gap: 40px;
    }
    
    .glacial-foundation__links {
        gap: 40px;
    }
    
    .glacial-foundation__link-column {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .glacial-foundation {
        padding: 50px 0 25px;
    }
    
    .glacial-foundation__main {
        gap: 35px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }
    
    .glacial-foundation__links {
        flex-direction: column;
        gap: 25px;
    }
    
    .glacial-foundation__link-column {
        gap: 14px;
    }
    
    .glacial-foundation__compliance-title {
        font-size: 1.15rem;
    }
    
    .glacial-foundation__compliance-text,
    .glacial-foundation__notice-text {
        font-size: 0.9rem;
    }
    
    .glacial-foundation__bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .glacial-foundation__meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .glacial-foundation__meta-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .glacial-foundation {
        padding: 40px 0 20px;
    }
    
    .glacial-foundation__main {
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .glacial-foundation__notice {
        padding: 15px 18px;
    }
    
    .glacial-foundation__copyright {
        font-size: 0.9rem;
    }
    
    .glacial-foundation__meta {
        font-size: 0.85rem;
    }
}

.quantum-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quantum-age-gate:not([inert]) {
    display: flex;
}

.quantum-age-gate__content {
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(10, 21, 37, 0.4);
    border: 2px solid rgba(93, 173, 226, 0.3);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.4s ease;
}

.quantum-age-gate:not([inert]) .quantum-age-gate__content {
    transform: scale(1);
    opacity: 1;
}

.quantum-age-gate__header {
    margin-bottom: 28px;
}

.quantum-age-gate__icon {
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 18px;
    display: block;
}

.quantum-age-gate__title {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 1.9rem;
    color: #0e1a2f;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.quantum-age-gate__body {
    margin-bottom: 32px;
}

.quantum-age-gate__text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a5a7a;
    margin-bottom: 22px;
}

.quantum-age-gate__notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.quantum-age-gate__notice-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quantum-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quantum-age-gate__confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #27ae60, #219653);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quantum-age-gate__confirm:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.quantum-age-gate__decline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quantum-age-gate__decline:hover {
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.quantum-age-gate__confirm-icon,
.quantum-age-gate__decline-icon {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .quantum-age-gate {
        padding: 15px;
    }
    
    .quantum-age-gate__content {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .quantum-age-gate__icon {
        font-size: 3rem;
    }
    
    .quantum-age-gate__title {
        font-size: 1.7rem;
    }
    
    .quantum-age-gate__text {
        font-size: 1.05rem;
    }
    
    .quantum-age-gate__notice {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .quantum-age-gate__confirm,
    .quantum-age-gate__decline {
        padding: 16px 28px;
    }
}

@media (max-width: 480px) {
    .quantum-age-gate__content {
        padding: 30px 22px;
    }
    
    .quantum-age-gate__icon {
        font-size: 2.5rem;
    }
    
    .quantum-age-gate__title {
        font-size: 1.5rem;
    }
    
    .quantum-age-gate__actions {
        gap: 14px;
    }
    
    .quantum-age-gate__confirm,
    .quantum-age-gate__decline {
        padding: 15px 24px;
        font-size: 1rem;
    }
}

.frost-cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 2px;
}

.frost-cookie-modal[aria-hidden="false"] {
    display: flex;
}

.frost-cookie-modal__content {
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(10, 21, 37, 0.3);
    border: 1px solid rgba(93, 173, 226, 0.3);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.4s ease;
}

.frost-cookie-modal[aria-hidden="false"] .frost-cookie-modal__content {
    transform: translateY(0);
    opacity: 1;
}

.frost-cookie-modal__header {
    background: linear-gradient(135deg, #0e1a2f, #1a2a47);
    color: white;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.frost-cookie-modal__icon {
    font-size: 2rem;
    color: #5dade2;
}

.frost-cookie-modal__title {
    font-family: 'FrostbiteHeadline', system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.frost-cookie-modal__body {
    padding: 5px;
}

.frost-cookie-modal__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5a7a;
}

.frost-cookie-modal__details {
    border-top: 1px solid rgba(93, 173, 226, 0.2);
    padding-top: 7px;
}

.frost-cookie-modal__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2a80b9;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.frost-cookie-modal__link:hover,
.frost-cookie-modal__link:focus {
    color: #5dade2;
}

.frost-cookie-modal__link-icon {
    font-size: 1.1rem;
}

.frost-cookie-modal__footer {
    padding: 0 30px 8px;
    text-align: center;
}

.frost-cookie-modal__accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #5dade2, #2a80b9);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.frost-cookie-modal__accept:hover,
.frost-cookie-modal__accept:focus {
    background: linear-gradient(135deg, #6bb7e8, #3a90c9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.3);
}

.frost-cookie-modal__accept-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .frost-cookie-modal {
        padding: 15px;
        align-items: flex-end;
    }
    
    .frost-cookie-modal__content {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
    }
    
    .frost-cookie-modal__header {
        padding: 20px 25px;
    }
    
    .frost-cookie-modal__title {
        font-size: 1.3rem;
    }
    
    .frost-cookie-modal__body {
        padding: 25px;
    }
    
    .frost-cookie-modal__text {
        font-size: 1rem;
    }
    
    .frost-cookie-modal__footer {
        padding: 0 25px 25px;
    }
}

@media (max-width: 480px) {
    .frost-cookie-modal__header {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .frost-cookie-modal__body {
        padding: 20px;
    }
    
    .frost-cookie-modal__footer {
        padding: 0 20px 20px;
    }
    
    .frost-cookie-modal__accept {
        padding: 14px 28px;
        font-size: 1rem;
    }
}