﻿body {
    background-color: #0b1120;
    background-image: url('../image/cubes.png');
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.headline {
    font-size: 1.5rem;
    color: #38bdf8;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: typing 3s steps(30, end);
    white-space: nowrap;
    overflow: hidden;
    width: 26ch;
}

@keyframes typing {
    from { width: 0; }
    to { width: 22ch; }
}
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #38bdf8; }
}

.subtitle {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.logo {
    max-width: 160px;
    margin-bottom: 1rem;
    animation: glowRotate 3s infinite ease-in-out;
}

@keyframes glowRotate {
    0%, 100% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 6px #38bdf8); }
    50% { transform: rotate(2deg) scale(1.03); filter: drop-shadow(0 0 16px #38bdf8); }
}
.radar-progress {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(#1f2937 1px, transparent 2px), #0f172a;
    background-size: 10px 10px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.radar-progress .ring {
    position: absolute;
    inset: 10px;
    border: 2px dashed #38bdf8;
    border-radius: 50%;
}
.radar-progress .sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, rgba(56,189,248,0.3), transparent 120deg);
    border-radius: 50%;
    animation: radarSweep 2s linear infinite;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stage-indicator {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #60a5fa;
    min-height: 1.5rem;
}

.modal-content {
    background-color: #1e293b;
    color: #ffffff;
    border: 1px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.modal-content a.btn-success {
    background-color: #22c55e;
    border: none;
    color: #0f172a;
    font-weight: bold;
}

.btn-primary {
    background-color: #38bdf8;
    border: none;
    color: #0f172a;
    font-weight: bold;
}

footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    font-size: 0.85rem;
    padding: 1rem;
    margin-top: 2rem;
    word-break: break-word;
}


#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    color: #f1f5f9;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    z-index: 9999;
}

#cookieBanner button {
    margin-left: 10px;
    padding: 4px 12px;
    background: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 4px;
}

.progress {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 5px #0ea5e9;
}

.progress-bar {
    transition: width 0.5s ease-in-out;
    font-weight: bold;
    color: #0f172a;
}
.footer-links a{
    color: #94a3b8;
}