@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --accent: #274372;
    --light: #FFFFFF;
    --gray: #f8f9fc;
    --text: #111111;
    --text-light: #555555;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.mirror-bar {
    background: var(--accent);
    color: white;
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(39, 67, 114, 0.15);
}

.mirror-bar .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -1.8px;
    white-space: nowrap;
}

.mirrors {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.mirror-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.93;
    transition: opacity 0.25s ease;
}

.mirror-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.portal-section {
    padding: 90px 0 70px;
    background: linear-gradient(to bottom, #f8f9fc, #FFFFFF);
}

.portal-card {
    background: white;
    border: 1px solid #e5e9f2;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(39, 67, 114, 0.09);
    max-width: 660px;
    margin: 0 auto;
}

.portal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 26px;
    letter-spacing: -2.2px;
}

.portal-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 16px;
    margin: 28px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.portal-image:hover {
    transform: scale(1.015);
}

.portal-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin: 20px 0 32px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badges span {
    background: #eef2f9;
    color: var(--accent);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 500;
}

.content-section {
    padding: 80px 0;
}

.section-card {
    background: white;
    border-radius: 28px;
    padding: 58px 48px;
    box-shadow: 0 20px 45px rgba(39, 67, 114, 0.07);
    border: 1px solid #f0f3f9;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-card:hover {
    box-shadow: 0 28px 55px rgba(39, 67, 114, 0.1);
    transform: translateY(-8px);
}

.section-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 39px;
    color: var(--accent);
    margin-bottom: 34px;
    line-height: 1.15;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 32px 0;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
    transition: transform 0.4s ease;
}

.section-image:hover {
    transform: scale(1.01);
}

.features {
    margin-top: 30px;
    list-style: none;
}

.features li {
    margin: 14px 0;
    padding-left: 26px;
    position: relative;
    font-size: 16.2px;
}

.features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.stat {
    background: var(--gray);
    padding: 16px 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid #e6ebf5;
}

.ad-section {
    padding: 50px 0;
    background: var(--gray);
}

.ad-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(39, 67, 114, 0.1);
}

.ad-gif {
    width: 100%;
    height: auto;
    display: block;
}

.wallets .container {
    max-width: 1140px;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    gap: 34px;
}

.wallet-card {
    background: white;
    border-radius: 24px;
    padding: 42px 38px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(39, 67, 114, 0.06);
    border: 1px solid #f0f3f9;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallet-card:hover {
    box-shadow: 0 24px 50px rgba(39, 67, 114, 0.09);
    transform: translateY(-6px);
}

.wallet-card h3 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 24px;
}

.wallet-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.wallet-desc {
    color: var(--text-light);
    font-size: 16.5px;
}

footer {
    background: #0a1329;
    color: #b0b8cc;
    text-align: center;
    padding: 60px 20px 50px;
    font-size: 15.2px;
}

footer .small {
    margin-top: 16px;
    opacity: 0.8;
    font-size: 13.8px;
}

@media (max-width: 768px) {
    .portal-title {
        font-size: 36px;
    }
    
    .portal-card, .section-card {
        padding: 42px 28px;
    }
    
    .mirror-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .wallet-grid {
        grid-template-columns: 1fr;
    }
    
    .section-card h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .portal-section {
        padding: 70px 0 55px;
    }
}

.portal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: #274372;
    margin-bottom: 26px;
    letter-spacing: -2.2px;
    line-height: 1.1;
}

.portal-subtitle {
    font-size: 19px;
    color: #555555;
    margin: 20px 0 32px;
    line-height: 1.55;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.trust-badges span {
    background: #eef2f9;
    color: #274372;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 500;
    white-space: nowrap;
}

.section-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 39px;
    color: #274372;
    margin-bottom: 34px;
    line-height: 1.15;
}

.features {
    margin-top: 30px;
    padding-left: 8px;
}

.features li {
    margin: 14px 0;
    padding-left: 26px;
    position: relative;
    font-size: 16.2px;
    line-height: 1.6;
}

.features li:before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #274372;
    font-size: 22px;
    line-height: 1;
}

.features strong {
    color: #274372;
    font-weight: 600;
}

.wallet-card h3 {
    font-size: 28px;
    color: #274372;
    margin-bottom: 24px;
    font-weight: 600;
}

.wallet-desc {
    color: #555555;
    font-size: 16.5px;
    line-height: 1.65;
}

.small {
    margin-top: 16px;
    opacity: 0.8;
    font-size: 13.8px;
    line-height: 1.5;
}

.section-card p {
    margin-bottom: 22px;
    font-size: 16.2px;
    line-height: 1.72;
}

.section-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .portal-title {
        font-size: 36px;
    }
    
    .section-card h2 {
        font-size: 32px;
    }
    
    .portal-subtitle {
        font-size: 17.5px;
    }
    
    .features li {
        font-size: 15.8px;
    }
}