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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #26a69a;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle .arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #26a69a;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-updates-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.live-updates-btn:hover {
    transform: translateY(-2px);
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #26a69a;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9f0 0%, #fefdf0 100%);
}

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

.hero-text {
    max-width: 500px;
}

.featured-tag {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* Welcome Section */
.welcome {
    padding: 4rem 0;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.welcome-content p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    font-size: 2rem;
    color: #26a69a;
}

.stat-item span {
    font-weight: 600;
    color: #2c3e50;
}

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

.section-icon {
    font-size: 2rem;
    color: #26a69a;
    margin-bottom: 1rem;
}

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

.section-header p {
    font-size: 1.125rem;
    color: #6c757d;
}

/* Casino Cards */
.casino-list {
    display: grid;
    gap: 1.2rem; /* 1.5rem * 0.8 */
}

.casino-card {
    background: white;
    border-radius: 10px; /* 12px * 0.8 */
    padding: 1.2rem; /* 1.5rem * 0.8 */
    box-shadow: 0 3.2px 9.6px rgba(0, 0, 0, 0.05); /* 4px 12px * 0.8 */
    border: 1px solid #e9ecef;
    display: flex;
    gap: 1.2rem; /* 1.5rem * 0.8 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-3.2px); /* 4px * 0.8 */
    box-shadow: 0 6.4px 19.2px rgba(0, 0, 0, 0.1); /* 8px 24px * 0.8 */
}

.casino-card.featured {
    border: 2px solid #26a69a;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.casino-rank {
    background: #26a69a;
    color: white;
    width: 40px; /* 50px * 0.8 */
    height: 40px; /* 50px * 0.8 */
    border-radius: 6.4px; /* 8px * 0.8 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem; /* 1.25rem * 0.8 */
    flex-shrink: 0;
}

.casino-screenshot {
    width: 160px; /* 200px * 0.8 */
    height: 120px; /* 150px * 0.8 */
    border-radius: 6.4px; /* 8px * 0.8 */
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3.2px 6.4px rgba(0, 0, 0, 0.1); /* 4px 8px * 0.8 */
}

.casino-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-info {
    flex: 1;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* 1rem * 0.8 */
    margin-bottom: 0.4rem; /* 0.5rem * 0.8 */
}

.casino-header h3 {
    font-size: 1.2rem; /* 1.5rem * 0.8 */
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.recommended-badge {
    background: #ffd700;
    color: #2c3e50;
    padding: 0.2rem 0.6rem; /* 0.25rem 0.75rem * 0.8 */
    border-radius: 16px; /* 20px * 0.8 */
    font-size: 0.7rem; /* 0.875rem * 0.8 */
    font-weight: 600;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* 0.5rem * 0.8 */
    margin-bottom: 0.4rem; /* 0.5rem * 0.8 */
}

.stars {
    color: #ffd700;
    font-size: 0.9rem; /* 1.125rem * 0.8 */
}

.review-count {
    color: #6c757d;
    font-size: 0.7rem; /* 0.875rem * 0.8 */
}

.casino-url, .casino-address {
    color: #6c757d;
    font-size: 0.7rem; /* 0.875rem * 0.8 */
    margin-bottom: 0.6rem; /* 0.75rem * 0.8 */
}

.casino-bonus {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffd700;
    border-radius: 6.4px; /* 8px * 0.8 */
    padding: 0.6rem; /* 0.75rem * 0.8 */
    margin-bottom: 0.6rem; /* 0.75rem * 0.8 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-label {
    font-weight: 600;
    color: #856404;
    font-size: 0.7rem; /* 0.875rem * 0.8 */
}

.bonus-value {
    font-weight: 700;
    color: #856404;
    font-size: 0.8rem; /* 1rem * 0.8 */
}

.casino-stats {
    display: flex;
    gap: 0.8rem; /* 1rem * 0.8 */
    margin-bottom: 0.6rem; /* 0.75rem * 0.8 */
}

.casino-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    padding: 0.4rem; /* 0.5rem * 0.8 */
    border-radius: 4.8px; /* 6px * 0.8 */
    min-width: 64px; /* 80px * 0.8 */
}

.casino-stats .stat-label {
    font-size: 0.6rem; /* 0.75rem * 0.8 */
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.2rem; /* 0.25rem * 0.8 */
}

.casino-stats .stat-value {
    font-size: 0.7rem; /* 0.875rem * 0.8 */
    color: #26a69a;
    font-weight: 700;
}

.casino-description {
    color: #6c757d;
    margin-bottom: 0.8rem; /* 1rem * 0.8 */
    line-height: 1.6;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem; /* 0.5rem * 0.8 */
    margin-bottom: 0.8rem; /* 1rem * 0.8 */
}

.feature-tag {
    background: #e8f5e8;
    color: #26a69a;
    padding: 0.2rem 0.6rem; /* 0.25rem 0.75rem * 0.8 */
    border-radius: 16px; /* 20px * 0.8 */
    font-size: 0.7rem; /* 0.875rem * 0.8 */
    font-weight: 500;
    border: 1px solid #d4edda;
}

.casino-actions {
    position: absolute;
    top: 1.2rem; /* 1.5rem * 0.8 */
    right: 1.2rem; /* 1.5rem * 0.8 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem; /* 0.5rem * 0.8 */
}

.play-now-btn {
    background: #26a69a;
    color: white;
    border: none;
    padding: 1rem 2rem; /* 1.25rem 2.5rem * 0.8 */
    border-radius: 6.4px; /* 8px * 0.8 */
    font-weight: 700;
    font-size: 0.9rem; /* 1.125rem * 0.8 */
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 128px; /* 160px * 0.8 */
    text-transform: uppercase;
    letter-spacing: 0.4px; /* 0.5px * 0.8 */
}

.play-now-btn:hover {
    background: #1e8b7a;
}

.read-review {
    color: #6c757d;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.7rem; /* 0.875rem * 0.8 */
    display: flex;
    align-items: center;
    gap: 0.2rem; /* 0.25rem * 0.8 */
    transition: color 0.3s ease;
}

.read-review:hover {
    color: #26a69a;
    text-decoration: underline;
}

/* Online Casinos Section */
.online-casinos {
    padding: 3.2rem 0; /* 4rem * 0.8 */
    background: #f8f9fa;
}

/* Land-Based Casinos Section */
.land-based-casinos {
    padding: 3.2rem 0; /* 4rem * 0.8 */
}

/* Latest News Section */
.latest-news {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    position: relative;
}

.news-tag {
    background: #6f42c1;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
}

.editors-choice {
    background: #fd7e14;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -0.5rem;
    right: 1rem;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Top Recommendations Section */
.top-recommendations {
    padding: 4rem 0;
    background: linear-gradient(135deg, #26a69a 0%, #1e8b7a 100%);
    color: white;
}

.recommendations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.editors-choice-badge {
    background: #ffd700;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.recommendations-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recommendations-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

.recommendation-card {
    background: white;
    color: #2c3e50;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recommendation-rank {
    background: #fd7e14;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.top-choice-badge {
    background: #ffd700;
    color: #2c3e50;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.recommendation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Data Analysis Section */
.data-analysis {
    padding: 4rem 0;
}

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

.analysis-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.market-leader-badge {
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.research-report-badge {
    background: #ffeaa7;
    color: #2c3e50;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

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

.analysis-icon {
    font-size: 1.5rem;
    color: #26a69a;
}

.analysis-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.analysis-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.analysis-card p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.analysis-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.satisfaction-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #26a69a;
    font-weight: 600;
}

.analysis-metrics {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.metric-value {
    font-weight: 600;
}

.metric-value.positive {
    color: #26a69a;
}

.analysis-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Community Rankings Section */
.community-rankings {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rankings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.community-badge {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.rankings-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.rankings-header p {
    font-size: 1.125rem;
    color: #6c757d;
}

.rankings-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rankings-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.5rem;
}

.rankings-container > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
}

.ranking-list {
    display: grid;
    gap: 1rem;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.ranking-item:hover {
    background-color: #f8f9fa;
}

.ranking-number {
    background: #26a69a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.ranking-info {
    flex: 1;
}

.ranking-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.casino-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.casino-type.online {
    background: #e3f2fd;
    color: #1976d2;
}

.casino-type.land-based {
    background: #e8f5e8;
    color: #26a69a;
}

.ranking-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.ranking-url, .ranking-address {
    color: #6c757d;
    font-size: 0.875rem;
}

.rating-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.rating-controls span {
    font-weight: 600;
    color: #2c3e50;
}

.rate-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rate-btn:hover {
    background: #26a69a;
    color: white;
    border-color: #26a69a;
}

.rankings-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.update-info {
    color: #6c757d;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.show-more-btn {
    background: white;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
}

.show-more-btn:hover {
    background: #f8f9fa;
    border-color: #26a69a;
    color: #26a69a;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

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

.copyright {
    color: #95a5a6;
    font-size: 0.875rem;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #26a69a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 12px; /* 15px * 0.8 */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.6rem; /* 2rem * 0.8 */
        text-align: center;
    }
    
    .casino-card {
        padding: 1.12rem; /* 1.4rem для планшета, немного больше мобильной */
        gap: 1.12rem;
    }
    
    .casino-screenshot {
        width: 144px; /* 180px * 0.8 для планшета */
        height: 108px; /* 135px * 0.8 */
    }
    
    .casino-header h3 {
        font-size: 1.1rem; /* 1.2rem * 0.92 для планшета */
    }
    
    .casino-rank {
        width: 38px; /* 40px * 0.95 для планшета */
        height: 38px;
        font-size: 0.95rem; /* 1rem * 0.95 */
    }
    
    .play-now-btn {
        padding: 0.9rem 1.8rem; /* немного меньше десктопа */
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .online-casinos {
        padding: 3.2rem 0; /* 4rem * 0.8 */
    }
    
    .analysis-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.6rem; /* 2rem * 0.8 */
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        order: 3;
        width: 100%;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem; /* 1.2rem * 0.83 для мобильной версии */
        gap: 1rem; /* 1.2rem * 0.83 */
    }
    
    .casino-rank {
        align-self: center;
        width: 36px; /* 40px * 0.9 для мобильной */
        height: 36px; /* 40px * 0.9 */
        font-size: 0.9rem; /* 1rem * 0.9 */
    }
    
    .casino-screenshot {
        width: 100%;
        height: 160px; /* 200px * 0.8 */
        margin: 0 auto;
    }
    
    .casino-stats {
        justify-content: center;
    }
    
    .casino-actions {
        position: static;
        margin-top: 0.8rem; /* 1rem * 0.8 */
        flex-direction: row;
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .ranking-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rating-controls {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .casino-features {
        justify-content: center;
    }
    
    .casino-card {
        padding: 0.96rem; /* 1.2rem * 0.8 для мобильной */
        gap: 0.96rem; /* 1.2rem * 0.8 */
    }
    
    .casino-screenshot {
        height: 128px; /* 160px * 0.8 для мобильной */
    }
    
    .casino-header h3 {
        font-size: 1rem; /* 1.2rem * 0.83 для мобильной */
    }
    
    .play-now-btn {
        padding: 0.8rem 1.6rem; /* 1rem 2rem * 0.8 */
        font-size: 0.8rem; /* 0.9rem * 0.89 */
        min-width: 112px; /* 128px * 0.875 */
    }
    
    .analysis-card {
        padding: 1.2rem; /* 1.5rem * 0.8 */
    }
    
    .ranking-item {
        padding: 0.6rem; /* 0.75rem * 0.8 */
    }
    
    .rate-btn {
        padding: 0.2rem 0.2rem; /* 0.25rem * 0.8 */
        font-size: 0.6rem; /* 0.75rem * 0.8 */
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .live-updates-btn,
    .play-now-btn,
    .rate-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .casino-card,
    .news-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}
