 :root {
        --wine: #8B0000;
        --wine-dark: #660000;
        --black: #0a0a0a;
        --gray: #4a4a4a;
        --gray-light: #b0b0b0;
        --bg-dark: #0f0f0f;
        --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #200000 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background: var(--bg-gradient);
        color: #ffffff;
        line-height: 1.6;
        font-size: 1rem;
        overflow-x: hidden;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .container {
        text-align: center;
        max-width: 800px;
        width: 100%;
        padding: 60px 40px;
        position: relative;
        z-index: 2;
    }

    .logo {
        width: 220px;
        height: 220px;
        border-radius: 20px;
        object-fit: contain;
        border: 4px solid rgba(139, 0, 0, 0.3);
        box-shadow: 
            0 20px 60px rgba(139, 0, 0, 0.3),
            0 0 0 1px rgba(139, 0, 0, 0.1),
            inset 0 0 40px rgba(255, 255, 255, 0.05);
        margin: 0 auto 50px;
        animation: float 6s ease-in-out infinite;
        transition: all 0.4s ease;
    }

    .logo:hover {
        transform: scale(1.05);
        box-shadow: 
            0 30px 80px rgba(139, 0, 0, 0.4),
            0 0 0 1px rgba(139, 0, 0, 0.2);
    }

    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        50% { 
            transform: translateY(-15px) rotate(2deg); 
        }
    }

    h1 {
        font-size: 4rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, var(--gray-light) 50%, var(--wine) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        letter-spacing: 2px;
        transform: skew(-3deg);
        position: relative;
    }

    h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--wine), transparent);
        border-radius: 2px;
    }

    .subtitle {
        font-size: 1.4rem;
        font-weight: 300;
        color: var(--gray-light);
        margin-bottom: 40px;
        transform: skew(-1deg);
        letter-spacing: 1px;
    }

    .coming-soon-text {
        font-size: 2.2rem;
        font-weight: 600;
        color: var(--wine);
        margin-bottom: 60px;
        text-transform: uppercase;
        letter-spacing: 3px;
        position: relative;
        display: inline-block;
    }

    .coming-soon-text::before,
    .coming-soon-text::after {
        content: '✦';
        position: absolute;
        color: var(--wine);
        font-size: 1.5rem;
        animation: pulse 2s ease-in-out infinite;
    }

    .coming-soon-text::before {
        left: -40px;
        animation-delay: 0s;
    }

    .coming-soon-text::after {
        right: -40px;
        animation-delay: 1s;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.4; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.2); }
    }

    .btn {
        display: inline-block;
        padding: 18px 45px;
        background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 1rem;
        border-radius: 0;
        position: relative;
        overflow: hidden;
        transform: skew(-5deg);
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
        transition: all 0.4s ease;
        box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn:hover {
        transform: skew(-5deg) translateY(-5px) scale(1.05);
        box-shadow: 0 25px 60px rgba(139, 0, 0, 0.4);
        color: #ffffff;
    }

    .decor {
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(139, 0, 0, 0.1);
        border-radius: 50%;
        top: -150px;
        left: -150px;
        z-index: 1;
        animation: rotate 20s linear infinite;
    }

    .decor:nth-child(2) {
        top: -100px;
        right: -100px;
        animation-direction: reverse;
        animation-duration: 25s;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .footer {
        margin-top: 80px;
        padding: 30px 0;
        color: var(--gray);
        font-size: 0.9rem;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
        .container {
            padding: 40px 20px;
        }

        h1 {
            font-size: 2.8rem;
            transform: none;
        }

        .subtitle {
            font-size: 1.2rem;
            transform: none;
        }

        .coming-soon-text {
            font-size: 1.8rem;
            transform: none;
        }

        .logo {
            width: 160px;
            height: 160px;
            margin-bottom: 40px;
        }

        .btn {
            transform: none;
            clip-path: none;
            padding: 16px 35px;
        }

        .coming-soon-text::before,
        .coming-soon-text::after {
            display: none;
        }

        .decor {
            display: none;
        }
    }

    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--wine);
        border-radius: 50%;
        animation: float-particle 8s linear infinite;
    }

    @keyframes float-particle {
        0% {
            transform: translateY(100vh) scale(0);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100px) scale(1);
            opacity: 0;
        }
    }