/* Rummy Game Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: #764ba2;
    font-size: 2rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #764ba2;
}

/* Age Restriction Banner */
.age-banner {
    background: #dc3545;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.hero-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    color: #764ba2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Game Container */
.game-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #764ba2;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #764ba2;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.content-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-section ul, .content-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Real Money Gaming Highlight */
.real-money-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.real-money-highlight h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming {
    background: #f8f9fa;
    border-left: 5px solid #dc3545;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.responsible-gaming h4 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.responsible-gaming p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    text-align: center;
    color: #666;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: #764ba2;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .game-frame {
        height: 300px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 1rem;
    }
}