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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* Content */
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

/* Logo */
.logo {
    margin-bottom: 40px;
}

.logo-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: none !important;
    transform: none !important;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    letter-spacing: -0.02em;
    text-shadow: 
        0 0 10px #4299e1,
        0 0 20px #63b3ed,
        0 0 30px #90cdf4,
        2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Main Content */
.main-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.feature p {
    color: #4a5568;
    font-size: 1rem;
}

/* Beta Notice */
.beta-notice {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.beta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.beta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.beta-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.beta-link {
    display: inline-block;
    background: white;
    color: #ee5a24;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.beta-link:hover {
    transform: translateY(-2px);
}


/* Notify Section */
.notify-section {
    margin-bottom: 40px;
}

.notify-section h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 600;
}

.notify-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 15px;
    gap: 10px;
}

.notify-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.notify-form input:focus {
    border-color: #667eea;
}

.notify-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wave {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.wave1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -150px;
    left: -150px;
    animation: float 6s ease-in-out infinite;
}

.wave2 {
    width: 200px;
    height: 200px;
    background: white;
    top: 50%;
    right: -100px;
    animation: float 4s ease-in-out infinite reverse;
}

.wave3 {
    width: 150px;
    height: 150px;
    background: white;
    bottom: -75px;
    left: 50%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    z-index: 100;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.modal-content h3 {
    color: #4a5568;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.modal-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* Beta Section - Simple and Centered like Live Audio Streaming Platform */
.beta-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #667eea;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.beta-access-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.beta-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.beta-title {
    text-align: center;
    margin-bottom: 20px;
}

.beta-button {
    text-align: center;
    margin-bottom: 40px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .main-content h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beta-title {
        font-size: 2rem;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .beta-title {
        font-size: 1.8rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}