/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.content-wrapper {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 1rem;
}

/* Typography */
.main-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    padding: 0 1rem;
}

.title-line {
    display: block;
}

.highlight {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0 1rem;
}

.coming-soon-text {
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.coming-soon-text h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.coming-soon-text p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    min-width: 250px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border: 2px solid #ffffff;
}

.newsletter-form button:hover {
    background: linear-gradient(45deg, #333333, #000000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.form-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-message.error {
    background: rgba(255, 255, 255, 0.1);
    color: #ffcccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.feature p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    margin: 0 1rem;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.footer p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 0.5rem;
        min-height: 100vh;
    }
    
    .content-wrapper {
        padding: 0.5rem;
    }
    
    .logo-section {
        margin-bottom: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 80px;
        max-width: 80%;
    }
    
    .main-title {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .coming-soon-text {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .coming-soon-text h2 {
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 1.5rem 0.5rem;
    }
    
    .social-links a {
        margin: 0 0.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .main-content {
        padding: 0.25rem;
    }
    
    .content-wrapper {
        padding: 0.25rem;
    }
    
    .logo-section {
        margin-bottom: 1rem;
        padding: 0.25rem 0;
    }
    
    .logo-img {
        height: 60px;
        max-width: 70%;
    }
    
    .main-title {
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }
    
    .subtitle {
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .coming-soon-text {
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .coming-soon-text h2 {
        margin-bottom: 0.75rem;
    }
    
    .footer {
        padding: 1rem 0.25rem;
    }
    
    .social-links a {
        margin: 0 0.25rem;
        font-size: 1.2rem;
        padding: 0.4rem;
    }
}

@media (max-width: 320px) {
    .logo-img {
        height: 50px;
        max-width: 60%;
    }
    
    .coming-soon-text p {
        line-height: 1.6;
    }
    
    .footer p {
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper > * {
    animation: fadeIn 1s ease forwards;
}

.content-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.content-wrapper > *:nth-child(2) { animation-delay: 0.2s; }
.content-wrapper > *:nth-child(3) { animation-delay: 0.3s; }
.content-wrapper > *:nth-child(4) { animation-delay: 0.4s; }
.content-wrapper > *:nth-child(5) { animation-delay: 0.5s; }
.content-wrapper > *:nth-child(6) { animation-delay: 0.6s; }
