* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

nav a:hover {
    color: #888;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 120px;
    font-weight: bold;
    letter-spacing: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 24px;
    letter-spacing: 3px;
    color: #888;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 50px;
    background: #fff;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: #888;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.collection {
    padding: 100px 50px;
    background: #0a0a0a;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.launch-text {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tagline {
    font-size: 18px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.notify-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-input {
    padding: 18px 30px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    transition: all 0.3s ease;
}

.whatsapp-input:focus {
    outline: none;
    border-color: #25D366;
    background: #222;
}

.whatsapp-input::placeholder {
    color: #666;
    letter-spacing: 1px;
}

.notify-btn {
    padding: 18px 40px;
    background: #fff;
    color: #0a0a0a;
    border: none;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.notify-btn:hover {
    background: #888;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.privacy-note {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

.section-title {
    font-size: 60px;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 5px;
}

.about {
    padding: 150px 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about p {
    font-size: 20px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 30px;
}

footer {
    padding: 50px;
    text-align: center;
    background: #000;
    border-top: 1px solid #222;
}

footer p {
    color: #666;
    letter-spacing: 2px;
}

.social {
    margin-top: 20px;
}

.social a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 60px;
        letter-spacing: 8px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    header {
        padding: 20px;
    }
    
    nav a {
        margin-left: 15px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .launch-text {
        font-size: 24px;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-input,
    .notify-btn {
        width: 100%;
        max-width: 350px;
    }
}