:root {
    --bg-color: #0d0101;
    --red-main: #ff4747;
    --yellow-main: #ffcc00;
    --text-main: #ffffff;
    --text-muted: #a1a1a1;
    --glass-border: rgba(255, 71, 71, 0.25);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

.gradient-sphere {
    position: absolute;
    width: 120vw;
    height: 120vw;
    background: radial-gradient(circle, rgba(255, 71, 71, 0.08) 0%, transparent 60%);
    top: -60vw;
    z-index: -1;
}

.content {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(255, 204, 0, 0.3);
    border-radius: 12px;
    color: var(--yellow-main);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--yellow-main);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 12px var(--yellow-main);
}

.brand-section {
    margin-bottom: 25px;
}

.main-logo {
    width: 110px;
    height: auto;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 10px; /* Optional: smooths edges of the upload */
}

.brand-title {
    font-family: 'Bungee', sans-serif;
    font-size: 3.8rem;
    line-height: 0.9;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(to bottom, var(--yellow-main), #ffa600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.timer-box {
    background: #110303;
    border: 1px solid var(--glass-border);
    padding: 22px 5px;
    border-radius: 16px;
}

.timer-box span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Bungee', sans-serif;
    color: var(--red-main);
}

.timer-box label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--yellow-main);
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 45px;
}

.btn {
    padding: 20px;
    border-radius: 14px;
    font-family: 'Bungee', sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-primary {
    background: var(--red-main);
    color: white;
    box-shadow: 0 6px 0 #b32d2d;
}

.btn-secondary {
    background: transparent;
    color: var(--yellow-main);
    border: 2px solid var(--yellow-main);
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #b32d2d;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}

.check-icon {
    width: 18px;
    color: #ffffff;
}

footer {
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.4;
}
