        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #8d1b50 0%, #065127 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: rgba(168, 180, 137, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #312980;
        }

        .logo img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #a24b69;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        main {
            background: rgb(205, 212, 212);
            margin: 2rem auto;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #395271 0%, #041b02 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: #45a049;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Content Sections */
        .content-section {
            padding: 3rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(135deg, #cc3300, #e63900);
            margin: 10px auto;
            border-radius: 2px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .info-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-card h3 {
            color: #cc3300;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Casino Comparison Table */
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        th {
            background: linear-gradient(135deg, #cc3300, #e63900);
            color: white;
            font-weight: 600;
            position: sticky;
            top: 0;
        }

        tr:nth-child(even) {
            background: #f8f9ff;
        }

        tr:hover {
            background: #e8f2ff;
        }

        .rating {
            display: flex;
            align-items: center;
        }

        .stars {
            color: #ffa500;
            margin-right: 5px;
        }

        .bonus-highlight {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Features Section */
        .features {
            background: #f8f9ff;
            padding: 3rem 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #cc3300, #e63900);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #cc3300;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #cc3300;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1rem;
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .table-container {
                font-size: 0.9rem;
            }

            th, td {
                padding: 10px 8px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .hero {
                padding: 2rem 0;
            }

            .content-section {
                padding: 2rem 0;
            }

            .info-card {
                padding: 1.5rem;
            }
        }

        /* Додайте цей CSS код в ваш файл стилів */

.top-brands {
    padding: 60px 20px;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.brands-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1.5fr;
    background: #157d3a;
    color: white;
    font-weight: 600;
    padding: 20px;
    gap: 20px;
}

.header-item {
    text-align: center;
    font-size: 16px;
}

.brand-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1.5fr;
    padding: 25px 20px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.brand-row:hover {
    background: #f9f9f9;
}

.brand-row:last-child {
    border-bottom: none;
}

.brand-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.rating-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 24px;
    color: #ddd;
}

.star.active {
    color: #ffd700;
}

.rating-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.bonus-cell {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.bonus-cell strong {
    font-size: 16px;
    color: #333;
}

.bonus-detail {
    font-size: 14px;
    color: #666;
}

.action-cell {
    display: flex;
    justify-content: center;
}

.play-button {
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.play-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

/* Мобільна версія */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .table-header {
        display: none;
    }
    
    .brand-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .brand-cell {
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .brand-logo {
        max-width: 120px;
        max-height: 50px;
    }
    
    .rating-cell {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .rating-cell::before {
        content: "Hodnotenie: ";
        font-weight: 600;
        color: #666;
    }
    
    .bonus-cell::before {
        content: "Uvítací Bonus:";
        font-weight: 600;
        color: #666;
        display: block;
        margin-bottom: 8px;
    }
    
    .play-button {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .top-brands {
        padding: 40px 10px;
    }
    
    .star {
        font-size: 20px;
    }
}