:root {
    --primary-color: #e8671a;
	--download-button-color-android: #e8671a;
	--download-button-color-ios: #3aab87;
    --background-color: #181a26;
	--heading-faq-others-color: #000000;
    --text-color: #ffffff;
    --content-bg: #161826;
    --content-text: #ffffff;
    --footer-bg: #181a26;
    --footer-text: #ffffff;
	--cta-button-color: #3aab87;
	--toc-bg: #f8f9fa;
    --toc-hover-bg: #e9ecef;
    --toc-text: #333;
    --toc-text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
	padding-top: 75px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-cta-btn {
    padding: 12px 28px;
    background: var(--cta-button-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.language-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-current:hover {
    border-color: #999;
    background: #f9f9f9;
}

.flag-icon {
    font-size: 20px;
    line-height: 1;
}

.lang-code {
    font-weight: 600;
    color: #333;
}

.arrow {
    font-size: 10px;
    color: #666;
    transition: transform 0.3s;
}

.lang-current.active .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: #f0f0f0;
    font-weight: 600;
}

.lang-name {
    font-size: 14px;
}

.logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
	margin-top: -20px;
    margin-bottom: -20px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
	text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 5px;
    opacity: 0.95;
}

.download-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
	justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6508;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    background: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.download-btn.android {
    background: var(--download-button-color-android);
    color: white;
}

.download-btn.ios {
    background: var(--download-button-color-ios);
    color: white;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-large {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Hero Image Section */
.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.mockup-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.main-content {
    background: var(--content-bg);
    color: var(--content-text);
    padding: 60px 40px;
    margin: 0;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    color: var(--heading-faq-others-color:);
    margin: 30px 0 20px 0;
    font-weight: bold;
}

.main-content h1 { font-size: 2.5rem; }
.main-content h2 { font-size: 2rem; }
.main-content h3 { font-size: 1.5rem; }
.main-content h4 { font-size: 1.25rem; }

.main-content p {
    margin: 20px 0;
    font-size: 1.1rem;
}

.main-content ul,
.main-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.main-content li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--content-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-content table img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .main-content table img {
        width: 120px;
        height: 120px;
    }
}

.main-content th,
.main-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.main-content th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content code {
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

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

.rating-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: bold;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.casino-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.casino-rank {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 35px;
    height: 35px;
    border-radius: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    z-index: 2;
}

.casino-logo {
    margin: 10px 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    padding: 5px;
}

.casino-logo img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.casino-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 8px 0;
}

.bonus-info {
    margin: 8px 0;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bonus-icon {
    font-size: 1.2rem;
}

.casino-rating {
    margin: 8px 0;
    text-align: center;
}

.rating-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 3px;
}

.stars {
    font-size: 1.1rem;
    color: #ffc107;
    letter-spacing: 1px;
}

.casino-cta {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.5px;
    color: white;
}

.casino-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.faq-section {
    background: var(--content-bg);
    padding: 60px 40px;
    margin: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    color: var(--heading-faq-others-color:);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 15px 20px;
    }
}

.casino-card[data-theme="purple"] {
    border-color: #8e44ad;
}

.casino-card[data-theme="purple"] .casino-rank {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.casino-card[data-theme="purple"] .bonus-info {
    background: rgba(155, 89, 182, 0.1);
    color: #7d3c98;
}

.casino-card[data-theme="purple"] .casino-cta {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.casino-card[data-theme="gold"] {
    border-color: #f39c12;
}

.casino-card[data-theme="gold"] .casino-rank {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.casino-card[data-theme="gold"] .bonus-info {
    background: rgba(243, 156, 18, 0.1);
    color: #d68910;
}

.casino-card[data-theme="gold"] .casino-cta {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.casino-card[data-theme="blue"] {
    border-color: #3498db;
}

.casino-card[data-theme="blue"] .casino-rank {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.casino-card[data-theme="blue"] .bonus-info {
    background: rgba(52, 152, 219, 0.1);
    color: #2874a6;
}

.casino-card[data-theme="blue"] .casino-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.casino-card[data-theme="green"] {
    border-color: #27ae60;
}

.casino-card[data-theme="green"] .casino-rank {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.casino-card[data-theme="green"] .bonus-info {
    background: rgba(39, 174, 96, 0.1);
    color: #1e8449;
}

.casino-card[data-theme="green"] .casino-cta {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.casino-card[data-theme="red"] {
    border-color: #e74c3c;
}

.casino-card[data-theme="red"] .casino-rank {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.casino-card[data-theme="red"] .bonus-info {
    background: rgba(231, 76, 60, 0.1);
    color: #a93226;
}

.casino-card[data-theme="red"] .casino-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 20px 0;
}

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

.footer-menu {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.footer-menu.hidden {
    display: none;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
}

.footer-nav a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

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

.footer-logos {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: transparent;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.logo-placeholder {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
}

.footer-text {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-text p {
    margin: 10px 0;
}

.toc-container {
    margin: auto;
    max-width: 900px;
    padding: 0 1rem;
}

.toc-toggle {
    display: fixed;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.toc-toggle:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.toc-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.toc-toggle.active .toc-icon {
    transform: rotate(180deg);
}

.toc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--toc-bg);
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    padding-top: 8px;
}

.toc.active {
    max-height: 800px;
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    border-top: none;
}

#tocList {
    list-style: none;
    padding: 0;
    margin: 0;
}

#tocList li {
    margin-bottom: 0.5rem;
}

#tocList a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--toc-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

#tocList a:hover {
    background: var(--toc-hover-bg);
    border-left-color: var(--primary-color);
    padding-left: 1rem;
    color: var(--primary-color);
}

#tocList li.toc-h3 {
    margin-left: 1.5rem;
}

#tocList li.toc-h3 a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--toc-text-light);
}

@media (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .rating-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .header-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .hero {
        flex-direction: column;
        padding: 20px 20px 40px 20px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .download-stats {
        justify-content: center;
        gap: 25px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-image {
        width: 100%;
		align-items: center;
    }

    .phone-mockup {
        max-width: 200px;
		margin-bottom: 30px;
    }

.download-buttons {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.download-btn {
    width: 100%;
    padding: 16px 20px;
}

main-content {
    padding: 40px 20px;
	margin-top: -60px;
}

.main-content h1 { font-size: 2rem; }
.main-content h2 { font-size: 1.75rem; }
.main-content h3 { font-size: 1.5rem; }

.main-content table {
    font-size: 0.9rem;
}

.main-content th,
.main-content td {
    padding: 10px;
}

.casino-rating-container {
    padding: 20px 15px;
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.rating-title {
    font-size: 2rem;
    margin-bottom: 25px;
}

.casino-card {
    padding: 20px 25px;
    max-width: 100%;
    justify-content: flex-start;
}

.casino-rank {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}

.casino-logo {
    height: 60px;
    margin: 10px 0 15px 0;
}

.casino-logo img {
    max-width: 150px;
    max-height: 50px;
}

.casino-name {
    font-size: 1.2rem;
    margin: 12px 0 15px 0;
}

.bonus-info {
    padding: 12px 15px;
    font-size: 0.9rem;
}

.casino-cta {
    padding: 12px 20px;
    font-size: 1rem;
    margin: 15px 0 8px 0;
}

.rating-number {
    font-size: 1.3rem;
}

.stars {
    font-size: 1.1rem;
}

.footer-container {
    padding: 0 20px;
}

.footer-nav {
    flex-direction: column;
    gap: 20px;
}

.logos-container {
    gap: 20px;
}

.logo-item {
    min-width: 100px;
    height: 50px;
    padding: 10px 15px;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.download-stats {
    gap: 10px;
}

.stat-number {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.8rem;
}

.phone-mockup {
    max-width: 240px;
}

.main-content {
    padding: 30px 15px;
}

.main-content h1 { font-size: 1.75rem; }
.main-content p,
.main-content li { font-size: 1rem; }

.logos-container {
    flex-direction: column;
    gap: 10px;
}

.logo-item {
    width: 100%;
    max-width: 200px;
}
	.scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
	
	.toc-container {
        margin: 1.5rem 0.5rem;
    }
    
    .toc-toggle {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .toc.active {
        padding: 1rem;
        max-height: 600px;
    }
    
    #tocList a {
        font-size: 0.95rem;
    }
	
	.scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}