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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

/* Logo animations */
.logo-container {
    margin-bottom: 50px;
    position: relative;
}

.logo-container svg {
    width: 150px;
    height: 150px;
    fill: #ffffff;
    transition: fill 1s ease;
}

/* Loading state - spinning white icon */
.logo-container.loading svg {
    fill: #ffffff;
}

/* Loaded state - red icon with glow */
.logo-container.loaded svg {
    fill: #ff0000;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.5));
    animation: none;
}

.logo-container.loaded:hover svg {
    filter: drop-shadow(0 0 50px rgba(255, 0, 0, 0.8));
    transform: scale(1.1);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Slower spinning animation */
.logo-container.loading svg {
    animation: spin 2s linear infinite;
}

/* Content - hidden initially */
.content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s 1s;
}

.content.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 0s 0s;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #888888;
    margin-bottom: 40px;
    line-height: 1.6;
}

.warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

.warning-box p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
}

.shield-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.button-container {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    margin: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #888888;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    border-color: #666666;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Animated background effect */
.background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease;
}

.glow.visible {
    opacity: 0.5;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .logo-container svg {
        width: 80px;
        height: 80px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

