﻿.coming-soon-section {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #fef3c7 100%);
        position: relative;
        overflow: hidden;
    }

    .coming-soon-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 40px 40px;
        pointer-events: none;
        z-index: 0;
    }

    .coming-soon-container {
        max-width: 800px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .coming-soon-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto 30px;
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 60px;
        color: white;
        box-shadow: 
            0 15px 40px rgba(59, 130, 246, 0.3),
            0 8px 20px rgba(139, 92, 246, 0.2),
            0 4px 10px rgba(245, 158, 11, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 
                0 15px 40px rgba(59, 130, 246, 0.3),
                0 8px 20px rgba(139, 92, 246, 0.2),
                0 4px 10px rgba(245, 158, 11, 0.2);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 
                0 20px 50px rgba(59, 130, 246, 0.4),
                0 12px 30px rgba(139, 92, 246, 0.3),
                0 6px 15px rgba(245, 158, 11, 0.3);
        }
    }

    .coming-soon-title {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .coming-soon-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        color: #475569;
        margin-bottom: 15px;
    }

    .coming-soon-description {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .coming-soon-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 35px;
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.4),
            0 4px 15px rgba(139, 92, 246, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
    }

    .coming-soon-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 
            0 12px 35px rgba(59, 130, 246, 0.5),
            0 6px 20px rgba(139, 92, 246, 0.4);
        background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #d97706 100%);
    }

    .coming-soon-button:active {
        transform: translateY(-3px) scale(1.02);
    }

    @media (max-width: 768px) {
        .coming-soon-section {
            min-height: 70vh;
            padding: 40px 15px;
        }

        .coming-soon-icon {
            width: 100px;
            height: 100px;
            font-size: 50px;
            margin-bottom: 25px;
        }

        .coming-soon-title {
            font-size: 2.2rem;
        }

        .coming-soon-subtitle {
            font-size: 1.2rem;
        }

        .coming-soon-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .coming-soon-button {
            padding: 12px 28px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .coming-soon-icon {
            width: 80px;
            height: 80px;
            font-size: 40px;
        }

        .coming-soon-title {
            font-size: 1.8rem;
        }

        .coming-soon-subtitle {
            font-size: 1.1rem;
        }

        .coming-soon-description {
            font-size: 0.95rem;
        }
    }
