:root {
    --game-primary: #5BC0DE;
    --game-secondary: #3498DB;
    --game-accent: #7FD1ED;
    --game-dark: #1a1f2e;
    --game-darker: #0f1419;
    --game-light: #f5f5f5;
    --game-success: #52C47C;
    --game-danger: #E74C3C;
    --game-purple: #9B59B6;
    --game-blue: #5BC0DE;
    --game-neon: #41B3D3;
    --game-green: #52C47C;
}

.glitch-text {
    position: relative;
    color: var(--game-primary);
}

/* Removed glitch animations for cleaner look */

/* Hero Image Styling */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-server-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 192, 222, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(91, 192, 222, 0.3);
}

.hero-server-img:hover {
    box-shadow: 0 15px 50px rgba(65, 179, 211, 0.4);
    transform: translateY(-5px);
}

.image-glow {
    /* Removed for cleaner look */
    display: none;
}

.shield-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-graphic i {
    font-size: 120px;
    color: var(--game-primary);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.shield-graphic .glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--game-secondary), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow-old 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse-glow-old {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.shield-graphic .orbit-1,
.shield-graphic .orbit-2 {
    position: absolute;
    border: 2px solid var(--game-accent);
    border-radius: 50%;
    opacity: 0.3;
}

.shield-graphic .orbit-1 {
    width: 250px;
    height: 250px;
    animation: rotate-orbit 10s linear infinite;
}

.shield-graphic .orbit-2 {
    width: 200px;
    height: 200px;
    animation: rotate-orbit 15s linear infinite reverse;
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.08), rgba(52, 152, 219, 0.08));
    border: 1px solid rgba(91, 192, 222, 0.3);
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--game-neon);
    box-shadow: 0 15px 50px rgba(65, 179, 211, 0.4);
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.12), rgba(82, 196, 124, 0.12));
}

.feature-card i {
    color: var(--game-neon);
    font-size: 48px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--game-green);
}

.pricing-card {
    border: 2px solid rgba(91, 192, 222, 0.25);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
}

.pricing-card:hover {
    border-color: var(--game-neon);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(65, 179, 211, 0.3);
}

.pricing-card.popular {
    border-color: var(--game-neon);
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.15), rgba(82, 196, 124, 0.15));
    position: relative;
    overflow: hidden;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 179, 211, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--game-primary), var(--game-neon));
    border: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(65, 179, 211, 0.5);
}

.control-panel-showcase {
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.05), rgba(82, 196, 124, 0.05));
    padding: 80px 0;
}

.control-panel-preview {
    background: linear-gradient(135deg, var(--game-darker), rgba(26, 31, 46, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(65, 179, 211, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(65, 179, 211, 0.1);
}

.control-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.control-icon-item {
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.15), rgba(82, 196, 124, 0.1));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(65, 179, 211, 0.3);
    transition: all 0.3s ease;
}

.control-icon-item:hover {
    background: linear-gradient(135deg, rgba(91, 192, 222, 0.25), rgba(82, 196, 124, 0.2));
    transform: translateY(-5px);
    border-color: var(--game-neon);
    box-shadow: 0 10px 30px rgba(65, 179, 211, 0.3);
}

.control-icon-item i {
    font-size: 40px;
    color: var(--game-neon);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.control-icon-item:hover i {
    transform: scale(1.2);
    color: var(--game-green);
}

@media (max-width: 768px) {
    .shield-graphic {
        width: 200px;
        height: 200px;
    }

    .shield-graphic i {
        font-size: 80px;
    }

    .control-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-server-img {
        border-radius: 15px;
    }
}