/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a3a2e;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #4a7c59;
}

.age-verification h2 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 2rem;
}

.age-verification p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #4a7c59;
}

.btn-secondary:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    padding: 20px;
    border-top: 3px solid #4a7c59;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #9b59b6;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background: #1a3a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-top {
    background: #0f2419;
    padding: 10px 0;
    text-align: center;
}

.age-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffff;
}

.age-icon {
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9b59b6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #9b59b6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #9b59b6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5a3d 50%, #1a3a2e 100%);
    background-image: radial-gradient(
            circle at 20% 80%,
            rgba(155, 89, 182, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(142, 68, 173, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 40%,
            rgba(74, 124, 89, 0.2) 0%,
            transparent 50%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(155, 89, 182, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.8;
}

.btn-hero {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.6);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #1a3a2e;
}

.welcome h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #9b59b6;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #2d5a3d;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #9b59b6;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-machine-preview {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4a7c59, #2d5a3d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slot-display {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.slot-gems {
    position: absolute;
    top: -10px;
    right: -10px;
}

.gem {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.gem-1 {
    background: #9b59b6;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.gem-2 {
    background: #8e44ad;
    top: 25px;
    right: 15px;
    animation-delay: 1s;
}

.gem-3 {
    background: #e74c3c;
    top: 50px;
    right: 5px;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
    background: #1a3a2e;
}

.featured-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9b59b6;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.game-card {
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid #4a7c59;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-preview {
    margin-bottom: 20px;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #4a7c59;
}

.slot-machine {
    background: linear-gradient(135deg, #8b4513, #654321);
    border-radius: 15px;
    padding: 20px;
    border: 3px solid #a0522d;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ffffff;
}

.multipliers {
    display: flex;
    gap: 5px;
}

.mult-btn {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
}

.mult-btn:hover {
    background: #5a8c69;
}

.reels {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.reel {
    width: 60px;
    height: 180px;
    background: #2d5a3d;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 2px solid #4a7c59;
}

.symbol {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
}

.symbol.battle-axe {
    background: #8b4513;
}
.symbol.bow {
    background: #228b22;
}
.symbol.sword {
    background: #c0c0c0;
}
.symbol.helmet {
    background: #4169e1;
}
.symbol.scroll {
    background: #daa520;
}
.symbol.wild {
    background: #ff6347;
}
.symbol.elixir {
    background: #ff8c00;
}
.symbol.treasure {
    background: #ffd700;
}
.symbol.coin {
    background: #cd853f;
}
.symbol.gem {
    background: #9b59b6;
}
.symbol.pirate {
    background: #8b0000;
}
.symbol.ship {
    background: #4682b4;
}
.symbol.dragon {
    background: #dc143c;
}
.symbol.fire {
    background: #ff4500;
}
.symbol.castle {
    background: #696969;
}
.symbol.knight {
    background: #2f4f4f;
}
.symbol.shield {
    background: #32cd32;
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #ffffff;
}

.spin-btn {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spin-btn:hover {
    transform: scale(1.05);
}

.control-buttons {
    display: flex;
    gap: 10px;
}

.ctrl-btn {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
}

.ctrl-btn:hover {
    background: #5a8c69;
}

.game-info {
    text-align: center;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #9b59b6;
}

.game-info p {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.btn-game {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

/* Game Symbols Section */
.game-symbols {
    padding: 80px 0;
    background: #2d5a3d;
}

.game-symbols h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9b59b6;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.symbol-card {
    background: linear-gradient(135deg, #1a3a2e, #2d5a3d);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #4a7c59;
    transition: transform 0.3s ease;
}

.symbol-card:hover {
    transform: translateY(-5px);
}

.symbol-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.symbol-icon.battle-axe {
    background: #8b4513;
}
.symbol-icon.elixir-bottle {
    background: #ff8c00;
}
.symbol-icon.spell-scroll {
    background: #daa520;
}

.symbol-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #9b59b6;
}

.symbol-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #1a3a2e;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9b59b6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #4a7c59;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #9b59b6;
}

.benefit-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0f2419;
    padding: 40px 0 20px;
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #4a7c59;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rg-logo {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
}

.rg-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.org-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.org-link:hover {
    transform: scale(1.05);
}

.org-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.org-logo:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #9b59b6;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #9b59b6;
}

.footer-copyright {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a3a2e;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .symbols-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .slot-machine {
        padding: 15px;
    }

    .reel {
        width: 50px;
        height: 150px;
    }

    .symbol {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
}
