* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none;
            user-select: none;
}


body {
    font-family: 'Rajdhani', sans-serif;
    background: #0c0c0c;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c0c0c 0%, #2e1a1a 50%, #661818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.protection-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 350px;
    animation: cardAppear 0.6s ease-out;
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.protection-logo {
    margin-bottom: 30px;
}

.shield-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: shieldPulse 2s infinite;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.protection-logo h2 {
    color: #2c3e50;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.protection-message {
    margin-bottom: 30px;
}

.protection-message p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(52, 73, 94, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 3px;
    animation: loading 3.5s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.protection-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-text {
    color: #6a11bc;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.6);
    z-index: -2;
}
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 70%;
    animation-delay: -1s;
}

.particle:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 40%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.content {
    text-align: center;
    z-index: 1;
    max-width: 600px;
    width: 100%;
}

.header {
    margin-bottom: 50px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    animation: pulse 2s infinite;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.clan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0000, #b30f0f, #e02f2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.clan-tag {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 300;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}




.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B00, #FF8C00);
    color: white;
    border: 2px solid #FF8C00;
}

.btn-secondary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: 2px solid #764ba2;
}

.btn-tiktok {
    background: linear-gradient(45deg, #000000, #69C9D0, #EE1D52);
    color: white;
    border: 2px solid #EE1D52;
}

.btn-tiktok-leader {
    background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55);
    color: white;
    border: 2px solid #FE2C55;
}

.btn-join {
    background: linear-gradient(45deg, #00b09b, #96c93d);
    color: white;
    border: 2px solid #96c93d;
    margin-top: 10px;
    animation: joinPulse 2s infinite;
}

.btn i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-join:hover {
    animation: none;
    transform: translateY(-3px) scale(1.05);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #96c93d;
    border-radius: 15px;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
}

@keyframes joinPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(150, 201, 61, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(150, 201, 61, 0.8), 0 0 40px rgba(150, 201, 61, 0.6);
    }
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 300;
}

.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    color: #ff0000;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .clan-name {
        font-size: 3rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .protection-card {
        min-width: 300px;
        padding: 30px 20px;
    }
}