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

body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bg-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .08;
    z-index: 0;
}
.bg-glow-1 {
    top: -150px;
    right: -100px;
    background: #C5A55A;
    animation: float1 8s ease-in-out infinite;
}
.bg-glow-2 {
    bottom: -200px;
    left: -150px;
    background: #A8882D;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, 40px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

.bg-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
    max-width: 600px;
}

.logo { margin-bottom: 50px; }
.logo img { height: 50px; opacity: .9; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197,165,90,.1);
    border: 1px solid rgba(197,165,90,.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #C5A55A;
    margin-bottom: 32px;
    letter-spacing: .5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #C5A55A;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.8); }
}

h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

h1 span {
    background: linear-gradient(135deg, #C5A55A, #E8D48B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 17px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 400;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.cd-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 20px 10px;
    min-width: 80px;
    text-align: center;
}

.cd-num {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.cd-label {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    font-family: 'Outfit', sans-serif;
}

.contact-btn-primary {
    background: linear-gradient(135deg, #C5A55A, #A8882D);
    color: #0a0a0a;
    border: none;
}
.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197,165,90,.3);
}

.contact-btn-outline {
    background: transparent;
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.1);
}
.contact-btn-outline:hover {
    border-color: rgba(197,165,90,.3);
    color: #C5A55A;
}

.contact-btn svg { flex-shrink: 0; }

.social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: all .3s ease;
}

.social a:hover {
    border-color: rgba(197,165,90,.3);
    color: #C5A55A;
    background: rgba(197,165,90,.08);
}

.mt-footer {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    color: rgba(255,255,255,.15);
    font-size: 12px;
}

@media (max-width: 600px) {
    h1 { font-size: 34px; }
    .subtitle { font-size: 15px; }
    .cd-item { min-width: 65px; padding: 16px 8px; }
    .cd-num { font-size: 28px; }
    .countdown { gap: 10px; }
    .contact-row { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; justify-content: center; max-width: 280px; }
}
