/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo-text i {
    color: #3498db;
    font-size: 1.5rem;
}

.logo-accent {
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    animation-delay: 2s;
}

.floating-card i {
    font-size: 2rem;
    color: #f39c12;
}

.floating-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 3rem;
    text-indent: 2em;
}

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

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Rankings Section */
.casino-rankings {
    padding: 80px 0;
    background: #f8f9fa;
}

.casino-table-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.casino-table {
    display: flex;
    flex-direction: column;
}

.table-header {
    display: grid;
    grid-template-columns: 80px 280px 200px 120px 1fr 180px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 280px 200px 120px 1fr 180px;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    align-items: center;
}

.table-row:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.table-row.featured-row {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-left: 4px solid #f39c12;
}

.table-row.featured-row:hover {
    background: linear-gradient(135deg, #fff5e6 0%, #fffaf0 100%);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    display: flex;
    align-items: center;
}

/* Rank Cell */
.rank-cell {
    justify-content: center;
}

.rank-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.rank-badge.featured-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Casino Cell */
.casino-name-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-logo-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.casino-logo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    z-index: 1;
}

.casino-logo-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.casino-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.casino-logo-badge .logo-text {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
    line-height: 1;
    text-align: center;
}

.casino-logo-badge.logo-spinaura {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.25),
        0 4px 16px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.casino-logo-badge.logo-bettyspin {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 
        0 8px 32px rgba(30, 58, 138, 0.25),
        0 4px 16px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.casino-logo-badge.logo-robocat {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 50%, #4ade80 100%);
    box-shadow: 
        0 8px 32px rgba(21, 128, 61, 0.25),
        0 4px 16px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.casino-logo-badge.logo-mafia-casino {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    box-shadow: 
        0 8px 32px rgba(8, 145, 178, 0.25),
        0 4px 16px rgba(6, 182, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.casino-logo-badge.logo-grandzbet {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #c084fc 100%);
    box-shadow: 
        0 8px 32px rgba(147, 51, 234, 0.25),
        0 4px 16px rgba(168, 85, 247, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.casino-logo-badge.logo-gransino {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.25),
        0 4px 16px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Legacy support */
.casino-logo-badge.bettyspin {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.casino-logo-badge.robocat {
    background: linear-gradient(135deg, #15803d, #22c55e);
}

.casino-logo-badge.xbet {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.casino-logo-badge.grandzbet {
    background: linear-gradient(135deg, #9333ea, #a855f7);
}

.casino-logo-badge.gransino {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.casino-name h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.casino-subtitle {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Offer Cell */
.offer-cell {
    flex-direction: column;
    align-items: flex-start;
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.25rem;
}

.bonus-details {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Rating Cell */
.rating-cell {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #f39c12;
    font-size: 1rem;
}

.rating-score {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Advantages Cell */
.advantages-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2c3e50;
}

.advantage-item i {
    color: #27ae60;
    font-size: 0.8rem;
}

/* Action Cell */
.action-cell {
    justify-content: center;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-play.featured-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-play.featured-btn:hover {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

.btn-play i {
    transition: transform 0.3s ease;
}

.btn-play:hover i {
    transform: translateX(5px);
}

/* Remove underline from btn-play links */
a.btn-play {
    text-decoration: none;
}

/* Key Points Section */
.key-points-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    margin-top: 2rem;
    border-radius: 20px;
}

.key-points-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.key-points-content > p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody tr.featured-table-row {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-left: 4px solid #f39c12;
}

.comparison-table td {
    padding: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.casino-name-col {
    color: #2c3e50;
    font-weight: 700;
}

.comparison-table i.fa-check-circle {
    color: #27ae60;
    margin-right: 0.5rem;
}

.key-points-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.key-point-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.key-point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.key-point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.key-point-icon i {
    font-size: 1.5rem;
    color: white;
}

.key-point-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.key-point-text strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

/* Detailed Reviews Section */
.detailed-reviews-section {
    padding: 80px 0;
    background: #ffffff;
}

.review-intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.review-intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

.casino-detailed-review {
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.casino-detailed-review:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.review-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 2.5px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    min-height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    z-index: 1;
}

.review-logo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.review-logo .review-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    padding: 0.5rem;
}

.review-logo .logo-text {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
    line-height: 1;
    text-align: center;
}

.review-logo.logo-spinaura {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.3));
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-logo.logo-bettyspin {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(59, 130, 246, 0.3));
    box-shadow: 
        0 8px 32px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-logo.logo-robocat {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.4), rgba(34, 197, 94, 0.3));
    box-shadow: 
        0 8px 32px rgba(21, 128, 61, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-logo.logo-mafia-casino {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.4), rgba(6, 182, 212, 0.3));
    box-shadow: 
        0 8px 32px rgba(8, 145, 178, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-logo.logo-grandzbet {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(168, 85, 247, 0.3));
    box-shadow: 
        0 8px 32px rgba(147, 51, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-logo.logo-gransino {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.4), rgba(239, 68, 68, 0.3));
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Legacy support */
.review-logo.bettyspin-logo {
    background: rgba(30, 58, 138, 0.3);
}

/* Logo animations */
@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 4px 16px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.15),
            0 6px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.casino-logo-badge:hover {
    animation: logoGlow 2s ease-in-out infinite;
}

/* Mobile optimizations for logos */
@media (max-width: 768px) {
    .casino-logo-badge {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .casino-logo-badge .logo-text {
        font-size: 0.65rem;
        letter-spacing: 1.2px;
    }
    
    .review-logo {
        min-width: 120px;
        min-height: 60px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .review-logo .logo-text {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
}

.review-logo.robocat-logo {
    background: rgba(21, 128, 61, 0.3);
}

.review-logo.xbet-logo {
    background: rgba(8, 145, 178, 0.3);
}

.review-logo.grandzbet-logo {
    background: rgba(147, 51, 234, 0.3);
}

.review-logo.gransino-logo {
    background: rgba(220, 38, 38, 0.3);
}

.review-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: #f39c12;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.review-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: white;
    line-height: 1.4;
}

.review-content {
    padding: 2.5rem;
}

.review-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.review-content p:last-of-type {
    margin-bottom: 2rem;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros-section,
.cons-section {
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
}

.pros-section {
    border-left: 4px solid #27ae60;
}

.cons-section {
    border-left: 4px solid #e74c3c;
}

.pros-section h4,
.cons-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-section h4 {
    color: #27ae60;
}

.cons-section h4 {
    color: #e74c3c;
}

.pros-section h4 i,
.cons-section h4 i {
    font-size: 1.3rem;
}

.pros-section ul,
.cons-section ul {
    list-style: none;
    padding: 0;
}

.pros-section li,
.cons-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.pros-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.cons-section li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.3rem;
}

/* SEO Text Blocks */
.seo-text-block {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

.seo-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.game-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.game-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.game-icon i {
    font-size: 2rem;
    color: white;
}

.game-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.game-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bonus-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.bonus-value {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.bonus-details p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.bonus-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.btn-bonus {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.security-item {
    text-align: center;
    padding: 2rem 1rem;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.security-icon i {
    font-size: 2rem;
    color: white;
}

.security-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.security-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #ffffff;
}

.reviews-content {
    margin-top: 2rem;
}

.review-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin-bottom: 3rem;
}

.review-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #e74c3c;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.comparison-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.comparison-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.comparison-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.comparison-list i {
    color: #27ae60;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.categories-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.category-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.category-content {
    padding: 2.5rem;
}

.category-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 2rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #2c3e50;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.category-tag i {
    font-size: 1rem;
}

/* Guide Section - How to Identify Reliable Casino */
.guide-section {
    padding: 80px 0;
    background: #ffffff;
}

.guide-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.guide-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.criteria-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.criteria-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.criteria-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.criteria-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria-icon i {
    font-size: 1.8rem;
    color: white;
}

.criteria-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.criteria-content {
    padding: 2.5rem;
}

.criteria-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Bonus Types Section */
.bonus-types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-type-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #f39c12;
}

.bonus-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.bonus-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-type-header i {
    font-size: 2.5rem;
    color: #f39c12;
}

.bonus-type-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.bonus-type-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Game Library Section */
.game-library-section {
    padding: 80px 0;
    background: #ffffff;
}

.game-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.game-library-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #667eea;
}

.game-library-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #e74c3c;
}

.game-library-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.game-library-icon i {
    font-size: 2.5rem;
    color: white;
}

.game-library-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.game-library-item p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Mobile Apps Section */
.mobile-apps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mobile-apps-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-app-feature {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.mobile-app-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mobile-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.mobile-app-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mobile-app-feature p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 80px 0;
    background: #ffffff;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.payment-method-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

.payment-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.payment-icon i {
    font-size: 2rem;
    color: white;
}

.payment-method-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.payment-method-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Legality Section */
.legality-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.legality-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legality-main {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.legality-main p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.legality-main p:last-child {
    margin-bottom: 0;
}

.legality-subsection {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.legality-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.legality-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legality-icon i {
    font-size: 1.8rem;
    color: white;
}

.legality-question h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.legality-answer {
    padding: 2.5rem;
}

.legality-answer p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.legality-answer p:last-child {
    margin-bottom: 0;
}

/* Top Payout Section */
.top-payout-section {
    padding: 80px 0;
    background: #ffffff;
}

.top-payout-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.top-payout-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.top-payout-content p:last-child {
    margin-bottom: 0;
}

.top-payout-content strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Best Overall Section */
.best-overall-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.best-overall-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.best-overall-section .section-header {
    position: relative;
    z-index: 1;
}

.best-overall-section .section-header h2,
.best-overall-section .section-header p {
    color: white;
}

.best-overall-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.best-overall-winner {
    text-align: center;
    margin-bottom: 3rem;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.winner-badge i {
    font-size: 2rem;
    color: #f39c12;
}

.winner-badge span {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.best-overall-winner h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.best-overall-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: white;
    text-align: justify;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.best-overall-content p:last-child {
    margin-bottom: 0;
}

.best-overall-content strong {
    color: #f39c12;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #7f8c8d;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #3498db;
    font-size: 1.3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Casino Table Responsive */
    .table-header {
        display: none;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .table-cell {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .rank-cell,
    .casino-cell,
    .offer-cell,
    .rating-cell,
    .advantages-cell,
    .action-cell {
        justify-content: flex-start;
    }

    .rank-cell::before,
    .offer-cell::before,
    .rating-cell::before,
    .advantages-cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #667eea;
        font-size: 0.85rem;
        text-transform: uppercase;
        margin-right: 1rem;
    }

    .casino-cell {
        order: -1;
        justify-content: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #ecf0f1;
    }

    .casino-name-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .offer-cell,
    .rating-cell,
    .advantages-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .action-cell {
        justify-content: center;
        margin-top: 1rem;
    }

    .btn-play {
        width: 100%;
        justify-content: center;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        margin: 0 auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 1.5rem;
    }

    .category-number {
        font-size: 2rem;
    }

    .category-content {
        padding: 2rem 1.5rem;
    }

    .category-item:hover {
        transform: translateX(0) translateY(-5px);
    }

    .criteria-item:hover,
    .mobile-app-feature:hover {
        transform: translateX(0) translateY(-5px);
    }

    .bonus-types-grid,
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .game-library-grid {
        grid-template-columns: 1fr;
    }

    .mobile-app-feature {
        flex-direction: column;
    }

    .legality-question {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .criteria-header,
    .legality-question {
        padding: 1.5rem;
    }

    .best-overall-winner h3 {
        font-size: 1.6rem;
    }

    .key-points-section {
        padding: 2rem 1.5rem;
    }

    .key-points-title {
        font-size: 1.5rem;
    }

    .key-points-highlights {
        grid-template-columns: 1fr;
    }

    .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-header {
        padding: 1.5rem;
    }

    .review-header h3 {
        font-size: 1.3rem;
    }

    .review-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-text {
        text-indent: 0;
        text-align: left;
    }

    .highlight-item {
        padding: 1.5rem;
    }

    .bonus-card {
        padding: 1.5rem;
    }

    .casino-table-wrapper {
        border-radius: 10px;
    }

    .table-row {
        padding: 1.2rem;
    }

    .casino-logo-badge {
        width: 60px;
        height: 60px;
        font-size: 0.65rem;
    }

    .casino-name h3 {
        font-size: 1.1rem;
    }

    .rank-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .bonus-amount {
        font-size: 1.1rem;
    }

    .btn-play {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .comparison-card {
        padding: 2rem 1.5rem;
    }

    .review-intro {
        padding: 1.5rem;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .category-content p {
        text-align: left;
    }

    .categories-intro p {
        text-align: left;
    }

    .guide-intro {
        padding: 1.5rem;
    }

    .criteria-content,
    .legality-main,
    .legality-answer {
        padding: 2rem 1.5rem;
    }

    .criteria-content p,
    .legality-main p,
    .legality-answer p,
    .top-payout-content p,
    .best-overall-content p {
        text-align: left;
    }

    .bonus-type-card,
    .payment-method-card {
        padding: 2rem 1.5rem;
    }

    .game-library-item {
        padding: 2rem;
    }

    .mobile-app-feature {
        padding: 2rem;
    }

    .top-payout-content,
    .legality-main {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .key-points-section {
        padding: 1.5rem 1rem;
    }

    .key-points-title {
        font-size: 1.3rem;
    }

    .key-points-content > p,
    .review-intro-text p,
    .review-content p {
        text-align: left;
    }

    .key-point-item {
        padding: 1rem;
    }

    .comparison-table-wrapper {
        border-radius: 10px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .review-intro-text {
        padding: 1.5rem;
    }

    .review-header {
        padding: 1.2rem;
    }

    .review-logo {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .review-header h3 {
        font-size: 1.1rem;
    }

    .review-content {
        padding: 1.5rem 1rem;
    }

    .pros-section,
    .cons-section {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .casino-card,
    .bonus-card,
    .game-card {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .btn-secondary {
        border-color: #000;
        color: #000;
    }
}
