* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    overflow: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    color: #ffffff;
}

/* Stars animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 5s infinite;
}

.star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0.1s; }
.star:nth-child(2) { top: 20%; left: 40%; animation-delay: 0.3s; }
.star:nth-child(3) { top: 30%; left: 10%; animation-delay: 0.5s; }
.star:nth-child(4) { top: 40%; left: 30%; animation-delay: 0.7s; }
.star:nth-child(5) { top: 50%; left: 50%; animation-delay: 0.9s; }
.star:nth-child(6) { top: 60%; left: 70%; animation-delay: 1.1s; }
.star:nth-child(7) { top: 70%; left: 90%; animation-delay: 1.3s; }
.star:nth-child(8) { top: 80%; left: 60%; animation-delay: 1.5s; }
.star:nth-child(9) { top: 90%; left: 80%; animation-delay: 1.7s; }
.star:nth-child(10) { top: 5%; left: 95%; animation-delay: 1.9s; }
.star:nth-child(11) { top: 15%; left: 75%; animation-delay: 2.1s; }
.star:nth-child(12) { top: 25%; left: 55%; animation-delay: 2.3s; }
.star:nth-child(13) { top: 35%; left: 85%; animation-delay: 2.5s; }
.star:nth-child(14) { top: 45%; left: 15%; animation-delay: 2.7s; }
.star:nth-child(15) { top: 55%; left: 35%; animation-delay: 2.9s; }
.star:nth-child(16) { top: 65%; left: 5%; animation-delay: 3.1s; }
.star:nth-child(17) { top: 75%; left: 25%; animation-delay: 3.3s; }
.star:nth-child(18) { top: 85%; left: 45%; animation-delay: 3.5s; }
.star:nth-child(19) { top: 95%; left: 65%; animation-delay: 3.7s; }
.star:nth-child(20) { top: 50%; left: 95%; animation-delay: 3.9s; }

@keyframes twinkle {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Glowing circles */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.4;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.7), rgba(44, 0, 0, 0));
    animation: pulse 15s infinite alternate;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(32, 84, 219, 0.7), rgba(0, 23, 44, 0));
    animation: pulse 20s infinite alternate-reverse;
}

.circle-3 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.7), rgba(44, 0, 0, 0));
    animation: pulse 18s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.4; }
}

header {
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.language-selector a:hover {
    opacity: 1;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 700px;
    background-color: rgba(25, 25, 35, 0.5);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease-out;
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.abuse-icon {
    font-size: 80px;
    color: #ffffff;
    animation: pulse-icon 2s infinite alternate;
}

@keyframes pulse-icon {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 64px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #5d46c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(45deg, #ff3b30, #ff9500);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4);
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.5);
}
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    p {
        font-size: 16px;
    }
    
    .content {
        padding: 40px;
    }
    
    .glow-circle {
        filter: blur(40px);
    }
    
    .abuse-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }
    
    p {
        font-size: 14px;
    }
    
    .content {
        max-width: 90%;
        padding: 30px;
    }
    
    h1 br, p br {
        display: none;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .glow-circle {
        filter: blur(30px);
    }
    
    .abuse-icon {
        font-size: 50px;
    }
}