/* Magnat Coming Soon Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: -1;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.logo-area {
    margin-bottom: 3rem;
    position: relative;
}

.logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
    animation: glow-image 2s ease-in-out infinite alternate;
}

.logo-image:hover {
    filter: brightness(1.1) contrast(1.1);
}

@keyframes glow-image {
    from { 
        filter: brightness(1) contrast(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); 
    }
    to { 
        filter: brightness(1.05) contrast(1.05) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); 
    }
}

.tagline {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

.main-content {
    max-width: 600px;
    margin-bottom: 4rem;
}

.coming-soon-title {
    font-size: 2.8rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 400;
}

.feature-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.4;
}

.notify-section {
    margin-bottom: 3rem;
}

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

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: #888;
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notify-btn:hover {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-text {
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 250px;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .notify-form {
        flex-direction: column;
        max-width: 300px;
    }

    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 200px;
    }

    .coming-soon-title {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }
}