/* css/styles.css */

body {
    background-color: #051424;
    color: #d4e4fa;
    overflow-x: hidden;
}

.glass-plane {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-plane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.hex-grid-bg {
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 242, 254, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.glow-text-cyan {
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.glow-gold {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.cyan-line-animate {
    background: linear-gradient(90deg, transparent, #00f2fe, transparent);
    background-size: 200% 100%;
    animation: move-line 3s infinite linear;
}

@keyframes move-line {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.radar-line {
    stroke: #00f2fe;
    stroke-width: 2;
    fill: rgba(0, 242, 254, 0.1);
    filter: drop-shadow(0 0 4px #00f2fe);
}

.gold-action-btn {
    background-color: #F59E0B;
    color: #010f1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-action-btn:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
    transform: translateY(-2px);
}

.ghost-cyan-btn {
    border: 1px solid #00f2fe;
    color: #00f2fe;
    transition: all 0.3s ease;
}

.ghost-cyan-btn:hover {
    background: rgba(0, 242, 254, 0.1);
}