/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #7c452b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #7c452b;
    border-bottom: 1px solid #e89d79;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Slider Section */
.slider-section {
    width: 100%;
    margin: 2rem auto;
    padding: 0;
    background: #000;
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header .container {
    max-width: unset;
}

.btn i {
    font-size: 14px !important;
    color: #fff !important;
    margin: 0 !important;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav a:hover,
.nav a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:hover {
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.primary-btn {
    background-color: #ff680f;
    color: #fff;
    border-color: #ff680f;
}

.primary-btn:hover {
    background-color: #e55a0a;
    border-color: #e55a0a;
    color: #fff;
    text-decoration: none;
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border-color: #ff680f;
}

.secondary-btn:hover {
    background-color: #ff680f;
    color: #fff;
    text-decoration: none;
}

.large-btn {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 56px;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9B5432 0%, #7a4328 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-content a:not(.btn) {
    color: #ff7828;
    text-decoration: none;
}

.hero-content a:not(.btn):hover {
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section a {
    color: #ff7828;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

/* Game Types Section */
.game-types {
    background-color: #7c452b;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.game-card p {
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

/* RTP Section */
.rtp-section {
    background-color: #7c452b;
}

.rtp-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rtp-table th,
.rtp-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.rtp-table th {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
}

.rtp-table tr:hover {
    background-color: #7c452b;
}

.rtp-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

/* Advantages Section */
.advantages {
    background-color: #7c452b;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 3rem;
    color: #ff680f;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.advantage-item p {
    color: #fff;
    margin: 0;
}

.advantages-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.advantages-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.advantages-table th,
.advantages-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.advantages-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.advantages-table tr:hover {
    background-color: #7c452b;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff680f 0%, #e55a0a 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.cta-section .btn:hover {
    background-color: #ff680f;
    color: #fff;
}

/* FAQ Section */
.faq {
    background-color: #7c452b;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    background-color: #7c452b;
    color: #fff;
    padding: 20px;
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    color: #fff;
    text-align: left;
}

/* Footer */
.footer {
    background-color: rgb(88 48 29);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid rgb(221, 141, 104);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff680f;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff680f;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.payment-methods i {
    color: #ff680f;
}

.footer-bottom {
    border-top: 1px solid rgb(221, 141, 104);
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #fff;
}

/* Special Page Styles */
.login-hero,
.app-hero,
.games-hero,
.slots-hero,
.bonus-hero,
.betting-hero,
.aviator-hero,
.live-casino-hero {
    background: linear-gradient(135deg, #9B5432 0%, #7a4328 100%);
}

/* Steps Section */
.login-steps,
.steps-section {
    background-color: #7c452b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #ff680f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-item p {
    color: #fff;
    margin: 0;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Security Section */
.security-section {
    background-color: #7c452b;
}

.security-buttons,
.security-section .btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Download Section */
.download-section {
    background-color: #7c452b;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.download-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
    border-color: #ff680f;
}

.download-item i {
    font-size: 4rem;
    color: #ff680f;
    margin-bottom: 20px;
}

.download-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.download-item p {
    margin-bottom: 20px;
    color: #fff;
}

.download-steps {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.download-steps h3 {
    color: #fff;
    margin-bottom: 20px;
}

.download-steps ul {
    list-style: none;
    padding-left: 0;
}

.download-steps ul li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    color: #fff;
}

.download-steps ul li:last-child {
    border-bottom: none;
}

/* Interface Section */
.interface-section {
    background-color: #7c452b;
}

.interface-image {
    text-align: center;
    margin-top: 40px;
}

.interface-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Compatibility Section */
.compatibility-section {
    background-color: #7c452b;
}

.compatibility-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

.compatibility-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.compatibility-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.compatibility-table th,
.compatibility-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.compatibility-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.compatibility-table tr:hover {
    background-color: #7c452b;
}

/* Game Types Grid */
.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-type-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.game-type-item:hover {
    transform: translateY(-5px);
}

.game-type-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.game-type-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.game-type-item p {
    color: #fff;
    margin: 0;
}

.traffic-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Navigation Section */
.navigation-section {
    background-color: #7c452b;
}

/* Integration Section */
.integration-section {
    background-color: #7c452b;
}

/* Best Practices Section */
.best-practices {
    background-color: #7c452b;
}

.practices-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Bonus Types Section */
.bonus-types {
    background-color: #7c452b;
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-type-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.bonus-type-item:hover {
    transform: translateY(-5px);
}

.bonus-type-item i {
    font-size: 3rem;
    color: #ff680f;
    margin-bottom: 20px;
}

.bonus-type-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.bonus-type-item p {
    color: #fff;
    margin: 0;
}

/* Rollover Section */
.rollover-section {
    background-color: #7c452b;
}

/* Bonus Table Section */
.bonus-table-section {
    background-color: #7c452b;
}

.bonus-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bonus-table th,
.bonus-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bonus-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.bonus-table tr:hover {
    background-color: #7c452b;
}

/* Case Study Section */
.case-study {
    background-color: #7c452b;
}

.case-study-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Modalities Section */
.modalities-section {
    background-color: #7c452b;
}

.modalities-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Markets Section */
.markets-section {
    background-color: #7c452b;
}

.markets-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.markets-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.markets-table th,
.markets-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.markets-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.markets-table tr:hover {
    background-color: #7c452b;
}

.markets-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

.markets-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Strategies Section */
.strategies-section {
    background-color: #7c452b;
}

.strategies-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* How It Works Section */
.how-it-works {
    background-color: #7c452b;
}

/* Multiplier Distribution Section */
.multiplier-distribution {
    background-color: #7c452b;
}

.distribution-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

.distribution-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.distribution-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.distribution-table th,
.distribution-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.distribution-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.distribution-table tr:hover {
    background-color: #7c452b;
}

/* Strategies Section for Aviator */
.strategies-section {
    background-color: #7c452b;
}

/* Session Example Section */
.session-example {
    background-color: #7c452b;
}

.session-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

.session-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.session-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.session-table th,
.session-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.session-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.session-table tr:hover {
    background-color: #7c452b;
}

/* Top Slots Section */
.top-slots {
    background-color: #7c452b;
}

.slots-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

.slots-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.slots-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slots-table th,
.slots-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.slots-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.slots-table tr:hover {
    background-color: #7c452b;
}

.slots-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Lobby Section */
.lobby-section {
    background-color: #7c452b;
}

/* Types and Tips Section */
.types-tips {
    background-color: #7c452b;
}

.types-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Errors Section */
.errors-section {
    background-color: #7c452b;
}

.errors-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.errors-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.errors-table th,
.errors-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.errors-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.errors-table tr:hover {
    background-color: #7c452b;
}

/* Metrics Section */
.metrics-section {
    background-color: #7c452b;
}

.metrics-note {
    font-style: italic;
    color: #fff;
    font-size: 0.9rem;
}

.metrics-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.metrics-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.metrics-table th,
.metrics-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.metrics-table th {
    background-color: #7c452b;
    color: #fff;
    font-weight: 600;
}

.metrics-table tr:hover {
    background-color: #7c452b;
}

/* Mobile Usage Section */
.mobile-usage {
    background-color: #7c452b;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Tips Section */
.tips-section {
    background-color: #7c452b;
}

.tips-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Comparison Section */
.comparison-section {
    background-color: #7c452b;
}

/* Game Types Buttons */
.game-types-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background-color: #7c452b;
    text-align: center;
}

.game-card i,
.game-type-item i {
    font-size: 64px;  
    color: #ff7828;
    margin-bottom: 20px;
}

.responsible-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav ul {
        gap: 20px;
    }
}

@media (max-width: 1440px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        padding: 20px 15px;
        width: 100%;
        background-color: #7a4328;
        z-index: 1000;
        transition: .2s ease-in-out;
    }

    .nav a {
        display: block;
    }

    .nav.active {
        display: block;
        top: 100%;
    }

    .nav-menu  {
        flex-direction: column;
        align-items: center;
    }

    
    .header-buttons {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .large-btn {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .game-grid,
    .advantages-grid,
    .game-types-grid,
    .bonus-types-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .cta-buttons,
    .hero-buttons,
    .security-buttons,
    .practices-buttons,
    .case-study-buttons,
    .modalities-buttons,
    .markets-buttons,
    .strategies-buttons,
    .slots-buttons,
    .types-buttons,
    .mobile-buttons,
    .tips-buttons,
    .game-types-buttons,
    .responsible-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Table responsive */
    .rtp-table-wrapper,
    .advantages-table-wrapper,
    .compatibility-table-wrapper,
    .bonus-table-wrapper,
    .markets-table-wrapper,
    .distribution-table-wrapper,
    .session-table-wrapper,
    .slots-table-wrapper,
    .errors-table-wrapper,
    .metrics-table-wrapper {
        font-size: 0.9rem;
    }
    
    .rtp-table th,
    .rtp-table td,
    .advantages-table th,
    .advantages-table td,
    .compatibility-table th,
    .compatibility-table td,
    .bonus-table th,
    .bonus-table td,
    .markets-table th,
    .markets-table td,
    .distribution-table th,
    .distribution-table td,
    .session-table th,
    .session-table td,
    .slots-table th,
    .slots-table td,
    .errors-table th,
    .errors-table td,
    .metrics-table th,
    .metrics-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {

    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }

    .header-content {
        flex-wrap: wrap;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .large-btn {
        padding: 12px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    .game-card,
    .advantage-item,
    .step-item,
    .download-item,
    .game-type-item,
    .bonus-type-item {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .advantage-item i,
    .bonus-type-item i,
    .download-item i {
        font-size: 2.5rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav a:focus {
    outline: 2px solid #ff680f;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.game-card,
.advantage-item {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects for interactive elements */
.game-card:hover .btn,
.advantage-item:hover .btn {
    transform: translateY(-2px);
}

/* Image Styles for New Images */
.mobile-image {
    text-align: center;
    margin: 2rem 0;
}

.mobile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.integration-image {
    text-align: center;
    margin: 2rem 0;
}

.integration-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.how-it-works-image {
    text-align: center;
    margin: 2rem 0;
}

.how-it-works-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.strategies-image {
    text-align: center;
    margin: 2rem 0;
}

.strategies-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-types-image {
    text-align: center;
    margin: 2rem 0;
}

.game-types-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tips-image {
    text-align: center;
    margin: 2rem 0;
}

.tips-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.responsible-image {
    text-align: center;
    margin: 2rem 0;
}

.responsible-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    text-align: center;
    margin: 2rem 0;
}

.case-study-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lobby-image {
    text-align: center;
    margin: 2rem 0;
}

.lobby-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.types-image {
    text-align: center;
    margin: 2rem 0;
}

.types-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    .main {
        margin: 0;
        padding: 0;
    }
    
    section {
        page-break-inside: avoid;
    }
}
