/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4AF37;
    --secondary-color: #B8860B;
    --dark-bg: #2C2416;
    --darker-bg: #1A1610;
    --paper-bg: #F5E6D3;
    --text-dark: #3D2817;
    --text-light: #5C4A37;
    --text-gray: #E8DCC0;
    --border-color: #8B6914;
    --shadow-color: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--darker-bg);
    color: var(--text-gray);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Единый фон для всех секций */
section {
    background: var(--darker-bg);
    position: relative;
}

/* Разделительные линии между секциями */
section:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    box-shadow: 0 2px 4px rgba(139, 105, 20, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--paper-bg);
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 3px 8px var(--shadow-color);
    border-bottom: 3px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    text-shadow: 2px 2px 0px rgba(139, 105, 20, 0.3);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    margin-left: -20px;
}

.logo-image {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: normal;
    font-size: 1.1rem;
    position: relative;
    padding: 0.3rem 0;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.nav-menu a.btn {
    text-decoration: none;
}

.nav-menu a.btn:hover {
    text-decoration: none;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 0;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--paper-bg);
        background-image: 
            linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%),
            linear-gradient(0deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -3px 0 15px var(--shadow-color);
        border-left: 3px solid var(--border-color);
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 0.5rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Buttons */
.btn, .btn-demo, .btn-register {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    font-weight: normal;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0px var(--shadow-color);
}

.btn-primary, .btn-register {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-primary:hover, .btn-register:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--shadow-color);
    background: var(--secondary-color);
}

.btn-secondary, .btn-demo {
    background: var(--paper-bg);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover, .btn-demo:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--darker-bg);
}

.hero-background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 1;
    opacity: 0.6;
}

.hero-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-text-box {
    background: rgba(60, 40, 25, 0.85);
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}

/* Clouds Animation */
.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(139, 105, 20, 0.15);
    border-radius: 0;
    opacity: 0.4;
    border: 1px solid rgba(139, 105, 20, 0.2);
    animation: float 20s infinite ease-in-out;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(139, 105, 20, 0.15);
    border-radius: 0;
    border: 1px solid rgba(139, 105, 20, 0.2);
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-1:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1:after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 20px;
}

.cloud-2 {
    width: 250px;
    height: 70px;
    top: 40%;
    right: 15%;
    animation-delay: -5s;
}

.cloud-2:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-2:after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 30px;
}

.cloud-3 {
    width: 180px;
    height: 55px;
    top: 60%;
    left: 20%;
    animation-delay: -10s;
}

.cloud-3:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 15px;
}

.cloud-3:after {
    width: 55px;
    height: 55px;
    top: -27px;
    right: 25px;
}

.cloud-4 {
    width: 220px;
    height: 65px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.cloud-4:before {
    width: 55px;
    height: 55px;
    top: -27px;
    left: 18px;
}

.cloud-4:after {
    width: 65px;
    height: 65px;
    top: -32px;
    right: 28px;
}

.cloud-5 {
    width: 190px;
    height: 58px;
    top: 70%;
    right: 10%;
    animation-delay: -7s;
}

.cloud-5:before {
    width: 48px;
    height: 48px;
    top: -24px;
    left: 12px;
}

.cloud-5:after {
    width: 58px;
    height: 58px;
    top: -29px;
    right: 22px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(20px) translateX(-10px);
    }
}


.hero-title {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    color: #D4AF37;
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #E8DCC0;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}


/* Game Section */
.game-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    position: relative;
    display: block;
    padding: 0.5rem 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--paper-bg);
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
    border-radius: 0;
    padding: 2rem;
    border: 3px solid var(--border-color);
    box-shadow: 5px 5px 0px var(--shadow-color);
}

.game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 0;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    text-shadow: 1px 1px 2px rgba(139, 105, 20, 0.3);
    font-family: 'Georgia', serif;
    transition: transform 0.3s ease, color 0.3s ease;
}

.game-area {
    position: relative;
    min-height: 400px;
    background: var(--darker-bg);
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.game-cloud {
    position: absolute;
    cursor: pointer;
    transition: transform 0.2s;
}

.game-cloud:hover {
    transform: scale(1.1);
}

.game-cloud:hover .cloud-shape {
    box-shadow: 0 0 25px rgba(135, 206, 250, 0.8), inset 0 0 30px rgba(173, 216, 230, 0.5);
    background: rgba(135, 206, 250, 0.5);
    border-color: rgba(135, 206, 250, 0.8);
}

.game-cloud:active {
    transform: scale(0.95);
}

.cloud-shape {
    width: 100px;
    height: 50px;
    background: rgba(135, 206, 250, 0.4);
    border-radius: 50px;
    border: 2px solid rgba(135, 206, 250, 0.6);
    position: relative;
    box-shadow: 0 0 15px rgba(135, 206, 250, 0.5), inset 0 0 20px rgba(173, 216, 230, 0.3);
    transition: all 0.3s ease;
}

.cloud-shape:before,
.cloud-shape:after {
    content: '';
    position: absolute;
    background: rgba(135, 206, 250, 0.4);
    border: 2px solid rgba(135, 206, 250, 0.6);
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(135, 206, 250, 0.4);
}

.cloud-shape:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud-shape:after {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 15px;
}

.clickable-cloud {
    animation: cloud-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(135, 206, 250, 0.6));
}

.clickable-cloud.clicked {
    animation: cloud-pulse 0.5s ease-out;
}

@keyframes cloud-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(135, 206, 250, 0.6));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(135, 206, 250, 1));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(135, 206, 250, 0.6));
    }
}

.clickable-cloud:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.clickable-cloud:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.clickable-cloud:nth-child(3) {
    top: 50%;
    left: 20%;
    animation-delay: 1s;
}

.clickable-cloud:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 1.5s;
}

.clickable-cloud:nth-child(5) {
    bottom: 10%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes cloud-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.btn-reset {
    display: block;
    margin: 0 auto;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-weight: normal;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 3px 3px 0px var(--shadow-color);
}

.btn-reset:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--shadow-color);
    background: var(--secondary-color);
}

/* Power Section */
.power-section {
    padding: 80px 0;
}

.power-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.power-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    width: 100%;
}

.power-image-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.power-icon {
    font-size: 8rem;
    animation: power-pulse 2s ease-in-out infinite;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px var(--shadow-color);
}

@keyframes power-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.power-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.power-text-inline {
    margin: 2rem 0;
    text-align: justify;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.power-text p {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--paper-bg);
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 2px 2px 0px var(--shadow-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: normal;
    font-family: 'Georgia', serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Info Cards Section */
.info-cards-section {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--paper-bg);
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
    border-radius: 0;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 0px var(--shadow-color);
}

.info-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0px var(--shadow-color);
    border-color: var(--secondary-color);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.info-card:nth-child(1) .card-image img,
.info-card:nth-child(2) .card-image img {
    object-position: top 10% center;
}

.info-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(139, 105, 20, 0.3);
}

.card-text {
    color: var(--text-light);
    line-height: 1.8;
    flex-grow: 1;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--paper-bg);
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
    border-radius: 0;
    border: 2px solid var(--border-color);
    transition: all 0.2s ease;
    box-shadow: 3px 3px 0px var(--shadow-color);
}

.feature-item:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--shadow-color);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px var(--shadow-color);
    animation: icon-float 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(139, 105, 20, 0.3);
}

.feature-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--darker-bg);
    text-align: center;
    color: var(--text-gray);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    box-shadow: 0 2px 4px rgba(139, 105, 20, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 105, 20, 0.3);
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    padding: 0.3rem 0.5rem;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Legal Document Section */
.legal-section {
    padding: 100px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--paper-bg);
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(139, 105, 20, 0.1) 100%);
    padding: 3rem 3rem 0 3rem;
    border: 3px solid var(--border-color);
    box-shadow: 5px 5px 0px var(--shadow-color);
    color: var(--text-dark);
}

.legal-content h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-content > *:last-child {
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 105, 20, 0.2);
}

.responsible-gaming-reminder {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0;
}

.responsible-gaming-reminder h3 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.responsible-gaming-reminder p {
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-left: -10px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .hero-text-box {
        padding: 2rem 1.5rem;
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .power-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .power-icon {
        font-size: 5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-area {
        min-height: 300px;
    }

    .game-cloud {
        transform: scale(0.8);
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 180px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .legal-section {
        padding: 90px 0 60px;
    }

    .legal-content {
        padding: 2rem 1.5rem 0 1.5rem;
    }

    .legal-content > *:last-child {
        padding-bottom: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }
}


