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

        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #05040A;
        }

        ::-webkit-scrollbar-thumb {
            background: #3C3882;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #8784C9;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(135deg, #05040A 0%, #0D0C1C 100%);
            font-family: 'Nunito', sans-serif;
            color: #8784C9;
            overflow: hidden;
            position: relative;
            cursor: none;
        }

        .background-effects {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .gradient-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(10vw, 10vh); }
            50% { transform: translate(-5vw, -8vh); }
            75% { transform: translate(7vw, -5vh); }
        }

        .container {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        h1 {
            color: #3C3882;
            font-size: clamp(2rem, 6vw, 3rem);
            margin-bottom: 2rem;
            text-shadow: 0 0 15px rgba(60, 56, 130, 0.4);
        }

        .message {
            font-size: clamp(1rem, 3vw, 1.2rem);
            line-height: 1.6;
            margin-bottom: 3rem;
            max-width: 600px;
            padding: 0 1rem;
        }

        .buttons-container {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 1rem clamp(1.5rem, 4vw, 2rem);
            border-radius: 15px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: #3C3882;
            color: #8784C9;
            border: 2px solid rgba(135, 132, 201, 0.2);
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(60, 56, 130, 0.3);
            background: #2a275e;
        }

        .btn:active {
            transform: translateY(0);
        }

        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .buttons-container {
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .gradient-circle {
                filter: blur(60px);
                animation-duration: 20s;
            }
        }

              .language-switcher {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .translate-btn {
            background: #3C3882;
            color: #8784C9;
            border: 2px solid rgba(135, 132, 201, 0.2);
            border-radius: 15px;
            padding: 8px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .translate-btn:hover {
            background: #2a275e;
            transform: translateY(-2px);
        }
        .footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    font-size: 0.9rem;
    text-align: center;
    z-index: 10;
    color: #8784C9;
    transition: opacity 0.3s ease;
}
.gradient-circle.blue {
    background: #3C3882;
    width: 400px;
    height: 400px;
    top: 20%;
    left: 10%;
}

.gradient-circle.purple {
    background: #8784C9;
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
}


