* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0B0F14;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

.cia-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 85px);
    /* Adjust for navbar height */
    padding: 2rem;
}


/* Reuse Background Animation from main site */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cia-container {
    background: rgba(15, 20, 28, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 50, 50, 0.3);
    /* Red border for restricted feel */
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
    animation: fadeIn 1s ease;
}

.lock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-text {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.discord-btn-large {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.discord-btn-large:hover {
    background-color: #4752C4;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}