/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary-yellow: #ffd700;
    --light-yellow: #ffe44d;
    --dark-yellow: #ccaa00;
    --white: #ffffff;
    --gray: #888888;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

/* ===================================
   Logo Section
   =================================== */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    border: 4px solid var(--secondary-black);
    animation: logoFloat 3s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

/* ===================================
   Typography
   =================================== */
.brand-name {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    margin: 1rem auto;
}

.coming-soon {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===================================
   Features Section
   =================================== */
.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.8rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-icon i {
    color: var(--primary-yellow);
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: var(--primary-yellow);
}

.feature-item:hover .feature-icon i {
    color: var(--primary-black);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===================================
   Notify Section
   =================================== */
.notify-section {
    margin-bottom: 3rem;
}

.notify-section h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-yellow);
    background: var(--secondary-black);
    color: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--light-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.email-input::placeholder {
    color: var(--gray);
}

.notify-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    color: var(--primary-black);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.notify-btn:active {
    transform: translateY(0);
}

.success-message {
    margin-top: 1rem;
    color: var(--primary-yellow);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-message.show {
    opacity: 1;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    width: 25px;
    text-align: center;
}

.contact-item:hover {
    color: var(--white);
    transform: translateX(5px);
}

.contact-item:hover i {
    color: var(--light-yellow);
}

/* ===================================
   Social Links
   =================================== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.social-link i {
    font-size: 1.2rem;
}

/* ===================================
   Decorative Elements
   =================================== */
.decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    top: -100px;
    left: -100px;
    animation: float1 6s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--light-yellow), transparent);
    bottom: -50px;
    right: -50px;
    animation: float2 8s ease-in-out infinite;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    top: 50%;
    right: 10%;
    animation: float3 7s ease-in-out infinite;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 30px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -40px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 50px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .features {
        gap: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
    
    .notify-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}
