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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e1e5e9;
    background: linear-gradient(135deg, #0b0b0c 0%, #1a1a1d 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(225, 229, 233, 0.1);
    z-index: 1000;
}

/* Скрываем мобильную кнопку по умолчанию */
.mobile-menu-toggle {
    display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: #e1e5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #43ab7b;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-demo {
    padding: 0.5rem 1rem;
    background: rgba(67, 171, 123, 0.2);
    color: #43ab7b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: rgba(67, 171, 123, 0.3);
    transform: translateY(-2px);
}

.btn-play {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 171, 123, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e1e5e9;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(67, 171, 123, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96, #c943a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b8c1cc;
    line-height: 1.7;
}

/* Hero Video/Image Styles */
.hero-image img,
.hero-video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.hero-image img:hover,
.hero-video:hover {
    transform: scale(1.05);
}

.hero-video {
    background: #000;
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

/* Hide video controls for cleaner look */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Ensure video is responsive */
.hero-video {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.element {
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.element.water {
    color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
}

.element.earth {
    color: #8bc34a;
    background: rgba(139, 195, 74, 0.1);
}

.element.fire {
    color: #ff7043;
    background: rgba(255, 112, 67, 0.1);
}

.game-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #8b949e;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #43ab7b;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(67, 171, 123, 0.4);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(225, 229, 233, 0.1);
    color: #e1e5e9;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(67, 171, 123, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(67, 171, 123, 0.1);
    border-color: #43ab7b;
    transform: translateY(-2px);
}

.demo-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(67, 171, 123, 0.1);
    border-radius: 8px;
    border-left: 4px solid #43ab7b;
}

.demo-badge {
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Visualization */
.twist-visualization {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: rotate 10s linear infinite;
}

.ring-1 {
    width: 350px;
    height: 350px;
    top: 25px;
    left: 25px;
    border-color: #4fc3f7;
    animation-duration: 15s;
}

.ring-2 {
    width: 250px;
    height: 250px;
    top: 75px;
    left: 75px;
    border-color: #8bc34a;
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 150px;
    height: 150px;
    top: 125px;
    left: 125px;
    border-color: #ff7043;
    animation-duration: 12s;
}

.center-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: #8b949e;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Overview */
.features-overview {
    background: rgba(11, 11, 12, 0.5);
}

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

.feature-card {
    background: rgba(225, 229, 233, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(225, 229, 233, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(225, 229, 233, 0.08);
    border-color: rgba(67, 171, 123, 0.3);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.feature-card p {
    color: #8b949e;
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, rgba(67, 171, 123, 0.05), rgba(220, 203, 150, 0.05));
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.game-frame {
    background: rgba(11, 11, 12, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(67, 171, 123, 0.3);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e1e5e9;
}

.demo-twist {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
}

.demo-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.demo-water {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(79, 195, 247, 0.2);
    border: 2px solid #4fc3f7;
}

.demo-earth {
    bottom: 0;
    left: 0;
    background: rgba(139, 195, 74, 0.2);
    border: 2px solid #8bc34a;
    animation-delay: -1s;
}

.demo-fire {
    bottom: 0;
    right: 0;
    background: rgba(255, 112, 67, 0.2);
    border: 2px solid #ff7043;
    animation-delay: -2s;
}

.demo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: spin 4s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.demo-controls {
    text-align: center;
}

.demo-spin-btn {
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.demo-spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 171, 123, 0.4);
}

.demo-stats {
    display: flex;
    justify-content: space-between;
    color: #8b949e;
    font-size: 0.875rem;
}

.demo-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-benefits li {
    padding: 0.5rem 0;
    color: #b8c1cc;
}

.demo-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* How to Play */
.how-to-play {
    background: rgba(11, 11, 12, 0.3);
}

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

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e1e5e9;
}

.step-content p {
    color: #8b949e;
    line-height: 1.6;
}

/* Game Features */
.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-detailed {
    text-align: center;
    padding: 2rem;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-detailed h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.feature-detailed p {
    color: #8b949e;
    line-height: 1.7;
}

/* Casino Cards */
.top-casinos {
    background: rgba(11, 11, 12, 0.5);
}

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

.casino-card {
    background: rgba(225, 229, 233, 0.05);
    border: 1px solid rgba(225, 229, 233, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.casino-card.featured {
    border-color: #43ab7b;
    background: rgba(67, 171, 123, 0.05);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 171, 123, 0.5);
}

.casino-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.casino-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.casino-logo img {
    width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.casino-card h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e1e5e9;
}

.casino-rating {
    text-align: center;
    color: #dccb96;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.casino-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-features li {
    padding: 0.25rem 0;
    color: #b8c1cc;
    font-size: 0.9rem;
}

.casino-bonus {
    background: rgba(67, 171, 123, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.casino-bonus h4 {
    color: #43ab7b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.casino-bonus ul {
    list-style: none;
}

.casino-bonus li {
    padding: 0.25rem 0;
    color: #b8c1cc;
    font-size: 0.9rem;
}

.casino-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 171, 123, 0.4);
}

/* Download Section */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.download-option {
    text-align: center;
    padding: 2rem;
    background: rgba(225, 229, 233, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(225, 229, 233, 0.1);
    transition: all 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 171, 123, 0.3);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.download-option p {
    color: #8b949e;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 171, 123, 0.4);
}

/* FAQ Section */
.faq-section {
    background: rgba(11, 11, 12, 0.3);
}

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

.faq-item {
    border-bottom: 1px solid rgba(225, 229, 233, 0.1);
    margin-bottom: 1rem;
}

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

.faq-question:hover {
    color: #43ab7b;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: inherit;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #8b949e;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(11, 11, 12, 0.8);
    border-top: 1px solid rgba(225, 229, 233, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #43ab7b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #43ab7b;
}

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

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(225, 229, 233, 0.1);
    color: #6e7681;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}



/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(225, 229, 233, 0.1);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(225, 229, 233, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #e1e5e9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(67, 171, 123, 0.1);
    color: #43ab7b;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Скрываем десктопное меню полностью */
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        transform: scale(0) !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Скрываем десктопные действия */
    .nav-actions {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        transform: scale(0) !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Скрываем кнопку гамбургера */
    .mobile-menu-toggle {
        display: none !important;
    }

    /* Настройка контейнера */
    .nav-container {
        padding: 0.75rem 20px;
        position: relative;
        justify-content: flex-start !important;
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .logo {
        align-self: flex-start !important;
        width: auto !important;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    /* Мобильное меню - всегда видимо как горизонтальное меню */
    .mobile-menu {
        display: block !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
        z-index: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100% !important;
        margin-top: 1rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        align-items: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu li {
        border-bottom: none !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-menu a {
        display: inline-block !important;
        padding: 0.4rem 0.8rem !important;
        color: #e1e5e9 !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        border-radius: 6px !important;
        background: rgba(67, 171, 123, 0.1) !important;
        border: 1px solid rgba(67, 171, 123, 0.2) !important;
        white-space: nowrap !important;
        text-align: center !important;
        min-width: fit-content !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu a:hover {
        background: rgba(67, 171, 123, 0.2) !important;
        color: #43ab7b !important;
        transform: scale(1.05) !important;
    }

    /* Скрываем кнопку гамбургера */
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu li:last-child {
        border-bottom: none !important;
    }

    /* Mobile Language Selector */
    .mobile-language-selector {
        margin-top: 1rem !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-language-btn {
        background: rgba(67, 171, 123, 0.1) !important;
        border: 1px solid rgba(67, 171, 123, 0.2) !important;
        color: #e1e5e9 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 6px !important;
        cursor: pointer !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-language-btn:hover {
        background: rgba(67, 171, 123, 0.2) !important;
        color: #43ab7b !important;
    }

    .mobile-language-dropdown {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(11, 11, 12, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(225, 229, 233, 0.1) !important;
        border-radius: 8px !important;
        padding: 0.5rem 0 !important;
        min-width: 200px !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-language-dropdown.show {
        display: block !important;
    }

    .mobile-lang-option {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.5rem 1rem !important;
        color: #e1e5e9 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .mobile-lang-option:hover {
        background: rgba(67, 171, 123, 0.1) !important;
        color: #43ab7b !important;
    }

    .mobile-lang-option.active {
        background: rgba(67, 171, 123, 0.2) !important;
        color: #43ab7b !important;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .mobile-menu ul {
        gap: 0.3rem !important;
    }

    .mobile-menu a {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.8rem !important;
    }

    .nav-container {
        padding: 0.5rem 15px !important;
    }

    .logo-text {
        font-size: 1.1rem !important;
    }
}

/* Стили для средних мобильных экранов (iPhone Pro Max и подобные) */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-menu ul {
        gap: 0.4rem !important;
        justify-content: flex-start !important;
    }

    .mobile-menu a {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.85rem !important;
    }
}

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .twist-visualization {
        width: 300px;
        height: 300px;
    }

    .ring-1 {
        width: 280px;
        height: 280px;
        top: 10px;
        left: 10px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
        top: 50px;
        left: 50px;
    }

    .ring-3 {
        width: 120px;
        height: 120px;
        top: 90px;
        left: 90px;
    }

    .demo-container {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .game-stats {
        justify-content: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

    .download-options {
        grid-template-columns: 1fr;
    }

    .features-detailed {
        grid-template-columns: 1fr;
    }

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-video {
        max-height: 200px;
        border-radius: 8px;
    }
    
    .hero-video {
        max-height: 300px;
        aspect-ratio: 16 / 9;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-video {
        max-height: 250px;
        border-radius: 10px;
    }

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

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

    h2 {
        font-size: 2rem;
    }

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

    section {
        padding: 60px 0;
    }

    .twist-visualization {
        width: 250px;
        height: 250px;
    }

    .ring-1 {
        width: 230px;
        height: 230px;
        top: 10px;
        left: 10px;
    }

    .ring-2 {
        width: 170px;
        height: 170px;
        top: 40px;
        left: 40px;
    }

    .ring-3 {
        width: 110px;
        height: 110px;
        top: 70px;
        left: 70px;
    }

    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(225, 229, 233, 0.1);
    border: 1px solid rgba(225, 229, 233, 0.2);
    border-radius: 8px;
    color: #e1e5e9;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-btn:hover {
    background: rgba(225, 229, 233, 0.15);
    border-color: rgba(225, 229, 233, 0.3);
}

.language-btn .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-btn.active .arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(225, 229, 233, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 5px;
    min-width: 200px;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    color: #e1e5e9;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(225, 229, 233, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(67, 171, 123, 0.1);
    color: #43ab7b;
}

.lang-option.active {
    background: rgba(67, 171, 123, 0.2);
    color: #43ab7b;
}

.lang-option .flag {
    font-size: 1.2rem;
}

.lang-option .lang-name {
    font-weight: 500;
}

/* Mobile responsive for language selector */
@media (max-width: 768px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .language-selector {
        margin-right: 0.5rem;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .language-dropdown {
        min-width: 180px;
    }
    
    .lang-option {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .language-selector {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .language-btn {
        justify-content: center;
    }
    
    .language-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 250px;
        max-width: 90vw;
    }
    
    .language-dropdown.show {
        transform: translate(-50%, -50%);
    }
}

/* Registration Page Styles */
.breadcrumb {
    padding: 2rem 0 1rem;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(225, 229, 233, 0.5);
}

.breadcrumb-list a {
    color: #43ab7b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #dccb96;
}

.breadcrumb-list .active {
    color: rgba(225, 229, 233, 0.7);
}

/* Hero Section for Registration */
.hero-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(67, 171, 123, 0.1) 0%, rgba(220, 203, 150, 0.1) 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(225, 229, 233, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e1e5e9;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(225, 229, 233, 0.8);
    line-height: 1.7;
}

.warning-box {
    background: rgba(220, 107, 107, 0.1);
    border: 1px solid rgba(220, 107, 107, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #dc6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quick-links {
    background: rgba(67, 171, 123, 0.1);
    border: 1px solid rgba(67, 171, 123, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.quick-links p {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #43ab7b;
    text-decoration: none;
    font-weight: 500;
}

.quick-links a:hover {
    text-decoration: underline;
}

/* Casinos Section */
.casinos-section {
    padding: 4rem 0;
}

.casinos-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(225, 229, 233, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: rgba(11, 11, 12, 0.8);
    border: 1px solid rgba(225, 229, 233, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 171, 123, 0.3);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-logo img {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #dccb96;
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: #43ab7b;
}

.casino-features {
    margin-bottom: 1.5rem;
}

.casino-features ul {
    list-style: none;
}

.casino-features li {
    padding: 0.5rem 0;
    color: rgba(225, 229, 233, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #43ab7b;
    font-weight: bold;
}

.casino-bonuses {
    background: rgba(67, 171, 123, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.casino-bonuses h4 {
    color: #43ab7b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.casino-bonuses ul {
    list-style: none;
}

.casino-bonuses li {
    padding: 0.25rem 0;
    color: rgba(225, 229, 233, 0.8);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.casino-bonuses li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.casino-actions {
    text-align: center;
}

.btn-casino {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
    color: #0b0b0c;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(67, 171, 123, 0.3);
}

/* How to Choose Section */
.choose-section {
    padding: 4rem 0;
    background: rgba(11, 11, 12, 0.5);
}

.choose-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.choose-card {
    background: rgba(11, 11, 12, 0.8);
    border: 1px solid rgba(225, 229, 233, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 171, 123, 0.3);
}

.choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.choose-card p {
    color: rgba(225, 229, 233, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(67, 171, 123, 0.1) 0%, rgba(220, 203, 150, 0.1) 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(225, 229, 233, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(225, 229, 233, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.cookie-notice .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-notice p {
    color: rgba(225, 229, 233, 0.8);
    margin: 0;
}

.cookie-notice a {
    color: #43ab7b;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-accept, .btn-reject {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #43ab7b;
    color: #0b0b0c;
}

.btn-accept:hover {
    background: #3a9a6f;
}

.btn-reject {
    background: rgba(225, 229, 233, 0.1);
    color: #e1e5e9;
    border: 1px solid rgba(225, 229, 233, 0.2);
}

.btn-reject:hover {
    background: rgba(225, 229, 233, 0.2);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    background: rgba(225, 229, 233, 0.1);
    border: 1px solid rgba(225, 229, 233, 0.2);
    border-radius: 6px;
    color: #e1e5e9;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(225, 229, 233, 0.5);
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #43ab7b;
    color: #0b0b0c;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #3a9a6f;
}

/* Mobile Responsive for Registration Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .casino-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-notice .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .intro-content h2,
    .casinos-section h2,
    .choose-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 1rem;
    }
    
    .choose-card {
        padding: 1.5rem;
    }
}

/* Game Details Styles */
.game-details {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(11, 11, 12, 0.8);
    border: 1px solid rgba(225, 229, 233, 0.1);
    border-radius: 16px;
}

.game-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e1e5e9;
    text-align: center;
}

/* Author Section */
.author-section {
    background: rgba(67, 171, 123, 0.1);
    border: 1px solid rgba(67, 171, 123, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(67, 171, 123, 0.3);
}

.author-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e1e5e9;
    margin: 0 0 0.25rem 0;
}

.author-details p {
    font-size: 0.9rem;
    color: #8b949e;
    margin: 0 0 0.25rem 0;
}

.author-credentials {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
    font-style: italic;
}

.author-bio {
    border-top: 1px solid rgba(67, 171, 123, 0.2);
    padding-top: 1rem;
}

.author-bio p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8c1cc;
    margin-bottom: 1rem;
}

.author-link {
    display: inline-block;
    color: #43ab7b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.author-link:hover {
    color: #dccb96;
    transform: translateX(5px);
}

.game-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(225, 229, 233, 0.8);
    text-align: justify;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(67, 171, 123, 0.05) 0%, rgba(220, 203, 150, 0.05) 100%);
}

.reviews-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(11, 11, 12, 0.9);
    border: 1px solid rgba(225, 229, 233, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #43ab7b, #dccb96);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 171, 123, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(67, 171, 123, 0.3);
}

.reviewer-info h4 {
    font-size: 1.2rem;
    color: #e1e5e9;
    margin-bottom: 0.25rem;
}

.reviewer-info .stars {
    color: #dccb96;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.reviewer-info .location {
    font-size: 0.9rem;
    color: rgba(225, 229, 233, 0.6);
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(225, 229, 233, 0.8);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(225, 229, 233, 0.1);
}

.win-amount {
    color: #43ab7b;
    font-weight: 600;
    font-size: 0.9rem;
}

.play-time {
    color: rgba(225, 229, 233, 0.6);
    font-size: 0.9rem;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 4rem 0;
}

.gallery-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #e1e5e9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 11, 12, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #e1e5e9;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(225, 229, 233, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .game-details {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .game-details h3 {
        font-size: 1.5rem;
    }
    
    .game-details p {
        font-size: 1rem;
        text-align: left;
    }
    
    /* Mobile Responsive for Author Section */
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
    }
    
    .author-section {
        padding: 1rem;
    }
    
    /* Mobile Responsive for Game Rules Page */
    .interface-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interface-main:nth-child(even) {
        direction: ltr;
    }
    
    .mechanics-grid,
    .components-grid,
    .strategy-content,
    .combinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mechanics-item,
    .component-item,
    .strategy-item,
    .combination-item {
        padding: 1.5rem;
    }
    
    .mechanics-icon {
        font-size: 2.5rem;
    }
    
    .combination-icon {
        font-size: 2rem;
    }
    
    .payout-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Game Rules Page Styles */
    .mechanics-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, rgba(67, 171, 123, 0.1) 0%, rgba(220, 203, 150, 0.1) 100%);
    }
    
    .mechanics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .mechanics-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(67, 171, 123, 0.2);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mechanics-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(67, 171, 123, 0.2);
    }
    
    .mechanics-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .mechanics-item h3 {
        color: #e1e5e9;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .mechanics-item p {
        color: #b8c1cc;
        line-height: 1.6;
    }
    
    .interface-section {
        padding: 4rem 0;
    }
    
    .interface-overview {
        margin-top: 3rem;
    }
    
    .interface-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        margin-bottom: 4rem;
    }
    
    .interface-main:nth-child(even) {
        direction: rtl;
    }
    
    .interface-main:nth-child(even) .interface-details {
        direction: ltr;
    }
    
    .interface-image {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .interface-details h3 {
        color: #e1e5e9;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    .interface-details p {
        color: #b8c1cc;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .interface-details ul {
        list-style: none;
        padding: 0;
    }
    
    .interface-details li {
        color: #b8c1cc;
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
        position: relative;
    }
    
    .interface-details li:before {
        content: "•";
        color: #43ab7b;
        font-weight: bold;
        position: absolute;
        left: 0;
    }
    
    .components-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, rgba(220, 203, 150, 0.1) 0%, rgba(67, 171, 123, 0.1) 100%);
    }
    
    .components-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .component-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(220, 203, 150, 0.2);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .component-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(220, 203, 150, 0.2);
    }
    
    .component-image {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    
    .component-item h3 {
        color: #e1e5e9;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .component-item p {
        color: #b8c1cc;
        line-height: 1.6;
    }
    
    .strategy-section {
        padding: 4rem 0;
    }
    
    .strategy-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .strategy-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(67, 171, 123, 0.2);
        border-radius: 12px;
        padding: 2rem;
        transition: all 0.3s ease;
    }
    
    .strategy-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(67, 171, 123, 0.2);
    }
    
    .strategy-item h3 {
        color: #e1e5e9;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .strategy-item p {
        color: #b8c1cc;
        line-height: 1.6;
    }
    
    .combinations-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, rgba(67, 171, 123, 0.1) 0%, rgba(220, 203, 150, 0.1) 100%);
    }
    
    .combinations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .combination-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(220, 203, 150, 0.2);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .combination-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(220, 203, 150, 0.2);
    }
    
    .combination-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .combination-item h3 {
        color: #e1e5e9;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }
    
    .combination-item p {
        color: #b8c1cc;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .payout-info {
        background: rgba(67, 171, 123, 0.1);
        border: 1px solid rgba(67, 171, 123, 0.3);
        border-radius: 8px;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .payout-label {
        color: #b8c1cc;
        font-weight: 600;
    }
    
    .payout-value {
        color: #43ab7b;
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    /* Inline Links for SEO */
    .inline-link {
        color: #43ab7b;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-bottom: 1px solid transparent;
    }
    
    .inline-link:hover {
        color: #dccb96;
        border-bottom-color: #dccb96;
        transform: translateY(-1px);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: rgba(11, 11, 12, 0.8);
        padding: 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .game-details {
        padding: 1rem;
    }
    
    .game-details h3 {
        font-size: 1.3rem;
    }
    
    .reviews-section h2,
    .gallery-section h2 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .reviewer-photo {
        width: 50px;
        height: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-page {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.about-hero {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.about-hero-text h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-hero-text h2 {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8ecf2;
    margin-bottom: 30px;
}

.expertise-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-section,
.expertise-section,
.publications-section,
.philosophy-section,
.why-guide-section,
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.journey-section h2,
.expertise-section h2,
.publications-section h2,
.philosophy-section h2,
.why-guide-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4f46e5, #6366f1);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 100px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transform: translateX(-50%);
    left: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #4f46e5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
}

.expertise-card h4 {
    font-size: 1.1rem;
    color: #4f46e5;
    margin-bottom: 10px;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
}

.expertise-card li {
    padding: 5px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.expertise-card li::before {
    content: '•';
    color: #4f46e5;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.publications-column h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.publication-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.publication-item h4 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.publication-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
}

.publication-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4f46e5;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.philosophy-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #4f46e5;
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #4f46e5;
}

.philosophy-principles {
    margin-top: 40px;
}

.philosophy-principles h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.principle {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.principle h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.principle p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.guide-features {
    margin: 40px 0;
}

.guide-features h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.guide-feature {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.guide-feature h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.guide-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.personal-note {
    background: #f0f9ff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border-left: 4px solid #0ea5e9;
}

.personal-note h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.personal-note p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 15px;
}

.signature {
    margin-top: 30px;
    text-align: right;
}

.signature p {
    margin: 5px 0;
    color: #6b7280;
}

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

.contact-item {
    text-align: center;
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.contact-note {
    background: #fef3c7;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #f59e0b;
}

.contact-note h4 {
    font-size: 1.2rem;
    color: #92400e;
    margin-bottom: 15px;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: #78350f;
    margin-bottom: 10px;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .expertise-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .journey-section,
    .expertise-section,
    .publications-section,
    .philosophy-section,
    .why-guide-section,
    .contact-section {
        padding: 20px;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .journey-section h2,
    .expertise-section h2,
    .publications-section h2,
    .philosophy-section h2,
    .why-guide-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .philosophy-quote {
        font-size: 1.4rem;
        padding: 20px;
    }
}

/* Responsible Gaming Page Styles */
.responsible-gaming-page {
    padding: 40px 0;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    min-height: 100vh;
}

.rg-hero {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rg-hero-content h1 {
    font-size: 3.5rem;
    color: #065f46;
    margin-bottom: 10px;
    font-weight: 700;
}

.rg-hero-content h2 {
    font-size: 1.8rem;
    color: #047857;
    margin-bottom: 20px;
    font-weight: 500;
}

.rg-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f2f4f6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rg-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.rg-stat {
    text-align: center;
}

.rg-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
}

.rg-stat .stat-label {
    font-size: 1rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.rg-what-section,
.rg-importance-section,
.rg-warning-section,
.rg-tools-section,
.rg-help-section,
.rg-family-section,
.rg-commitment-section,
.rg-cta-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rg-what-section h2,
.rg-importance-section h2,
.rg-warning-section h2,
.rg-tools-section h2,
.rg-help-section h2,
.rg-family-section h2,
.rg-commitment-section h2,
.rg-cta-section h2 {
    font-size: 2.5rem;
    color: #065f46;
    margin-bottom: 10px;
    text-align: center;
}

.rg-definition {
    background: #f0fdf4;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #059669;
}

.rg-definition h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 15px;
}

.rg-definition p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.rg-definition ul {
    list-style: none;
    padding: 0;
}

.rg-definition li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.rg-definition li::before {
    content: '✓';
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.importance-card {
    background: #f0fdf4;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #059669;
}

.importance-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.importance-card h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 15px;
}

.importance-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

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

.warning-category {
    background: #fef2f2;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #dc2626;
}

.warning-category h3 {
    font-size: 1.3rem;
    color: #991b1b;
    margin-bottom: 15px;
}

.warning-category ul {
    list-style: none;
    padding: 0;
}

.warning-category li {
    padding: 6px 0;
    color: #7f1d1d;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.warning-category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.warning-alert {
    background: #fef3c7;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #f59e0b;
}

.warning-alert h3 {
    font-size: 1.5rem;
    color: #92400e;
    margin-bottom: 15px;
}

.warning-alert p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #78350f;
    margin-bottom: 20px;
}

.btn-help {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-help:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tool-card {
    background: #f0fdf4;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #059669;
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 15px;
}

.tool-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
}

.tool-card h4 {
    font-size: 1.1rem;
    color: #047857;
    margin-bottom: 10px;
}

.tool-card ul {
    list-style: none;
    padding: 0;
}

.tool-card li {
    padding: 5px 0;
    color: #374151;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tool-card li::before {
    content: '•';
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.help-category {
    background: #f0fdf4;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #059669;
}

.help-category h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 25px;
    text-align: center;
}

.help-resource {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.help-resource h4 {
    font-size: 1.2rem;
    color: #065f46;
    margin-bottom: 10px;
}

.help-resource p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
}

.help-link {
    display: inline-block;
    background: #059669;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: #047857;
    transform: translateY(-1px);
}

.helpline-number {
    display: block;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}

.emergency-alert {
    background: #fef2f2;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #dc2626;
    margin-top: 30px;
}

.emergency-alert h3 {
    font-size: 1.5rem;
    color: #991b1b;
    margin-bottom: 15px;
}

.emergency-alert p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7f1d1d;
    margin-bottom: 20px;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.emergency-numbers span {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.family-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.support-card {
    background: #f0fdf4;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #059669;
}

.support-card h3 {
    font-size: 1.3rem;
    color: #065f46;
    margin-bottom: 15px;
}

.support-card ul {
    list-style: none;
    padding: 0;
}

.support-card li {
    padding: 6px 0;
    color: #374151;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.support-card li::before {
    content: '✓';
    color: #059669;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.commitment-item {
    background: #f0fdf4;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #059669;
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.commitment-item h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 15px;
}

.commitment-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.rg-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.rg-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.rg-cta-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Responsible Gaming Page */
@media (max-width: 768px) {
    .rg-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .rg-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .importance-grid,
    .warning-signs-grid,
    .tools-grid,
    .help-grid,
    .family-support-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .rg-hero,
    .rg-what-section,
    .rg-importance-section,
    .rg-warning-section,
    .rg-tools-section,
    .rg-help-section,
    .rg-family-section,
    .rg-commitment-section,
    .rg-cta-section {
        padding: 20px;
    }
    
    .rg-hero-content h1 {
        font-size: 2rem;
    }
    
    .rg-what-section h2,
    .rg-importance-section h2,
    .rg-warning-section h2,
    .rg-tools-section h2,
    .rg-help-section h2,
    .rg-family-section h2,
    .rg-commitment-section h2,
    .rg-cta-section h2 {
        font-size: 2rem;
    }
    
    .emergency-numbers {
        flex-direction: column;
    }
}

/* Terms of Service Page Styles */
.terms-page {
    padding: 40px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    min-height: 100vh;
}

.terms-hero {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.terms-hero-content h1 {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.terms-hero-content h2 {
    font-size: 1.8rem;
    color: #475569;
    margin-bottom: 20px;
    font-weight: 500;
}

.terms-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #c0c8d4;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.terms-stat {
    text-align: center;
}

.terms-stat .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-stat .stat-label {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 5px;
}

.terms-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-section h3 {
    font-size: 1.4rem;
    color: #374151;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 25px;
}

.terms-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-section li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-section li::before {
    content: '•';
    color: #475569;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-section strong {
    color: #1e293b;
    font-weight: 600;
}

.terms-notice {
    background: #fef3c7;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #f59e0b;
    margin-top: 40px;
}

.terms-notice h3 {
    font-size: 1.5rem;
    color: #92400e;
    margin-bottom: 15px;
}

.terms-notice p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #78350f;
    margin-bottom: 15px;
}

.terms-notice strong {
    color: #92400e;
}

/* Mobile Responsive for Terms Page */
@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .terms-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.8rem;
    }
    
    .terms-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .terms-hero,
    .terms-content {
        padding: 20px;
    }
    
    .terms-hero-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .terms-section p {
        font-size: 1rem;
    }
}


