:root {
    --primary-gold: #f39c12;
    --bg-dark: #070910;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Content Styling */
.content {
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 90%;
}

.logo {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(135deg, #f39c12, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Timer Styling */
.launch-time {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.launch-time div {
    flex-basis: 100px;
}

.launch-time div p {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: -5px;
    color: var(--primary-gold);
}

.launch-time div span {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

button {
    background: var(--primary-gold);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-gold);
}

/* Background Bubbles Animation */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bubbles span {
    position: absolute;
    bottom: -100px;
    background: rgba(243, 156, 18, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: animate 10s linear infinite;
    animation-duration: calc(125s / var(--i));
}

@keyframes animate {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}

/* Bubble random positions */
.bubbles span:nth-child(even) { background: rgba(255, 255, 255, 0.05); }
.bubbles span:nth-child(1) { left: 10%; }
.bubbles span:nth-child(2) { left: 20%; }
.bubbles span:nth-child(3) { left: 35%; }
.bubbles span:nth-child(4) { left: 50%; }
.bubbles span:nth-child(5) { left: 65%; }
.bubbles span:nth-child(6) { left: 80%; }
.bubbles span:nth-child(7) { left: 90%; }
.bubbles span:nth-child(8) { left: 25%; }
.bubbles span:nth-child(9) { left: 45%; }
.bubbles span:nth-child(10) { left: 75%; }