/* 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;
}

/* Australian Flag Color Scheme */
:root {
    --primary-blue: #002868;
    --bright-red: #BF0A30;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --medium-grey: #E0E0E0;
    --dark-grey: #666666;
    --text-dark: #333333;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--bright-red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo .logo {
    height: 45px;
    width: auto;
}

.nav-logo h2 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.5rem;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--bright-red);
    text-decoration: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* CTA Buttons */
.cta-button, .play-now-btn, .claim-bonus-btn {
    display: inline-block;
    background-color: var(--bright-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .play-now-btn:hover, .claim-bonus-btn:hover {
    background-color: #9A0825;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

/* Table of Contents */
.toc {
    background-color: var(--light-grey);
    padding: 2rem 0;
}

.toc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.toc-link {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.toc-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Casino Showcase */
.casino-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.casino-showcase::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.casino-showcase .container {
    position: relative;
    z-index: 1;
}

.casino-showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.casino-showcase::after {
    content: 'Top Rated & Trusted Casinos';
    display: block;
    text-align: center;
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.casino-cards {
    display: grid;
    gap: 1.5rem;
    max-width: 100%;
}

.casino-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 40, 104, 0.12);
    border: 1px solid rgba(191, 10, 48, 0.1);
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red) 0%, #ff6b6b 50%, var(--primary-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(191, 10, 48, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.casino-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 40, 104, 0.2);
    border-color: rgba(191, 10, 48, 0.3);
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    min-width: 130px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.casino-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.casino-card:hover .casino-logo img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 40, 104, 0.25);
}

.casino-logo h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-blue);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

.casino-logo h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--bright-red), var(--primary-blue));
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover .casino-logo h3::after {
    opacity: 1;
}

.casino-bonus {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 190px;
    flex-shrink: 0;
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(191, 10, 48, 0.05) 0%, rgba(191, 10, 48, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(191, 10, 48, 0.1);
}

.casino-bonus::before {
    content: '🎁';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.2rem;
    background: var(--bright-red);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.casino-bonus strong {
    color: var(--bright-red);
    display: block;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.casino-bonus small {
    color: var(--dark-grey);
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 500;
}

.casino-deposit {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 150px;
    font-size: 0.9rem;
    flex-shrink: 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.05) 0%, rgba(0, 40, 104, 0.02) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 40, 104, 0.1);
}

.casino-deposit span {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

.casino-deposit span::before {
    content: '💰';
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.casino-deposit span:nth-child(2)::before {
    content: '🎯';
}

.casino-deposit span:last-child {
    margin-bottom: 0;
}

.casino-payments {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 170px;
    font-size: 0.85rem;
    color: var(--dark-grey);
    line-height: 1.4;
    flex-grow: 1;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.05) 0%, rgba(102, 102, 102, 0.02) 100%);
    border-radius: 10px;
    border: 1px solid rgba(102, 102, 102, 0.1);
    position: relative;
}

.casino-payments::before {
    content: '💳';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1rem;
    opacity: 0.6;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 130px;
    flex-shrink: 0;
}

.play-now-btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--bright-red) 0%, #e63946 100%);
    border: none;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.play-now-btn:hover::before {
    left: 100%;
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 10, 48, 0.4);
    background: linear-gradient(135deg, #d00d3a 0%, #ff4757 100%);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-grey);
}

.content-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--bright-red);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

/* Rating Methodology */
.methodology {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.rating-criteria {
    display: grid;
    gap: 2rem;
}

.criteria-item {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--bright-red);
}

.criteria-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.criteria-item em {
    color: var(--bright-red);
    font-weight: 500;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table, .payment-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th, .payment-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td, .payment-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--medium-grey);
}

.comparison-table tr:hover, .payment-table tr:hover {
    background-color: var(--light-grey);
}

/* Review Section */
#reviews {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff3e0 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

#reviews::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 60 60"><defs><pattern id="reviewGrid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23002868" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23reviewGrid)"/></svg>');
    pointer-events: none;
}

#reviews .container {
    position: relative;
    z-index: 1;
}

#reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#reviews::after {
    content: 'In-Depth Casino Analysis & Expert Reviews';
    display: block;
    text-align: center;
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Review Cards */
.review-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 40, 104, 0.15);
    border: 1px solid rgba(191, 10, 48, 0.08);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bright-red) 0%, #ff6b6b 33%, var(--primary-blue) 66%, #4dabf7 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 40, 104, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 40, 104, 0.25);
    border-color: rgba(191, 10, 48, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

.review-image {
    flex-shrink: 0;
    position: relative;
}

.review-image img {
    width: 160px;
    height: 130px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 40, 104, 0.3);
}

.review-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.review-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
}

.review-content h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-red), var(--primary-blue));
    border-radius: 2px;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.review-details span {
    background: linear-gradient(135deg, var(--light-grey) 0%, #f0f0f0 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-details span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.5s;
}

.review-details span:hover::before {
    left: 100%;
}

.review-details span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bonus {
    background: linear-gradient(135deg, rgba(191, 10, 48, 0.15) 0%, rgba(191, 10, 48, 0.08) 100%) !important;
    color: var(--bright-red) !important;
    font-weight: 700 !important;
    border-color: rgba(191, 10, 48, 0.2) !important;
}

.claim-bonus-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1565c0 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 40, 104, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.claim-bonus-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.claim-bonus-btn:hover::before {
    left: 100%;
}

.claim-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 40, 104, 0.4);
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
}

/* Games Section */
#games {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8f5e8 50%, #fff3e0 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

#games::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 40 40"><defs><pattern id="gamePattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect x="18" y="18" width="4" height="4" fill="%23002868" opacity="0.08"/></pattern></defs><rect width="40" height="40" fill="url(%23gamePattern)"/></svg>');
    pointer-events: none;
}

#games .container {
    position: relative;
    z-index: 1;
}

#games h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#games > .container > .content-card > p:first-of-type {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 3rem;
    font-weight: 500;
}

.games-category {
    margin-bottom: 4rem;
    position: relative;
}

.games-category h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 800;
    padding: 1rem 0;
    margin-bottom: 2.5rem;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 40, 104, 0.1);
}

.games-category h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red) 0%, #ff6b6b 50%, var(--primary-blue) 100%);
    border-radius: 2px;
}

.games-category h3::after {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.games-category:nth-child(2) h3::after {
    content: '🎰';
}

.games-category:nth-child(3) h3::after {
    content: '🃏';
}

.games-category:nth-child(4) h3::after {
    content: '📺';
}

.games-category:nth-child(5) h3::after {
    content: '📱';
}

.game-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 40, 104, 0.12);
    border: 1px solid rgba(191, 10, 48, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red) 0%, #ff6b6b 50%, var(--primary-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(191, 10, 48, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.game-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 40, 104, 0.2);
    border-color: rgba(191, 10, 48, 0.15);
}

.game-item:hover::before {
    opacity: 1;
}

.game-item img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 40, 104, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.game-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 40, 104, 0.25);
}

.game-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.game-info h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
}

.game-info h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bright-red);
    border-radius: 1px;
}

.game-info ul {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.05) 0%, rgba(0, 40, 104, 0.02) 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 40, 104, 0.1);
}

.game-info li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.game-info li::before {
    content: '▸';
    color: var(--bright-red);
    font-weight: bold;
    margin-right: 0.5rem;
}

.game-info li:last-child {
    margin-bottom: 0;
}

.game-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(191, 10, 48, 0.05) 0%, rgba(191, 10, 48, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--bright-red);
    margin: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--medium-grey);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-section .cta-button {
    background-color: var(--bright-red);
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 65px;
    width: auto;
    margin-bottom: 1rem;
}

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

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: none;
}

.disclaimer {
    color: var(--bright-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .casino-card {
        padding: 1.25rem;
    }
    
    .casino-logo img {
        width: 55px;
        height: 55px;
    }
    
    .casino-logo h3 {
        font-size: 1.1rem;
    }
    
    .casino-bonus strong {
        font-size: 1rem;
    }
    
    .casino-deposit {
        font-size: 0.9rem;
    }
    
    .casino-payments {
        font-size: 0.85rem;
    }
}

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

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

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

    .nav-item {
        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 Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Casino Cards Mobile */
    .casino-showcase {
        padding: 3rem 0;
    }
    
    .casino-showcase h2 {
        font-size: 2rem;
    }
    
    .casino-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem;
        transform: none !important;
        scale: none !important;
    }

    .casino-card:hover {
        transform: translateY(-3px);
        scale: 1;
    }

    .casino-logo {
        min-width: auto;
        align-items: center;
    }

    .casino-logo img {
        width: 55px;
        height: 55px;
    }

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

    .casino-bonus, .casino-deposit, .casino-payments, .casino-cta {
        min-width: auto;
        width: 100%;
    }

    .casino-bonus {
        padding: 1rem;
    }

    .casino-bonus strong {
        font-size: 1.1rem;
    }

    .casino-bonus small {
        font-size: 0.9rem;
    }

    .casino-deposit {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .casino-payments {
        font-size: 0.85rem;
        padding: 1rem;
    }

    .play-now-btn {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
        border-radius: 12px;
    }

    /* Review Section Mobile */
    #reviews {
        padding: 3rem 0;
    }
    
    #reviews h2 {
        font-size: 2rem;
    }
    
    /* Review Cards Mobile */
    .review-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
        transform: none !important;
    }

    .review-card:hover {
        transform: translateY(-4px);
    }

    .review-image {
        align-self: center;
    }

    .review-image img {
        width: 140px;
        height: 110px;
        border-radius: 12px;
    }

    .review-content h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .review-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .review-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .review-details {
        justify-content: center;
        gap: 0.75rem;
    }

    .review-details span {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .claim-bonus-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
        align-self: center;
        border-radius: 25px;
    }

    /* Games Section Mobile */
    #games {
        padding: 3rem 0;
    }
    
    #games h2 {
        font-size: 2rem;
    }
    
    .games-category {
        margin-bottom: 3rem;
    }
    
    .games-category h3 {
        font-size: 1.4rem;
        padding: 0.75rem 0;
        margin-bottom: 2rem;
    }
    
    .games-category h3::before {
        width: 60px;
        height: 3px;
    }
    
    /* Game Items Mobile */
    .game-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
        transform: none !important;
    }

    .game-item:hover {
        transform: translateY(-4px);
    }

    .game-item img {
        width: 100%;
        height: 160px;
        border-radius: 12px;
        align-self: center;
        max-width: 250px;
    }
    
    .game-info h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .game-info h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .game-info ul {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .game-info li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .game-info p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0.75rem;
    }

    /* Table Mobile */
    .comparison-table, .payment-table {
        font-size: 0.8rem;
    }

    .comparison-table th, .comparison-table td,
    .payment-table th, .payment-table td {
        padding: 0.5rem;
    }

    /* Content Sections Mobile */
    .content-card {
        padding: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    /* TOC Mobile */
    .toc-nav {
        gap: 0.5rem;
    }

    .toc-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .casino-card {
        padding: 0.75rem;
        flex-direction: column;
    }

    .casino-logo img {
        width: 45px;
        height: 45px;
    }

    .casino-logo h3 {
        font-size: 0.9rem;
    }

    .casino-bonus, .casino-deposit, .casino-payments, .casino-cta {
        min-width: auto;
        width: 100%;
    }

    .casino-bonus strong {
        font-size: 0.9rem;
    }

    .casino-bonus small {
        font-size: 0.75rem;
    }

    .casino-deposit {
        font-size: 0.8rem;
    }

    .casino-payments {
        font-size: 0.75rem;
    }

    .play-now-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
    }

    .comparison-table, .payment-table {
        font-size: 0.7rem;
    }

    .content-card {
        padding: 1rem;
    }

    .hero {
        padding: 80px 0 40px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Loading and Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* LIVE Player Reviews Section */
#live-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

#live-reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
    opacity: 0.3;
}

.live-reviews-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

#live-reviews h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--bright-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 25px;
    font-weight: 500;
}

.review-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 40, 104, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), #0044aa);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(0, 40, 104, 0.3);
}

.live-reviews-container {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.live-review-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideIn 0.6s ease;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.live-review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s;
}

.live-review-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px) scale(1.02);
}

.live-review-item:hover::before {
    left: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 5px 25px rgba(191, 10, 48, 0.4);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.review-casino {
    font-weight: 500;
    color: var(--primary-blue);
}

.review-time {
    opacity: 0.8;
}

.review-badge {
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s;
}

.review-badge:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.review-badge.positive {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.review-badge.negative {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.review-badge.story {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.review-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.new-review-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: newBadgePulse 2s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

@keyframes newBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
}

.new-user-review {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
    position: relative;
    animation: newReviewGlow 3s ease-in-out;
}

.new-user-review::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes newReviewGlow {
    0% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.review-content {
    line-height: 1.6;
    color: var(--text-dark);
}

.reviews-load-more {
    text-align: center;
}

.load-more-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-blue), #0044aa);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 40, 104, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.4);
}

.load-more-btn:hover::before {
    left: 100%;
}

/* Add Review Form Section */
.add-review-section {
    margin-top: 25px;
    padding: 20px 25px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0,40,104,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,40,104,0.1);
    transition: all 0.3s ease;
}

.add-review-section:hover {
    box-shadow: 0 8px 30px rgba(0,40,104,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.add-review-section h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 3px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.add-review-section h3::after {
    content: '✍️';
    position: absolute;
    right: -25px;
    top: 0;
    font-size: 1rem;
    animation: writeAnimation 2s ease-in-out infinite;
}

@keyframes writeAnimation {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.form-subtitle {
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 18px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.review-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0,40,104,0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.1), inset 0 1px 3px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dark-grey);
    opacity: 0.7;
}

.review-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 2px;
}

.radio-option {
    cursor: pointer;
    position: relative;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-label {
    display: block;
    padding: 6px 10px;
    border: 1px solid rgba(0,40,104,0.2);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.radio-option input[type="radio"]:checked + .radio-label.positive {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
    transform: scale(1.05);
}

.radio-option input[type="radio"]:checked + .radio-label.negative {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    transform: scale(1.05);
}

.radio-option input[type="radio"]:checked + .radio-label.story {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.4);
    transform: scale(1.05);
}

.radio-label:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 40, 104, 0.1);
    transform: translateY(-1px);
}

.char-counter {
    text-align: right;
    font-size: 0.7rem;
    color: var(--dark-grey);
    margin-top: 2px;
    opacity: 0.7;
}

.form-actions {
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,40,104,0.1);
}

.submit-review-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 40, 104, 0.25);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-review-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 40, 104, 0.35);
}

.submit-review-btn:hover::before {
    left: 100%;
}

.submit-review-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: none;
}

.submit-review-btn.loading .btn-text {
    display: none;
}

.submit-review-btn.loading .btn-loader {
    display: inline;
}

.form-notice {
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--dark-grey);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Success/Error Messages */
.form-message {
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Form */
@media (max-width: 768px) {
    .add-review-section {
        margin: 15px 10px 0;
        padding: 15px 20px 20px;
    }
    
    .add-review-section h3::after {
        right: -20px;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .review-type-options {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .radio-label {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .submit-review-btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .form-actions {
        margin-top: 12px;
        padding-top: 10px;
    }
}

/* Interactive Deposit Guide Section */
#deposit-guide {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.deposit-guide-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.guide-subtitle {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 25px;
}

.guide-progress-info {
    text-align: center;
    margin-bottom: 10px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.step-dot.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    box-shadow: 0 0 10px rgba(0, 40, 104, 0.5);
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-dot.active::after {
    opacity: 1;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    opacity: 0.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideUp 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--bright-red));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: rgba(0, 40, 104, 0.3);
}

.step-card:hover::before {
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(0, 40, 104, 0.4);
}

.step-icon {
    font-size: 2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.step-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-tip {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border-left: 3px solid #ffc107;
    padding: 8px 12px;
    margin: 12px 0 0;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #856404;
    position: relative;
    overflow: hidden;
}

.step-tip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.step-card:hover .step-tip::before {
    transform: translateX(100%);
}

.payment-options {
    display: flex;
    gap: 6px;
    margin: 10px 0 0;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.3);
}

.amount-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0;
    justify-content: center;
}

.amount-box {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.amount-note {
    color: var(--dark-grey);
    font-style: italic;
    font-size: 0.8rem;
}

.step-card:hover .amount-box {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
}

.celebration {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.15));
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin: 15px 0 0;
    position: relative;
    overflow: hidden;
}

.celebration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: celebrationGlow 3s ease-in-out infinite;
}

@keyframes celebrationGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.celebration-text {
    color: #856404;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    animation: celebration 2s ease-in-out infinite;
}

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

.step-complete-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-red));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.step-complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 40, 104, 0.3);
}

.step-complete-btn .btn-check {
    display: none;
}

.step-complete-btn.completed {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.step-complete-btn.completed .btn-text {
    display: none;
}

.step-complete-btn.completed .btn-check {
    display: inline;
}

.guide-footer {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.reset-btn {
    padding: 10px 25px;
    background: rgba(108, 117, 125, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.reset-btn:hover {
    background: #6c757d;
    transform: translateY(-2px);
}

.completion-celebration {
    display: none;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.05));
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    animation: celebrationAppear 0.8s ease;
}

.completion-celebration.show {
    display: block;
}

@keyframes celebrationAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.completion-celebration .confetti {
    font-size: 3rem;
    animation: confettiFall 2s ease-in-out infinite;
}

@keyframes confettiFall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    75% { transform: translateY(5px) rotate(-90deg); }
}

.completion-celebration h3 {
    color: #28a745;
    margin: 15px 0 10px;
}

.completion-celebration p {
    color: var(--text-dark);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-header {
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .payment-options {
        justify-content: center;
    }
    
    .amount-display {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .amount-box {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Top Ratings Section */
#top-ratings {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

#top-ratings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#top-ratings::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.ratings-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

#top-ratings h2 {
    font-size: 2.8rem;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

#top-ratings .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.rating-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.category-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--white);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.category-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn.active {
    background: linear-gradient(135deg, var(--bright-red), #ff1744);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(191, 10, 48, 0.4);
}

.ratings-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sort-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.sort-controls label {
    color: var(--white);
    font-weight: 500;
}

.sort-select {
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.sort-select option {
    background: var(--primary-blue);
    color: var(--white);
}

.ratings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.rating-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--bright-red), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.rating-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px) scale(1.02);
}

.rating-item:hover::before {
    opacity: 1;
}

.rating-rank {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 70px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-item:nth-child(1) .rating-rank {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.rating-item:nth-child(1) .rating-rank::after {
    content: '👑';
    position: absolute;
    top: -15px;
    font-size: 1.5rem;
    animation: crown-bounce 2s ease-in-out infinite;
}

@keyframes crown-bounce {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.rating-item:nth-child(2) .rating-rank {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(192, 192, 192, 0.5));
}

.rating-item:nth-child(3) .rating-rank {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(205, 127, 50, 0.5));
}

.rating-casino-info {
    flex: 1;
}

.rating-casino-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.rating-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.rating-feature {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-scores {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 150px;
}

.score-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.score-label {
    font-size: 0.85rem;
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    gap: 5px;
}

.score-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.star-rating {
    display: flex;
    gap: 3px;
    align-items: center;
}

.star {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.star.filled {
    color: #FFD700;
}

.star.empty {
    color: rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.star.half {
    color: #FFD700;
}

/* Interactive Star Styles */
.star.interactive {
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s ease;
    position: relative;
}

.star.interactive:hover {
    transform: scale(1.3);
}

.star.interactive.hover-filled {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: starGlow 0.3s ease;
}

.star.interactive.hover-empty {
    color: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

@keyframes starGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.4);
        text-shadow: 0 0 15px rgba(255, 215, 0, 1);
    }
    100% {
        transform: scale(1.3);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    }
}

.star-rating.interactive {
    margin-bottom: 5px;
}

.star-rating.voted .star {
    cursor: not-allowed;
    opacity: 0.8;
}

.user-rating-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.score-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vote-count {
    font-size: 0.85rem;
    color: var(--dark-grey);
    opacity: 0.8;
}

.rating-hint {
    font-size: 0.75rem;
    color: var(--primary-blue);
    opacity: 0.7;
    font-style: italic;
    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.voted-badge {
    padding: 3px 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.user-voted {
    border-left: 4px solid #28a745;
}

/* Rating Messages */
.rating-message {
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
    position: relative;
    z-index: 10;
}

.rating-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.rating-message.info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.rating-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.rating-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--bright-red), #ff1744);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(191, 10, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.rating-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.rating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 10, 48, 0.4);
}

.rating-cta:hover::before {
    width: 200px;
    height: 200px;
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .review-filters,
    .rating-categories {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .filter-btn,
    .category-btn {
        white-space: nowrap;
    }
    
    .rating-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-rank {
        font-size: 1.5rem;
    }
    
    .rating-scores {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .score-item {
        flex-direction: column;
        text-align: center;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Payment Methods Grid Styles */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.payment-method-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--bright-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 40, 104, 0.15);
    border-color: var(--primary-blue);
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
}

.payment-method-card:hover::before {
    opacity: 1;
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--light-grey);
    position: relative;
}

.payment-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-method-card:hover .payment-logo {
    transform: scale(1.1) rotate(2deg);
}

.payment-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.payment-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.min-deposit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.2);
    transition: transform 0.3s ease;
}

.payment-method-card:hover .min-deposit {
    transform: scale(1.05);
}

.min-deposit strong {
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.payment-pros,
.payment-cons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.payment-pros {
    background: linear-gradient(135deg, #d4f6d4, #e8f5e8);
    border-left: 4px solid #28a745;
}

.payment-cons {
    background: linear-gradient(135deg, #ffe6e6, #fff0f0);
    border-left: 4px solid var(--bright-red);
}

.payment-method-card:hover .payment-pros,
.payment-method-card:hover .payment-cons {
    transform: translateX(5px);
}

.pros-title,
.cons-title {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.pros-title {
    color: #1e7e34;
}

.cons-title {
    color: #c82333;
}

.payment-pros p,
.payment-cons p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    padding-left: 10px;
    font-weight: 500;
}

/* Responsive Design for Payment Methods */
@media (max-width: 992px) {
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .payment-logo {
        width: 40px;
        height: 40px;
    }
}

/* Enhanced Comparison Table Styles */
.table-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.08);
    overflow: hidden;
    margin: 30px 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.table-wrapper:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 35px rgba(0, 40, 104, 0.12);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Inter', sans-serif;
    background: transparent;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    position: relative;
}

.comparison-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-red), #ff6b6b, var(--bright-red));
}

.comparison-table th {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    padding: 20px 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
}

.comparison-table th:first-child {
    padding-left: 24px;
    border-radius: 0;
}

.comparison-table th:last-child {
    padding-right: 24px;
    border-radius: 0;
}

.comparison-table tbody tr {
    background: var(--white);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 40, 104, 0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background: linear-gradient(145deg, #fafbfc, #f8f9fa);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(145deg, #f0f8ff, #e6f3ff);
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.1);
}

.comparison-table td {
    padding: 18px 16px;
    border: none;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    vertical-align: middle;
}

.comparison-table td:first-child {
    padding-left: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
    position: relative;
}

.comparison-table td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--bright-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-table tbody tr:hover td:first-child::before {
    opacity: 1;
}

.comparison-table td:last-child {
    padding-right: 24px;
}

/* Special styling for different columns */
.comparison-table td:nth-child(2) {
    font-weight: 600;
    color: #2d5a87;
}

.comparison-table td:nth-child(3) {
    font-weight: 700;
    color: var(--bright-red);
    text-align: center;
}

.comparison-table td:nth-child(4) {
    font-size: 0.85rem;
    color: var(--dark-grey);
    text-align: center;
}

.comparison-table td:nth-child(6) {
    text-align: center;
    font-size: 1.2rem;
}

.comparison-table td:nth-child(7) {
    font-size: 0.85rem;
    color: var(--dark-grey);
    text-align: center;
    font-weight: 600;
}

/* Enhanced checkmark styling */
.comparison-table td:nth-child(6) {
    color: #28a745;
    font-weight: bold;
}

/* Add subtle animations */
.comparison-table tbody tr {
    animation: fadeInRow 0.5s ease-in-out;
}

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive enhancements for comparison table */
@media (max-width: 992px) {
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .comparison-table th {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .comparison-table td:first-child {
        font-size: 0.85rem;
    }
}

/* Enhanced Rating Criteria Styles */
.rating-criteria {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.criteria-item {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.criteria-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.criteria-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.criteria-item:hover .criteria-icon {
    transform: scale(1.2) rotate(5deg);
}

.criteria-content {
    flex: 1;
}

.criteria-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 700;
}

.criteria-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-dark);
}

.criteria-content em {
    color: var(--dark-grey);
    font-style: italic;
    font-size: 0.95rem;
}

.criteria-decoration {
    display: none;
}

/* Licensing Item */
.licensing-item {
    background: linear-gradient(135deg, #e8f4fd, #f0f9ff);
    border-left: 5px solid #0066cc;
}

.licensing-item:hover {
    background: linear-gradient(135deg, #ddeeff, #e6f3ff);
    border-color: var(--primary-blue);
}

.security-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

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

/* Payment Item */
.payment-item {
    background: linear-gradient(135deg, #fff8e1, #fffbf0);
    border-left: 5px solid #ff9800;
}

.payment-item:hover {
    background: linear-gradient(135deg, #fff3d4, #fff8e8);
    border-color: #ff9800;
}

.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    animation: paymentPulse 3s infinite;
}

.payment-dot.payid {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    animation-delay: 0s;
}

.payment-dot.crypto {
    background: linear-gradient(135deg, #FF9800, #f57c00);
    animation-delay: 1s;
}

.payment-dot.card {
    background: linear-gradient(135deg, #2196F3, #1976d2);
    animation-delay: 2s;
}

@keyframes paymentPulse {
    0%, 90%, 100% { transform: scale(1); opacity: 0.8; }
    45% { transform: scale(1.3); opacity: 1; }
}

/* Bonus Item */
.bonus-item {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    border-left: 5px solid #e91e63;
}

.bonus-item:hover {
    background: linear-gradient(135deg, #f8bbd9, #f48fb1);
    border-color: var(--bright-red);
}

.bonus-meter {
    width: 80px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 20px;
    animation: fillMeter 2s ease-in-out;
}

.meter-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fillMeter {
    from { width: 0%; }
    to { width: 75%; }
}

/* Fairness Item */
.fairness-item {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border-left: 5px solid #4CAF50;
}

.fairness-item:hover {
    background: linear-gradient(135deg, #dcedc8, #e8f5e8);
    border-color: #4CAF50;
}

.rtp-display {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    position: relative;
}

.rtp-display::after {
    content: 'RTP';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--bright-red);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
}

/* Mobile Item */
.mobile-item {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-left: 5px solid #9c27b0;
}

.mobile-item:hover {
    background: linear-gradient(135deg, #e1bee7, #ce93d8);
    border-color: #9c27b0;
}

.device-icons {
    display: flex;
    gap: 10px;
}

.device-icon {
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    border-radius: 6px;
    position: relative;
    animation: deviceBounce 2s infinite;
}

.device-icon.phone {
    width: 25px;
    animation-delay: 0s;
}

.device-icon.tablet {
    width: 35px;
    height: 45px;
    animation-delay: 0.5s;
}

.device-icon::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    transform: translateX(-50%);
}

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

/* Reputation Item */
.reputation-item {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 5px solid #ff9800;
}

.reputation-item:hover {
    background: linear-gradient(135deg, #ffe0b2, #ffcc02);
    border-color: #ff9800;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: starTwinkle 1.5s infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.3s; }
.star:nth-child(3) { animation-delay: 0.6s; }
.star:nth-child(4) { animation-delay: 0.9s; }
.star:nth-child(5) { animation-delay: 1.2s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Consistency Item */
.consistency-item {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 5px solid #2196f3;
}

.consistency-item:hover {
    background: linear-gradient(135deg, #bbdefb, #90caf9);
    border-color: #2196f3;
}

.timeline-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.4);
    animation: timelinePulse 2s infinite;
}

.timeline-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #2196f3, #42a5f5);
    animation: lineGrow 2s ease-in-out;
}

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

@keyframes lineGrow {
    from { width: 0; }
    to { width: 20px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .criteria-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .criteria-decoration {
        position: static;
        transform: none;
        margin-top: 15px;
        align-self: center;
    }
    
    .criteria-item:hover .criteria-decoration {
        transform: scale(1.1);
    }
    
    .criteria-icon {
        font-size: 2.5rem;
        min-width: auto;
    }
}