/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --soft-red: #ef4444;
    --dark-red: #dc2626;
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --purple: #8b5cf6;
    --gold: #f59e0b;
}

/* Age Warning Banner */
.age-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--soft-red);
    color: var(--white);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.age-warning-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.help-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.help-link:hover {
    opacity: 0.8;
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-brand i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.top-rated-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-rated-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* Hero Section */
.bonuses-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 50%, #fef3c7 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bonus-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-bonus {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-bonus:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-bonus:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-bonus:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-bonus:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-top: 5px;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.bonus-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold));
    transition: left 0.5s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-blue);
}

.intro-card:hover::before {
    left: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 24px;
}

.intro-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.intro-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-gray);
}

.feature-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    margin-right: 10px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--dark-blue);
}

/* Bonus Overview Section */
.bonus-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-type-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bonus-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bonus-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.bonus-badge {
    background: var(--success-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bonus-badge:nth-of-type(2) {
    background: var(--warning-orange);
}

.bonus-badge:nth-of-type(3) {
    background: var(--purple);
}

.bonus-example {
    background: var(--light-blue);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.example-casino {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.example-offer {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.bonus-features {
    list-style: none;
    margin-bottom: 20px;
}

.bonus-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark-gray);
}

.bonus-features i {
    color: var(--success-green);
    margin-right: 10px;
    width: 16px;
}

.bonus-note {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark-gray);
}

.bonus-note strong {
    color: var(--primary-blue);
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background: var(--white);
}

.terms-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.terms-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.terms-table th:first-child {
    border-top-left-radius: 15px;
}

.terms-table th:last-child {
    border-top-right-radius: 15px;
}

.terms-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}

.terms-table tr:hover {
    background: var(--light-blue);
}

.casino-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.license-badge {
    background: var(--success-green);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    width: fit-content;
}

.terms-notes {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 15px;
}

.terms-notes h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.terms-notes ul {
    list-style: none;
}

.terms-notes li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-notes li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.terms-notes strong {
    color: var(--primary-blue);
}

/* Promotions Showcase */
.promotions-showcase {
    padding: 80px 0;
    background: var(--light-gray);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.promotion-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--warning-orange));
}

.promotion-card.limited::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-red), var(--dark-red));
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.promotion-card.limited .promo-badge {
    background: var(--soft-red);
}

.promotion-card.featured .promo-badge {
    background: var(--gold);
}

.promo-logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    width: 120px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    font-size: 16px;
}

.promo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 10px;
}

.promo-offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-green);
    text-align: center;
    margin-bottom: 15px;
}

.promo-description {
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

.highlight-item i {
    color: var(--success-green);
    width: 16px;
}

.promo-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.promo-btn {
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.promo-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.expiry-date {
    font-size: 12px;
    color: var(--medium-gray);
    font-style: italic;
}

/* Bonus Tips Section */
.bonus-tips {
    padding: 80px 0;
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.tip-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-blue);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tip-link:hover {
    color: var(--dark-blue);
}

.tip-link i {
    transition: transform 0.3s ease;
}

.tip-link:hover i {
    transform: translateX(5px);
}

/* Responsible game Section */
.responsible-game {
    padding: 80px 0;
    background: var(--light-gray);
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-notice {
    background: var(--white);
    border-left: 5px solid var(--soft-red);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-header i {
    color: var(--soft-red);
    font-size: 24px;
}

.notice-header h3 {
    color: var(--soft-red);
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-notice p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-notice strong {
    color: var(--soft-red);
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.help-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.help-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.help-info p {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.help-info .help-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.help-info .help-link:hover {
    text-decoration: underline;
}

.responsible-tools {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 30px;
}

.responsible-tools h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.responsible-tools ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.responsible-tools li {
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.responsible-tools li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.disclaimer {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--light-blue);
}

.disclaimer h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.disclaimer p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.logo-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    width: 250px;
    height: 150px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    font-size: 16px;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.footer-section p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-item i {
    color: var(--primary-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--soft-red);
    font-weight: 500;
}

.copyright {
    color: var(--medium-gray);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .age-warning {
        font-size: 12px;
        padding: 6px 0;
    }

    .age-warning-content {
        flex-direction: column;
        gap: 5px;
    }

    .header {
        top: 32px;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .burger-menu {
        display: flex;
    }

    .bonuses-hero {
        padding-top: 120px;
        min-height: 80vh;
    }

    .bonus-stats {
        flex-direction: column;
        gap: 20px;
    }

    .intro-grid,
    .overview-grid,
    .promotions-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-card,
    .bonus-type-card,
    .promotion-card,
    .tip-card {
        padding: 20px;
    }

    .terms-table-container {
        font-size: 12px;
    }

    .terms-table th,
    .terms-table td {
        padding: 10px 8px;
    }

    .help-resources {
        grid-template-columns: 1fr;
    }

    .help-item {
        flex-direction: column;
        text-align: center;
    }

    .responsible-tools ul {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .intro-card,
    .bonus-type-card,
    .promotion-card,
    .tip-card {
        padding: 15px;
    }

    .legal-notice,
    .responsible-tools {
        padding: 20px;
    }

    .terms-table {
        font-size: 11px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .intro-card,
    .bonus-type-card,
    .promotion-card,
    .tip-card {
        border: 2px solid var(--primary-blue);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .floating-bonus {
        animation: none;
    }
}