* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0b0c10;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(31,40,51,0.5) 0%, rgba(11,12,16,1) 75%);
    z-index: -1;
}

.container {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}

.text-logo-container {
    margin-bottom: 25px;
}

.text-logo {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-family: 'Arial Black', Impact, sans-serif;
    display: inline-block;
    transform: skewX(-6deg);
    background: linear-gradient(to bottom, #cfac62 0%, #edd69a 35%, #b38728 65%, #a67c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.9)) drop-shadow(0px 0px 20px rgba(197, 160, 89, 0.2));
}

h2.tagline {
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    font-weight: 700;
}

h2.tagline span.divider {
    color: #c5a059;
    margin: 0 10px;
    font-weight: 900;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.countdown-box {
    background: rgba(20, 24, 30, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 22px;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    font-family: monospace;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #cfac62;
    letter-spacing: 1.5px;
    margin-top: 5px;
    display: block;
}

.community-btn {
    display: inline-block;
    background: linear-gradient(135deg, #edd69a 0%, #b38728 100%);
    color: #0b0c10;
    padding: 16px 40px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

footer {
    width: 100%;
    background-color: #050608;
    padding: 35px 20px;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555555;
}

footer strong {
    color: #b38728;
}

.disclaimer {
    max-width: 750px;
    margin: 12px auto 0 auto;
    font-style: italic;
}

@media (max-width: 600px) {
    .text-logo { font-size: 3rem; letter-spacing: -1px; }
    h2.tagline { font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 35px; }
    h2.tagline span.divider { margin: 0 5px; }
    .countdown-container { gap: 8px; }
    .countdown-box { padding: 12px; min-width: 75px; }
    .countdown-number { font-size: 1.8rem; }
    .countdown-label { font-size: 0.65rem; }
}
