/* 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: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

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

/* Age Disclaimer */
.age-disclaimer {
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    color: #1a1a2e;
    padding: 8px 0;
    font-weight: bold;
    position: sticky;
    z-index: 1000;
}

.age-disclaimer.top {
    top: 0;
}

.age-disclaimer.bottom {
    position: relative;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.age-icon {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.disclaimer-text {
    font-size: 14px;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 0;
}

.tagline {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
}

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    margin-bottom: 3rem;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-button {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-chips {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #d4af37 0%, #ffd700 30%, #d4af37 100%);
    border-radius: 50%;
    position: relative;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.casino-chips::before {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #1a1a2e;
    text-align: center;
}

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

/* Featured Game Section */
.featured-game {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.featured-game h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-thumbnail {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #d4af37;
}

.game-thumbnail h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rating {
    margin: 1rem 0;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.score {
    color: #d4af37;
    font-weight: bold;
    margin-left: 0.5rem;
}

.play-button {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* About Section */
.about {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

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

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

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

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

.feature h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: #cccccc;
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
    color: #d4af37;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #cccccc;
    margin: 0;
}

/* Game Page Styles */
.game-header {
    padding: 2rem 0;
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
}

.game-header h1 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.game-header p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.game-rating {
    margin-top: 1rem;
}

.game-section {
    padding: 3rem 0;
}

.game-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-info-panel h2 {
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item .icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.feature-content h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #cccccc;
}

.responsible-gaming {
    padding: 2rem 0;
}

.notice-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.notice-box h3 {
    color: #fca5a5;
    margin-bottom: 1rem;
}

.notice-box p {
    color: #cccccc;
}

/* Privacy Page Styles */
.privacy-content {
    padding: 3rem 0;
}

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

.privacy-content h1 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.privacy-section h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.privacy-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: #cccccc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

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

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .game-card {
        grid-template-columns: 1fr;
    }

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

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .iframe-container {
        height: 400px;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 10px;
    }

    .disclaimer-text {
        text-align: center;
    }
}

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

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .iframe-container {
        height: 300px;
    }

    .privacy-section {
        padding: 1rem;
    }
}
