/* Wild West Casino - Main Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #A0522D 100%);
    color: #2F1B14;
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #FFD700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, #654321 0%, #8B4513 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-bottom: 3px solid #FFD700;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    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: 3px 3px 6px rgba(0,0,0,0.7);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.logo:hover {
    color: #FFA500;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Navigation */
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #F5DEB3;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav a:hover {
    color: #FFD700;
    border-color: #FFD700;
    background: rgba(255,215,0,0.1);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect fill="%23654321" width="1000" height="1000"/><polygon fill="%238B4513" points="0,0 100,100 0,100"/><polygon fill="%23A0522D" points="900,0 1000,100 1000,0"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 3px solid #FFD700;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.hero p {
    font-size: 1.3rem;
    color: #F5DEB3;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    color: #2F1B14;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: none;
    border: 2px solid #B8860B;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn:hover {
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #CD853F 0%, #D2691E 50%, #CD853F 100%);
    color: #F5DEB3;
    border-color: #A0522D;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #D2691E 0%, #FF7F50 50%, #D2691E 100%);
}

/* Game Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-card {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: #FFA500;
}

.game-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.game-card p {
    color: #F5DEB3;
    margin-bottom: 1.5rem;
}

.game-badge {
    display: inline-block;
    background: #DC143C;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.game-badge.new {
    background: #228B22;
}

.game-badge.popular {
    background: #FF4500;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #654321 0%, #2F1B14 100%);
    color: #F5DEB3;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 3px solid #FFD700;
}

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

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #654321;
    color: #D2691E;
}

/* Game Page Styles */
.game-container {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: 3px solid #FFD700;
    border-radius: 10px;
    background: #000;
}

/* Policy Pages */
.policy-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: #2F1B14;
    border: 2px solid #FFD700;
}

.policy-content h2 {
    color: #8B4513;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.policy-content h3 {
    color: #A0522D;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem 0.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .game-container {
        padding: 1rem;
    }

    .game-iframe {
        height: 350px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Saloon-style decorations */
.saloon-doors::before,
.saloon-doors::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 40px;
    background: #8B4513;
    border: 2px solid #FFD700;
}

.western-star {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

/* Age restriction notice */
.age-notice {
    background: #DC143C;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}
