:root {
    --bg-main: #06070a;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-hover: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(249, 200, 81, 0.3);
    
    --color-text: #94a3b8;
    --color-text-light: #f8fafc;
    --color-gold: #f9c851;
    --color-gold-hover: #ffe08a;
    --color-accent: #ff2a5f; /* Neon Magenta */
    
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    /* Глубокие фоновые свечения */
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(255, 42, 95, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(249, 200, 81, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold-hover);
    text-shadow: 0 0 10px rgba(249, 200, 81, 0.4);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.wm-header {
    background: rgba(6, 7, 10, 0.7);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.wm-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.wm-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.wm-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.wm-logo img {
    height: 44px;
    filter: drop-shadow(0 0 8px rgba(249, 200, 81, 0.2));
}

.wm-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    background: var(--glass-bg);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.wm-nav-menu a {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.wm-nav-menu a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-gold);
}

.wm-nav-menu a:hover::after,
.wm-nav-menu a.active::after {
    width: 100%;
}

.wm-nav-menu a.active {
    color: var(--color-gold);
}

/* Mobile Menu Toggle */
.wm-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.wm-mobile-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: 0.3s;
}

/* =========================================
   HERO SECTION
   ========================================= */
.wm-hero {
    margin-top: 0; 
    padding: 180px 20px 120px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.wm-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-main), transparent);
    z-index: 1;
}

.wm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.wm-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.wm-hero p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопки */
.wm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: linear-gradient(45deg, var(--color-accent), #ff758c);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(255, 42, 95, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wm-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #ff758c, var(--color-accent));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.wm-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 42, 95, 0.6);
}

.wm-btn:hover::before {
    opacity: 1;
}

/* =========================================
   GAME CARDS (GLASSMORPHISM)
   ========================================= */
.wm-section {
    padding: 100px 0;
}

.wm-section-title {
    text-align: center;
    font-size: 36px;
    color: var(--color-text-light);
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.wm-section-title span {
    background: linear-gradient(to right, var(--color-gold), #ffdf70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
}

.wm-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
    z-index: 1;
}

.wm-card:hover {
    transform: translateY(-12px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(249, 200, 81, 0.1);
    background: var(--glass-bg-hover);
}

.wm-card:hover::before {
    left: 150%;
}

.wm-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.wm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.wm-card-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.wm-card-title {
    font-size: 24px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.wm-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--color-gold) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(249, 200, 81, 0.4);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wm-btn-outline::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-gold);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.wm-btn-outline:hover {
    color: #000 !important;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(249, 200, 81, 0.3);
}

.wm-btn-outline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================================
   PROS & CONS TABLE (FLOATING PANELS)
   ========================================= */
.wm-pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.wm-pc-box {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, var(--glass-bg) 0%, rgba(0,0,0,0.2) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.wm-pc-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.wm-pc-box.pros h3 {
    color: #10b981; /* Emerald green */
}

.wm-pc-box.cons h3 {
    color: var(--color-accent);
}

.wm-pc-list {
    list-style: none;
}

.wm-pc-list li {
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: relative;
    font-size: 15px;
}

.wm-pc-list li:last-child {
    border-bottom: none;
}

.wm-pc-box.pros .wm-pc-list li::before {
    content: '✦'; /* Stylish checkmark alternative */
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 18px;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.wm-pc-box.cons .wm-pc-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: bold;
    top: 17px;
}

/* =========================================
   COMPARISON TABLE (FLOATING ROWS)
   ========================================= */
.wm-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    padding-bottom: 20px; /* For scrollbar */
}

.wm-table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0 10px; /* Floating rows effect */
}

.wm-table th {
    padding: 15px 25px;
    text-align: left;
    color: var(--color-gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.wm-table td {
    padding: 20px 25px;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    color: var(--color-text-light);
    transition: var(--transition);
}

.wm-table tr td:first-child {
    border-left: 1px solid var(--glass-border);
    border-radius: 12px 0 0 12px;
    font-weight: 600;
}

.wm-table tr td:last-child {
    border-right: 1px solid var(--glass-border);
    border-radius: 0 12px 12px 0;
    color: var(--color-text);
}

.wm-table tbody tr:hover td {
    background: var(--glass-bg-hover);
    border-color: rgba(255,255,255,0.1);
    transform: scale(1.01);
}

/* =========================================
   SEO CONTENT BLOCK
   ========================================= */
.wm-seo-block {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.3) 100%);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.wm-seo-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-accent));
}

.wm-seo-block h2 {
    color: var(--color-text-light);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.wm-seo-block h3 {
    color: var(--color-gold);
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.wm-seo-block p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--color-text);
}

.wm-seo-block strong {
    color: var(--color-text-light);
}

/* =========================================
   FOOTER
   ========================================= */
.wm-footer {
    background: #030406;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 80px;
    position: relative;
}

.wm-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.wm-footer-col h4 {
    color: var(--color-text-light);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.wm-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

.wm-footer-links {
    list-style: none;
}

.wm-footer-links li {
    margin-bottom: 15px;
}

.wm-footer-links a {
    color: var(--color-text);
    position: relative;
    padding-left: 0;
    transition: var(--transition);
}

.wm-footer-links a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.wm-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: #64748b;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 991px) {
    .wm-hero h1 { font-size: 46px; }
    .wm-seo-block { padding: 40px; }
}

@media (max-width: 768px) {
    .wm-header-inner { height: 75px; }
    
    .wm-nav-menu {
        display: none; /* Скрыто по умолчанию для мобильных */
        position: absolute;
        top: 85px;
        left: 20px;
        right: 20px;
        background: rgba(15, 17, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .wm-nav-menu.open {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .wm-nav-menu a {
        display: block;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .wm-nav-menu li:last-child a {
        border-bottom: none;
    }

    .wm-mobile-toggle { display: flex; }

    .wm-hero { padding: 140px 20px 80px; }
    .wm-hero h1 { font-size: 36px; }
    .wm-section { padding: 60px 0; }
    .wm-seo-block { padding: 30px 20px; }
}