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

:root {
    --primary-color: #242939;
    --secondary-color: #031692;
    --accent-color: #fde712;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --bg-dark: #1a1d29;
    --bg-light: #2a2f3f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-inner > * {
    flex-shrink: 0;
}

.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

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

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

.header-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #f5d800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 231, 18, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-navigation {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 22, 146, 0.3) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 7s;
}

.hero-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

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

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(253, 231, 18, 0.2);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(253, 231, 18, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    color: var(--text-primary);
}

.hero-title-accent {
    color: var(--accent-color);
    font-size: 0.9em;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
}

.btn-hero-primary:hover {
    background-color: #f5d800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 231, 18, 0.4);
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
}

.btn-hero-secondary:hover {
    background-color: rgba(253, 231, 18, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Main Content */
.main-content {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    margin-bottom: 5rem;
}

.brand-name {
    color: var(--accent-color);
    font-weight: 700;
}

/* Intro Card */
.intro-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(3, 22, 146, 0.1) 100%);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

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

/* Table Card */
.table-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.table-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
}

.info-table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(3, 22, 146, 0.8) 100%);
}

.info-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 2px solid var(--accent-color);
}

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

.info-table tbody tr:hover {
    background-color: rgba(253, 231, 18, 0.05);
}

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

/* CTA Buttons Section */
.cta-buttons-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background-color: #f5d800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 231, 18, 0.4);
}

.cta-btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: rgba(253, 231, 18, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 231, 18, 0.2);
}

/* Payment Card */
.payment-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.payment-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.payment-method-item {
    background-color: var(--bg-dark);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method-item:hover {
    transform: translateY(-3px);
    background-color: rgba(253, 231, 18, 0.05);
    border-color: var(--accent-color);
}

.payment-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.payment-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.payment-time {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sports Card */
.sports-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sports-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.sports-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sport-category {
    background-color: var(--bg-dark);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.sport-category:hover {
    transform: translateX(5px);
}

.sport-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sport-leagues {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Casino Card */
.casino-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.casino-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.casino-game-type {
    background-color: var(--bg-dark);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-type-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

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

.game-type-header h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.game-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.game-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Security Card */
.security-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.security-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.security-tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-tip {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-dark);
    border-radius: 12px;
    padding: 1.5rem;
    align-items: flex-start;
    border-left: 4px solid var(--secondary-color);
}

.tip-number {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tip-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsible Card */
.responsible-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.responsible-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.responsible-item {
    background-color: var(--bg-dark);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.responsible-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
}

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

.faq-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-item-inner {
    display: flex;
    flex-direction: column;
}

.faq-left-section {
    width: 100%;
}

.faq-question-btn {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-answer-container.active {
    max-height: 1000px;
}

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

.faq-answer-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer-content p {
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    margin-top: 5rem;
}

.footer-top-section {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand-section {
    max-width: 500px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-brand-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(253, 231, 18, 0.15), rgba(253, 231, 18, 0.05));
    color: var(--accent-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(253, 231, 18, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-color);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li {
    margin: 0;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-link::before {
    content: '→';
    color: var(--accent-color);
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom-section {
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-warning {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-warning strong {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .navigation {
        display: none;
    }
    
    .header-inner {
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .menu-toggle {
        display: flex;
        order: 1;
    }
    
    .logo-container {
        order: 2;
        margin-right: auto;
    }
    
    .header-buttons {
        order: 3;
        gap: 0.5rem;
        margin-left: auto;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsible-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-card {
        padding: 2rem;
    }
    
    .table-card,
    .payment-card,
    .sports-card,
    .casino-card,
    .security-card,
    .responsible-card {
        padding: 2rem;
    }
    
    .intro-card-title,
    .table-card-title,
    .payment-card-title,
    .sports-card-title,
    .casino-card-title,
    .security-card-title,
    .responsible-card-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons-section {
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .payment-methods-grid,
    .casino-games-grid {
        grid-template-columns: 1fr;
    }
    
    .info-table {
        font-size: 0.85rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}
