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

:root {
    --primary-color: #FFAC5D;
    --primary-gradient-start: #FFAC5D;
    --primary-gradient-end: #F57D51;
    --secondary-color: #C41E3A;
    --dark-bg: #0f0f1e;
    --darker-bg: #0a0a15;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --border-color: #2a2a3e;
    --accent-gold: #F57D51;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--card-bg) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--primary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--darker-bg) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 172, 93, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/hero.png?v=2');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.92) 0%, rgba(26, 26, 46, 0.88) 50%, rgba(10, 10, 21, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    text-align: left;
    max-width: 800px;
    margin-left: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    background: #4EBBA1;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 6px 25px rgba(78, 187, 161, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(78, 187, 161, 0.6);
    background: #3da890;
}

/* Play Now Buttons */
.cta-center {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-play-now {
    display: inline-block;
    background: #4EBBA1;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(78, 187, 161, 0.4);
}

.btn-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 187, 161, 0.6);
    background: #3da890;
}

.btn-play-now-white {
    background: #4EBBA1;
    color: #ffffff;
}

.btn-play-now-white:hover {
    box-shadow: 0 8px 25px rgba(78, 187, 161, 0.6);
    background: #3da890;
}

/* Sections */
.section {
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section:nth-child(even) {
    background-color: var(--darker-bg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 2rem 0 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* Cards */
.content-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.8) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 172, 93, 0.2);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

/* Tables */
.table-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow-x: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.info-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: transparent;
}

.info-table thead {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

.info-table th {
    padding: 1rem;
    text-align: left;
    color: var(--darker-bg);
    font-weight: bold;
    font-size: 1rem;
}

.info-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tbody tr {
    transition: background-color 0.3s;
}

.info-table tbody tr:hover {
    background-color: rgba(255, 172, 93, 0.1);
}

/* Image Showcase */
.image-showcase {
    margin: 2rem 0;
    text-align: center;
}

.image-link {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(78, 187, 161, 0.4);
}

.image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 187, 161, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.image-link:hover::after {
    opacity: 1;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
    display: block;
    transition: transform 0.3s;
}

.image-link:hover .feature-image {
    transform: scale(1.02);
}

/* Bonus Cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 172, 93, 0.3);
}

.highlight-card {
    border: 2px solid var(--primary-color);
}

.bonus-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a01828 100%);
    padding: 1.5rem;
    text-align: center;
}

.bonus-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 0;
}

.bonus-body {
    padding: 2rem;
}

.bonus-amount {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 172, 93, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.security-card:hover {
    transform: translateY(-3px);
    border-color: var(--success-color);
}

.security-icon {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.security-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pros-card, .cons-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.pros-card {
    border-left: 4px solid var(--success-color);
}

.cons-card {
    border-left: 4px solid var(--danger-color);
}

.pros-card h3 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cons-card h3 {
    color: var(--danger-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: var(--text-secondary);
    position: relative;
}

.pros-card .styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cons-card .styled-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Indicators */
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.indicator-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.indicator-card:hover {
    transform: translateX(5px);
    border-color: var(--success-color);
}

.indicator-icon {
    font-size: 2rem;
    color: var(--success-color);
    font-weight: bold;
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.indicator-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Conclusion Card */
.conclusion-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    border: 2px solid var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

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

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.faq-question h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--card-bg) 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-image {
    margin: 2rem 0;
    text-align: center;
}

.footer-banner {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--darker-bg) 0%, var(--card-bg) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hero {
        background-attachment: scroll;
        min-height: calc(100vh - 70px);
        height: auto;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .subsection-title {
        font-size: 1.5rem;
    }

    .features-grid,
    .security-grid,
    .bonus-cards,
    .rating-grid,
    .responsible-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .overall-score {
        font-size: 3.5rem;
    }

    .overall-score span {
        font-size: 2rem;
    }

    .overall-rating-card {
        padding: 2rem;
    }

    .table-card {
        overflow-x: auto;
        padding: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .info-table {
        font-size: 0.85rem;
        min-width: 500px;
    }

    .info-table th,
    .info-table td {
        padding: 0.7rem 0.5rem;
        white-space: nowrap;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 10px;
    }

    .content-card,
    .table-card {
        padding: 1rem;
    }

    .info-table {
        min-width: 400px;
        font-size: 0.75rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.5rem 0.3rem;
    }
}

/* Rating System Section */
.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rating-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 172, 93, 0.3);
    border-color: var(--primary-color);
}

.rating-header {
    background: linear-gradient(135deg, rgba(255, 172, 93, 0.15) 0%, rgba(245, 125, 81, 0.1) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.rating-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.rating-header h3 {
    color: var(--text-primary);
    margin: 1rem 0;
    font-size: 1.3rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.rating-body {
    padding: 1.5rem;
}

.rating-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Progress Bar for Ratings */
.rating-progress-container {
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.rating-progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    height: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.rating-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--darker-bg);
    transition: width 1.5s ease-out;
    box-shadow: 0 2px 10px rgba(255, 172, 93, 0.5);
}

.rating-progress-fill.excellent {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.5);
}

.rating-progress-fill.good {
    background: linear-gradient(90deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    box-shadow: 0 2px 10px rgba(255, 172, 93, 0.5);
}

.rating-progress-fill.average {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

.rating-progress-fill.poor {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
}

/* Rating Metrics Summary */
.rating-metrics-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 172, 93, 0.1) 0%, rgba(245, 125, 81, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.metric-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 172, 93, 0.3);
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.metric-value.large {
    font-size: 3rem;
}

/* Status and Rating Badges */
.status-badge,
.rating-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.status-badge.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-badge.limited {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--darker-bg);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.status-badge.inactive {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.rating-badge.excellent {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.rating-badge.good {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--darker-bg);
    box-shadow: 0 2px 8px rgba(255, 172, 93, 0.3);
}

.rating-badge.average {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--darker-bg);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.rating-badge.poor {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.overall-rating-card {
    margin: 3rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a01828 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
    text-align: center;
}

.overall-rating-content h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.overall-score {
    font-size: 5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    line-height: 1;
}

.overall-score span {
    font-size: 2.5rem;
    color: var(--text-secondary);
}

.overall-rating-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* Responsible Gambling Section */
.responsible-gambling-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #16162a 100%);
}

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

.responsible-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.responsible-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 172, 93, 0.3);
}

.responsible-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.responsible-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.responsible-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-resources {
    margin-top: 3rem;
}

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

.resource-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252542 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--success-color);
    transition: transform 0.3s, border-color 0.3s;
}

.resource-card:hover {
    transform: translateX(5px);
    border-top-color: var(--primary-color);
}

.resource-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.age-verification-card {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(255, 172, 93, 0.1) 100%);
    border: 2px solid var(--secondary-color);
}

.age-verification-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.age-verification-card p {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.content-card,
.table-card,
.feature-card,
.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}