* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-1: #07111b;
    --bg-2: #0d2233;
    --bg-3: #183e56;
    --gold: #f0c46e;
    --gold-soft: #ffdd97;
    --white: #ffffff;
    --text-soft: rgba(255, 255, 255, .84);
    --card: rgba(255, 255, 255, .07);
    --card-2: rgba(255, 255, 255, .09);
    --border: rgba(255, 255, 255, .12);
    --shadow: 0 22px 55px rgba(0, 0, 0, .35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(240, 196, 110, .16), transparent 26%),
        radial-gradient(circle at bottom right, rgba(81, 181, 255, .14), transparent 28%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
    overflow-x: hidden;
    position: relative;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .18;
    z-index: 0;
    animation: floatOrb 10s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: -90px;
    left: -80px;
    background: #f0c46e;
}

.orb-2 {
    width: 320px;
    height: 320px;
    right: -110px;
    top: 18%;
    background: #40bfff;
    animation-delay: 2s;
}

.orb-3 {
    width: 280px;
    height: 280px;
    right: 10%;
    bottom: -90px;
    background: #ffd36e;
    animation-delay: 4s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.05);
    }
}

.page-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-shadow: 0 0 20px rgba(240, 196, 110, .18);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    letter-spacing: 1.6px;
}

.brand-text p {
    font-size: .86rem;
    color: var(--gold-soft);
    margin-top: 3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    transition: .3s ease;
    opacity: .92;
}

.site-nav a:hover {
    color: var(--gold);
}

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 20px;
}

.hero-card {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.hero-left {
    padding: 56px 46px;
}

.top-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(240, 196, 110, .12);
    border: 1px solid rgba(240, 196, 110, .25);
    color: var(--gold-soft);
    font-size: .9rem;
    margin-bottom: 24px;
}

.hero-left h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-left h2 span {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(240, 196, 110, .16);
}

.hero-intro {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 14px;
    max-width: 720px;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 28px;
    max-width: 720px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
}

.feature-box i {
    color: var(--gold);
    font-size: 1.15rem;
    margin-top: 4px;
}

.feature-box h3 {
    font-size: 1rem;
    margin-bottom: 7px;
}

.feature-box p {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--text-soft);
}

.countdown-block {
    margin-bottom: 24px;
}

.countdown-title {
    color: var(--gold-soft);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: .4px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.time-box {
    padding: 22px 14px;
    background: var(--card-2);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    text-align: center;
    animation: floatCard 4s ease-in-out infinite;
}

.time-box:nth-child(2) {
    animation-delay: .25s;
}

.time-box:nth-child(3) {
    animation-delay: .5s;
}

.time-box:nth-child(4) {
    animation-delay: .75s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.time-box .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.time-box .label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-soft);
}

.thanks-box {
    margin-top: 24px;
    padding: 18px 18px;
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, .05);
    border-radius: 16px;
    color: var(--text-soft);
    line-height: 1.85;
}

.hero-right {
    padding: 42px 32px;
    border-left: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-panel {
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.logo-card {
    width: 240px;
    height: 240px;
    margin: 0 auto 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    box-shadow: 0 24px 45px rgba(0, 0, 0, .24);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(240, 196, 110, 0), 0 24px 45px rgba(0, 0, 0, .24);
    }

    50% {
        box-shadow: 0 0 30px rgba(240, 196, 110, .18), 0 24px 45px rgba(0, 0, 0, .24);
    }
}

.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-soft);
    margin-bottom: 14px;
}

.logo-panel p {
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-links a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.18rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
    transition: .3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.06);
    color: var(--gold);
}

.share-message {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: .95rem;
}

.share-message strong {
    color: #fff;
}

.site-footer {
    margin-top: auto;
    text-align: center;
    padding: 20px 15px 28px;
    color: rgba(255, 255, 255, .8);
    font-size: .94rem;
}

.site-footer span {
    color: var(--gold);
    font-weight: 700;
}

.developer-credit {
    margin-top: 12px;
}

.developer-credit p {
    margin-bottom: 6px;
}

.developer-credit a {
    color: var(--gold-soft);
    text-decoration: none;
    font-weight: 600;
}

.developer-credit a:hover {
    text-decoration: underline;
}

@media (max-width:980px) {
    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
}

@media (max-width:768px) {
    .site-header {
        flex-direction: column;
        padding: 18px 16px;
    }

    .site-nav {
        justify-content: center;
        gap: 14px;
    }

    .hero-left,
    .hero-right {
        padding: 34px 22px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .brand-text h1 {
        font-size: 1.05rem;
    }

    .hero-left h2 {
        font-size: 2rem;
    }

    .time-box {
        padding: 18px 10px;
        border-radius: 18px;
    }

    .time-box .num {
        font-size: 1.55rem;
    }

    .logo-card {
        width: 185px;
        height: 185px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }
}