/* ==========================================
   MAYERNETWORK - Glass Theme Styles
   Complete CSS File
   ========================================== */

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d121f;
    --bg-tertiary: #161b2b;
    --text-primary: #ffffff;
    --text-secondary: #adb5bd;
    --accent: #4da6ff;
    --accent-hover: #3d86cc;
    --card-bg: #161b2b;
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --nav-bg: rgba(16, 21, 34, 0.7);
    --hero-overlay: rgba(0, 0, 0, 0.5);
    --footer-bg: rgba(10, 13, 20, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

body {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images2.alphacoders.com/107/thumb-1920-1077296.png');
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(77, 166, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(77, 166, 255, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.white-text {
    color: var(--text-primary);
}
/* CTA Section - Glass Effect */
.cta {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/ryzen.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    background: rgba(77, 166, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    position: relative;
    z-index: 1;
}

.btn:hover {
    background: rgba(77, 166, 255, 0.5);
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.6);
    transform: translateY(-3px);
}
/* ==========================================
   NAVIGATION BAR - Glass Effect
   ========================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(16, 21, 34, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed);
}

.navbar:hover {
    background: rgba(16, 21, 34, 0.75);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
}
/* Benefits Section */
.benefits-section {
    background: transparent;
    padding: 4rem 1rem;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--accent);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(22, 27, 43, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all var(--transition-speed);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(22, 27, 43, 0.6);
    border-color: rgba(77, 166, 255, 0.5);
    box-shadow: 0 15px 40px rgba(77, 166, 255, 0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(77, 166, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 166, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-speed);
}

.benefit-item:hover .benefit-icon {
    background: rgba(77, 166, 255, 0.3);
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Applications Section - Glass Effect */
.applications-section {
    background: transparent;
    padding: 4rem 1rem;
}

.applications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.applications-card {
    background: rgba(22, 27, 43, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all var(--transition-speed);
}

.applications-card:hover {
    border-color: rgba(77, 166, 255, 0.5);
    box-shadow: 0 15px 40px rgba(77, 166, 255, 0.3);
}

.applications-header {
    background: rgba(77, 166, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.applications-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
}

.applications-header p {
    opacity: 0.9;
}

.applications-table-container {
    max-height: 400px;
    overflow-y: auto;
}

.applications-table {
    width: 100%;
    border-collapse: collapse;
}

.applications-table th {
    background: rgba(22, 27, 43, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--glass-border);
}
.protocol-badge {
    top: 20px;
    right: 150px;
    background: rgba(0, 153, 255, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75em;
    font-weight: bold;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(54, 82, 244, 0.4);
}
.applications-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.applications-table tr:last-child td {
    border-bottom: none;
}

.applications-table tbody tr {
    transition: all var(--transition-speed);
    background: rgba(22, 27, 43, 0.2);
}

.applications-table tbody tr:hover {
    background: rgba(77, 166, 255, 0.1);
    transform: translateX(5px);
}
.discord-btn {
    background: rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
    white-space: nowrap;
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.6);
    border-color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    color: white !important;
    transform: translateY(-2px);
}

.login-btn {
    background: rgba(22, 27, 43, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
    white-space: nowrap;
}

.login-btn:hover {
    background: rgba(77, 166, 255, 0.3);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.4);
    color: white !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-left: 1rem;
    transition: transform var(--transition-speed);
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/protect-bg.png');
            background-size: cover;
            background-position: center;
            padding: 5rem 1rem;
            text-align: center;
            color: white;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var( --accent);
            animation: fadeInDown 1s ease-out;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out;
        }
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-speed);
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 1.1rem;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--accent-hover);
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }
        .btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.4);
        }
        .btn:hover::before {
            transform: translateY(0);
        }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    animation: fadeIn 1.2s ease-out;
    text-shadow: 0 0 30px rgba(77, 166, 255, 0.6);
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    animation: fadeIn 1.4s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   GAME CARDS - Glass Effect
   ========================================== */

.game-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.6s ease-out;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    width: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(77, 166, 255, 0.4);
    border-color: rgba(77, 166, 255, 0.5);
}

.game-card.active {
    border: 2px solid var(--accent);
    background: rgba(77, 166, 255, 0.1);
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.6);
}

.game-card img {
    width: 80%;
    height: 80px;
    object-fit: contain;
    margin: 0.5rem auto;
    display: block;
    transition: transform var(--transition-speed);
}

.game-card:hover img {
    transform: scale(1.15);
}

.game-card-content {
    padding: 0.5rem;
    text-align: center;
}

.game-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: var(--accent);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    background: transparent;
    padding: 3rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--accent);
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-tertiary);
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform var(--transition-speed);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ==========================================
   HARDWARE SECTION
   ========================================== */

.hardware-section {
    background: transparent;
    padding: 3rem 5%;
    text-align: center;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.hardware-card {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.hardware-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 18, 31, 0.92) 0%, rgba(22, 27, 43, 0.88) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.hardware-card:hover .hardware-overlay {
    background: linear-gradient(135deg, rgba(13, 18, 31, 0.85) 0%, rgba(22, 27, 43, 0.75) 100%);
}

.hardware-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.hardware-card:hover::before {
    left: 100%;
}

.hardware-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(77, 166, 255, 0.3);
}

.hardware-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.hardware-card:hover .hardware-image {
    transform: scale(1.1) rotate(5deg);
    background: rgba(77, 166, 255, 0.2);
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.4);
}

.hardware-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 4;
}

.hardware-card:hover .hardware-image img {
    transform: scale(1.1);
}

.hardware-image i {
    font-size: 3.5rem;
    color: var(--accent);
    transition: all 0.4s ease;
    position: relative;
    z-index: 4;
}

.hardware-card:hover .hardware-image i {
    color: #ffffff;
    text-shadow: 0 0 20px var(--accent);
}

.hardware-content {
    position: relative;
    z-index: 3;
}

.hardware-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hardware-card:hover .hardware-content h3 {
    color: var(--accent);
}

/* ==========================================
   DDOS PROTECTION CARD
   ========================================== */

.ddos-protection-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1f35 0%, #0d121f 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
}

.ddos-protection-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 166, 255, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.ddos-protection-card:hover::before {
    transform: scale(1.2);
}

.ddos-protection-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(77, 166, 255, 0.3);
    transform: translateY(-5px);
}

.ddos-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.ddos-protection-card:hover .ddos-icon {
    transform: scale(1.1);
    background: rgba(77, 166, 255, 0.2);
    box-shadow: 0 0 40px rgba(77, 166, 255, 0.5);
}

.ddos-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ddos-content {
    position: relative;
    z-index: 2;
}

.ddos-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ddos-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ddos-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ddos-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(77, 166, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ddos-feature:hover {
    background: rgba(77, 166, 255, 0.1);
    transform: translateX(5px);
}

.ddos-feature i {
    font-size: 1.5rem;
    color: #6eff8d;
    flex-shrink: 0;
}

.ddos-feature span {
    color: var(--text-primary);
    font-size: 0.95rem;
    text-align: left;
}

/* ==========================================
   ALL PLANS SECTION - Glass Effect
   ========================================== */

.all-plans-section {
    background: transparent;
    padding: 3rem 5%;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(22, 27, 43, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(77, 166, 255, 0.4);
    border-color: rgba(77, 166, 255, 0.5);
    background: rgba(22, 27, 43, 0.6);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(77, 166, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(77, 166, 255, 0.3);
}

.plan-card:hover .plan-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.5);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.plan-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.plan-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.plan-specs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.plan-specs li i {
    margin-right: 0.5rem;
    color: #6eff8d;
}

.plan-price {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
}

.plan-btn {
    display: inline-block;
    background: rgba(77, 166, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: rgba(77, 166, 255, 0.4);
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
    transform: translateY(-3px);
}

/* ==========================================
   SERVER LOCATIONS SECTION
   ========================================== */

.server-locations {
    background: transparent;
    padding: 3rem 5% 4rem;
    text-align: center;
}

.server-locations-heading {
    margin-bottom: 1.5rem;
}

.server-locations-heading h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.server-locations-heading p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.world-map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.world-map {
    width: 100%;
    height: auto;
    min-height: 250px;
    background: rgba(13, 18, 31, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map img {
    width: 90%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
}

.server-location-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
    animation: pulse 2s infinite;
    z-index: 2;
}

.server-location-dot-soon {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff4343;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4d4d;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(77, 166, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(77, 166, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(77, 166, 255, 0);
    }
}

.server-locations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.server-location-item {
    display: flex;
    align-items: center;
    background: rgba(22, 27, 43, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    transition: all var(--transition-speed);
}

.server-location-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(77, 166, 255, 0.4);
    background: rgba(22, 27, 43, 0.7);
    border-color: rgba(77, 166, 255, 0.5);
}

.server-location-item:nth-child(1) {
    animation-delay: 0.2s;
}

.server-location-item:nth-child(2) {
    animation-delay: 0.4s;
}

.server-location-item:nth-child(3) {
    animation-delay: 0.6s;
}

.server-location-item:nth-child(4) {
    animation-delay: 0.8s;
}

.server-location-item img {
    width: 25px;
    height: 18px;
    margin-right: 0.6rem;
}

.server-location-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ==========================================
   CTA SECTION - Glass Effect
   ========================================== */

.cta {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/ryzen.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    background: rgba(77, 166, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    position: relative;
    z-index: 1;
}

.btn:hover {
    background: rgba(77, 166, 255, 0.5);
    box-shadow: 0 0 30px rgba(77, 166, 255, 0.6);
    transform: translateY(-3px);
}

/* ==========================================
   FOOTER - Glass Effect
   ========================================== */

footer {
    background: rgba(10, 13, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 5%;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.5rem;
}

.logo-address-wrapper {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 80px;
    margin-right: 1rem;
    filter: drop-shadow(0 0 10px rgba(77, 166, 255, 0.5));
}

.footer-address {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.footer-address p {
    margin-bottom: 0.3rem;
}

.footer-columns {
    display: flex;
    gap: 2.5rem;
    text-align: left;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.3);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: all var(--transition-speed);
    padding: 0.5rem;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent);
    background: rgba(77, 166, 255, 0.2);
    box-shadow: 0 0 20px rgba(77, 166, 255, 0.5);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* ==========================================
   SCROLLBAR - Glass Style
   ========================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(13, 18, 31, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(77, 166, 255, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(77, 166, 255, 0.5);
}

/* ==========================================
   SELECTION COLOR
   ========================================== */

::selection {
    background: rgba(77, 166, 255, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(77, 166, 255, 0.3);
    color: var(--text-primary);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Desktop Large */
@media (min-width: 768px) {
    .config-section {
        flex-direction: row;
    }
    
    .config-left, .config-right {
        width: 50%;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .hero-logo {
        width: 180px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        width: 220px;
    }
    
    .hardware-grid {
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .hardware-card {
        padding: 2rem 1.5rem;
    }
    
    .ddos-protection-card {
        padding: 2.5rem 2rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .world-map img {
        width: 95%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-right: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 999;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .close-menu {
        display: block;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .game-card {
        width: 100px;
    }
    
    .game-card img {
        height: 60px;
    }
    
    .feature-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hardware-card {
        padding: 2rem 1.5rem;
    }
    
    .hardware-image {
        width: 100px;
        height: 100px;
    }
    
    .hardware-image img {
        width: 60px;
        height: 60px;
    }
    
    .hardware-image i {
        font-size: 3rem;
    }
    
    .hardware-content h3 {
        font-size: 1.2rem;
    }
    
    .ddos-protection-card {
        padding: 2rem 1.5rem;
    }
    
    .ddos-icon {
        width: 80px;
        height: 80px;
    }
    
    .ddos-icon img {
        width: 50px;
        height: 50px;
    }
    
    .ddos-content h3 {
        font-size: 1.6rem;
    }
    
    .ddos-content > p {
        font-size: 1rem;
    }
    
    .ddos-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ddos-feature {
        padding: 0.8rem;
    }
    
    .ddos-feature i {
        font-size: 1.2rem;
    }
    
    .ddos-feature span {
        font-size: 0.9rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1rem;
    }
    
    .server-locations-heading h2 {
        font-size: 1.8rem;
    }
    
    .world-map {
        min-height: 200px;
    }
    
    .server-location-dot, .server-location-dot-soon {
        width: 8px;
        height: 8px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-section {
        margin-bottom: 2rem;
        align-items: center;
    }
    
    .logo-address-wrapper {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-column {
        margin-bottom: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 1rem 0.5rem;
        min-height: 60vh;
    }
    
    .hero-logo {
        width: 120px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .game-cards {
        gap: 0.6rem;
    }
    
    .game-card {
        width: 80px;
    }
    
    .game-card img {
        height: 50px;
    }
    
    .game-card h3 {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .hardware-grid {
        gap: 1rem;
    }
    
    .hardware-card {
        padding: 1.5rem 1rem;
    }
    
    .hardware-image {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .hardware-image img {
        width: 50px;
        height: 50px;
    }
    
    .hardware-image i {
        font-size: 2.5rem;
    }
    
    .hardware-content h3 {
        font-size: 1.1rem;
    }
    
    .ddos-protection-card {
        padding: 1.5rem 1rem;
    }
    
    .ddos-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .ddos-icon img {
        width: 40px;
        height: 40px;
    }
    
    .ddos-content h3 {
        font-size: 1.4rem;
    }
    
    .ddos-content > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .ddos-features {
        gap: 0.8rem;
    }
    
    .ddos-feature {
        padding: 0.7rem;
        gap: 0.8rem;
    }
    
    .ddos-feature i {
        font-size: 1.1rem;
    }
    
    .ddos-feature span {
        font-size: 0.85rem;
    }
    
    .plans-grid {
        gap: 1rem;
    }
    
    .plan-card {
        padding: 1.2rem;
    }
    
    .plan-card h3 {
        font-size: 1.4rem;
    }
    
    .server-location-item {
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .server-location-item img {
        width: 20px;
        height: 15px;
    }
    
    .server-location-item span {
        font-size: 0.8rem;
    }
    
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   END OF STYLES.CSS
   ========================================== */