  :root {
            --primary-color: #d4af37;
            --secondary-color: #1a1a2e;
            --accent-color: #c9a961;
            --text-color: #333;
            --light-bg: #f9f9f9;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
            --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }
        
        /* Sticky Navigation */
        .navbar {
            position: sticky;
            top: 0;
            background: var(--secondary-color);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .cta-button {
            background: var(--gradient);
            color: var(--secondary-color);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1rem;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--white);
            padding: 6rem 2rem 4rem;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .hero h2 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .hero-cta {
            margin-top: 2rem;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Sections */
        section {
            padding: 4rem 2rem;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--secondary-color);
        }
        
        /* Advantages Grid */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .advantage-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
        }
        
        .advantage-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .advantage-card h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        /* Slots Section */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .slot-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .slot-card:hover {
            transform: scale(1.05);
        }
        
        .slot-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .slot-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
            z-index: 1;
        }
        
        .slot-image > * {
            position: relative;
            z-index: 2;
        }
        
        .slot-info {
            padding: 1.5rem;
        }
        
        .slot-info h3 {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        /* Reviews Section */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .review-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.5rem;
        }
        
        .review-author h4 {
            color: var(--secondary-color);
        }
        
        .review-rating {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        /* Tables */
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        
        th {
            background: var(--secondary-color);
            color: var(--white);
            padding: 1rem;
            text-align: left;
        }
        
        td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        tr:hover {
            background: var(--light-bg);
        }
        
        .highlight {
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: bold;
        }
        
        /* SEO Text Block */
        .seo-text-block {
            background: var(--light-bg);
            padding: 3rem;
            border-radius: 15px;
            margin: 3rem 0;
            line-height: 1.8;
        }
        
        .seo-text-block h2 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        
        .seo-text-block h3 {
            color: var(--secondary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .seo-text-block p {
            margin-bottom: 1rem;
        }
        
        .seo-text-block ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .seo-text-block strong {
            color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: var(--white);
            text-decoration: none;
            line-height: 2;
        }
        
        .footer-section a:hover {
            color: var(--primary-color);
        }
        
        .language-selector {
            margin-top: 1rem;
        }
        
        .language-selector select {
            background: var(--white);
            color: var(--secondary-color);
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
.slot-image {
    width: 100%;
    height: 180px;  /* Уменьшено с 200px */
    object-fit: cover;  /* Заполнит весь контейнер */
}

.slot-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Показывает полностью */
    padding: 10px;  /* Небольшой отступ */
}