* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #ff9700;
            --dark: #1a1a1a;
            --light: #ffffff;
            --gray: #666666;
            --light-gray: #f0f0f0;
            --border: #e0e0e0;
            --shadow: rgba(0, 0, 0, 0.1);
            --shadow-hover: rgba(0, 0, 0, 0.2);
        }

        /* Темная тема */
        :root.dark-theme {
            --dark: #f0f0f0;
            --light: #1a1a1a;
            --gray: #aaaaaa;
            --light-gray: #2a2a2a;
            --border: #444444;
            --shadow: rgba(0, 0, 0, 0.3);
            --shadow-hover: rgba(0, 0, 0, 0.5);
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            transition: background-color 0.3s, color 0.3s;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hide {
            display: none!important;
        }

        /* Header */
        header {
            background-color: var(--light);
            padding: 15px 0;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 10px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: background-color 0.3s, border-color 0.3s;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            width: 3rem;
            height: auto;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        nav a:hover, nav a.active {
            color: var(--primary);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

        /* Бургер-меню */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 101;
        }

        .burger-bar {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Body-wrapper Section */

        .games-wrapper_headline, 
        .games-wrapper_content {
            width: 90%;
            text-align: justify;
            margin: 0 auto;
            padding: 30px 0;
        }

        .games-wrapper_headline {
            border-bottom: 1px solid var(--border);
        }

        .games-wrapper_content {
			min-height: 80vh;
            height: 100%;
        }
		
		.games-wrapper_content h2 {
			padding-top: 15px;
		}
		
		.games-wrapper_content h4 {
			padding-left: 10px;
		}
		
		.games-wrapper_content ol {
			padding-left: 30px;
		}
		

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero.dark-theme {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        }

        .hero-slider {
            position: relative;
            width: 70%;
            max-width: 1000px;
            height: 400px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column-reverse;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .slide-link {
            text-decoration: none;
            color: inherit;
            /* display: flex;
            align-items: center; */
            width: 100%;
            height: 100%;
        }

        .slide-link:hover {
            text-decoration: none;
        }

        .slide-content {
            padding: 0;
            margin: 0;
            /* flex: 1; */
            background: transparent;
            /* padding: 40px; */
            text-align: left;
            /* height: 20%; */
            max-width: 100%;
            display: flex;
            justify-content: center;
        }

        .slide-content.dark-theme {
            background: rgba(42, 42, 42, 0.9);
        }

        .slide-image {
            /* flex: 1; */
            height: 86%;
            background-size: cover;
            background-position: center;
        }

        .slide-content h2 {
            text-align: center;
            font-size: 2rem;
            /* margin-bottom: 20px; */
            color: var(--primary);
        }

        .slide-content .hero-btn {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(255, 151, 0, 0.3);
            width: fit-content;
            text-decoration: none;
            text-align: center;
        }

        .slide-content .hero-btn:hover {
            background: #e68a00;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 151, 0, 0.4);
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Filters */
        .filters {
            width: 80%;
            margin: 0 auto;
            background-color: var(--light);
            padding: 25px 0;
            border-bottom: 1px solid var(--border);
            transition: background-color 0.3s, border-color 0.3s;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .filter-options {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            background: var(--light);
            border: 1px solid var(--border);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px var(--shadow);
        }

        .filter-btn:hover {
            background: #f8f8f8;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px var(--shadow);
        }

        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        /* Games Grid Wrapper */
        .games-wrapper {
            width: 80%;
            margin: 10px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background-color: var(--light);
            margin-bottom: 40px;
        }

        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 30px;
        }

        .featured-game {
            grid-column: span 2;
        }

        .game-card {
            background-color: var(--light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border);
            box-shadow: 0 5px 15px var(--shadow);
            position: relative;
            top: 0;
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px var(--shadow-hover);
            border-color: var(--primary);
        }

        .game-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .rating {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .rating i {
            color: #ffd700;
        }

        .game-info {
            padding: 10px 20px;
        }

        .featured-game .game-info {
            padding: 5px 20px;
        }

        .game-info h3 {
            font-size: 1.1rem;
            height: 50px;
            margin-bottom: 10px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }

        .category {
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .game-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.8rem;
            margin-bottom: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .no-games {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px;
            color: var(--gray);
            font-size: 1.2rem;
        }

        /* Load More Wrapper */
        .load-more-wrapper {
            width: 70%;
            margin: 0 auto 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background-color: var(--light);
            padding: 40px;
        }

        .load-more {
            text-align: center;
        }

        .load-more-btn {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 40px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 151, 0, 0.2);
            margin: 0px auto 30px;
        }

        .load-more-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 151, 0, 0.3);
        }

        .load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        footer {
            background-color: #f8f8f8;
            padding: 50px 0 20px;
            border-top: 1px solid var(--border);
        }

        footer.dark-theme {
            background-color: #2a2a2a;
        }

        .footer-content {
            width: 80%;
            text-align: center;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            /* gap: 40px; */
            /* margin-bottom: 40px; */
            margin: 0 auto 40px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Тема переключатель */
        .theme-toggle {
            background: var(--light);
            border: 1px solid var(--border);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 15px;
        }

        .theme-toggle:hover {
            background: var(--light-gray);
        }

        /* Contact us form */
        .feedback-form-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            min-height: 80vh;
        }

        .feedback-form-container {
            background: var(--light);
            padding: 30px;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feedback-form-container h2 {
            text-align: center;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: var(--light);
            color: var(--dark);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(255, 151, 0, 0.2);
        }

        .submit-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 151, 0, 0.3);
        }

        .submit-btn:hover {
            background: #e68a00;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 151, 0, 0.4);
        }

        .success-message {
            text-align: center;
            padding: 20px;
            background: #d4edda;
            color: #155724;
            border-radius: 10px;
            margin-top: 20px;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .games-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .hero-slider, .games-wrapper, .load-more-wrapper {
                width: 80%;
            }
            
            .hero-slider {
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .games-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .featured-game {
                grid-column: span 3;
            }
            
            .hero-slider, .games-wrapper, .load-more-wrapper {
                width: 80%;
            }
            
            .hero-slider {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                gap: 15px;
            }

            nav ul {
                gap: 15px;
                flex-wrap: wrap;
            }

            .filter-bar {
                flex-direction: column;
                align-items: flex-start;
            }

            .games-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .featured-game {
                grid-column: span 3;
            }

            .hero-slider, .games-wrapper, .load-more-wrapper {
                width: 95%;
            }
            
            .hero-slider {
                height: 300px;
            }

            .slide-content {
                /* padding: 20px; */
            }

            .slide-content h2 {
                font-size: 1.5rem;
                /* margin-bottom: 10px; */
            }
            
            /* Бургер-меню */
            .burger-menu {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 250px;
                height: 100vh;
                background-color: var(--light);
                box-shadow: -5px 0 15px var(--shadow);
                transition: right 0.3s ease;
                z-index: 100;
                padding: 80px 20px 20px;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                gap: 20px;
            }
            
            nav a {
                display: block;
                padding: 10px 0;
            }
            
            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 99;
            }
            
            .overlay.active {
                display: block;
            }
			
			.games-wrapper_content {
				zoom: 0.8;
			}
            .feedback-form-container {
                border-radius: none;
                box-shadow: none;
            }
        }

        @media (max-width: 576px) {
            .logo {
                gap: 5px;
            }
            
            .logo img {
                width: 1.8rem
            }

            .logo h1 {
                font-size: 1.4rem
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-slider, .games-wrapper, .load-more-wrapper {
                width: 95%;
            }
            
            .hero-slider {
                flex-direction: column;
            }
            
            .hero-slide {
                flex-direction: column-reverse;
            }
            
            .slide-content {
                width: 100%;
                max-width: 100%;
                max-height: 40%;
                text-align: center;
                /* padding: 20px; */
            }
            
            .slide-image {
                width: 100%;
            }

            .slide-content {
                margin: 0 auto;
            }
            
            .hero-btn, .load-more-btn {
                width: 80%;
                padding: 15px;
            }
            
            .games-grid {
                padding: 20px;
            }

            .featured-game {
                grid-column: span 2;
            }
            
            .load-more-wrapper {
                padding: 20px;
            }

            .filters {
                width: 100%;
            }

            .game-image {
                height: 150px;
            }

            .game-info h3 {
                font-size: 1rem;
            }

            .game-info {
                padding: 10px;
            }

            .game-meta {
                font-size: 0.7rem;
            }
        }