/* Website Layout Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #0a472a;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a5d3a 0%, #0a472a 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

nav a:hover, nav a.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* 18+ Banner */
.age-banner {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid #fff;
    margin-bottom: 20px;
}

.age-banner .age-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #cc0000;
    border-radius: 50%;
    line-height: 40px;
    margin-right: 10px;
    font-weight: bold;
}

/* Main Content */
main {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/rummy-hero-banner.jpg') center/cover;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 40px;
    border-radius: 10px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #0a472a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Game Frame */
.game-container {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: #000;
}

/* Content Sections */
.content-section {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.section-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a472a;
}

/* Responsible Gaming Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.disclaimer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.disclaimer p {
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a472a 0%, #1a5d3a 100%);
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 3px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .game-frame {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    nav li {
        margin: 5px 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
