/* Variables */
:root {
    --color-red: #e71d36;
    --color-dark-red: #c4122b;
    --color-gold: #ffd700;
    --color-light-gold: #ffe566;
    --color-dark-gold: #d4af37;
    --color-black: #000000;
    --color-dark-gray: #222222;
    --color-gray: #333333;
    --color-light-gray: #777777;
    --color-white: #ffffff;
    --color-purple: #6a0dad;
    --color-light-purple: #8d5ad5;
    --color-dark-purple: #4b0082;
    --color-bg: #0a0a0a;
    --border-radius: 6px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    --neon-shadow: 0 0 10px rgba(231, 29, 54, 0.8), 0 0 20px rgba(231, 29, 54, 0.5);
    --gold-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    --purple-shadow: 0 0 10px rgba(106, 13, 173, 0.8), 0 0 20px rgba(106, 13, 173, 0.5);
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-bg);
    background-image: url('/images/background/dark-felt.png');
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-light-gold);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5rem;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

h2 {
    font-size: 2rem;
    color: var(--color-red);
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    box-shadow: var(--gold-shadow);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-light-purple);
}

h4 {
    font-size: 1.2rem;
    color: var(--color-gold);
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--neon-shadow);
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background-color: var(--color-dark-red);
    transform: translateY(-3px);
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-purple);
    color: var(--color-white);
    box-shadow: var(--purple-shadow);
    border: 2px solid var(--color-purple);
}

.btn-secondary:hover {
    background-color: var(--color-dark-purple);
    transform: translateY(-3px);
    color: var(--color-white);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--gold-shadow);
    border: 2px solid var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-dark-gold);
    transform: translateY(-3px);
    color: var(--color-black);
}

.btn-play {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(231, 29, 54, 0.8);
}

.btn-play:hover {
    background-color: var(--color-dark-red);
    transform: scale(1.05);
    color: var(--color-white);
}

/* Header Styles */
.site-header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--color-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.site-logo {
    display: block;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 10px 20px;
    font-weight: bold;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.login-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.register-btn {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
    box-shadow: var(--neon-shadow);
}

.register-btn:hover {
    background-color: var(--color-dark-red);
    transform: translateY(-3px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: block;
    padding: 10px 15px;
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

.main-nav a:hover {
    color: var(--color-gold);
    background-color: var(--color-dark-gray);
}

.main-nav li.active a {
    color: var(--color-gold);
    background-color: var(--color-dark-gray);
    border-bottom: 2px solid var(--color-gold);
}

/* Hero Section */
.hero-section {
    background-image: url('/images/background/casino-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--color-gold), 0 0 20px var(--color-gold);
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--color-light-gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.neon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(231, 29, 54, 0.1), rgba(106, 13, 173, 0.1));
    z-index: 1;
}

/* Welcome Bonus Section */
.welcome-bonus {
    background-color: var(--color-dark-gray);
    padding: 50px 0;
    border-top: 5px solid var(--color-gold);
    border-bottom: 5px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.bonus-text {
    flex: 1;
    padding-right: 30px;
}

.bonus-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    margin-bottom: 10px;
}

.bonus-details {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.bonus-chips {
    flex: 0 0 250px;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Featured Games */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background-color: var(--color-dark-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-light-gray);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 10px var(--color-red);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-info p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--color-dark-gray);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px var(--color-purple);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* Promotions Section */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.promotion-card {
    background-color: var(--color-dark-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-light-gray);
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px var(--color-gold);
}

.promotion-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promotion-info {
    padding: 20px;
}

.promotion-info h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.promotion-info p {
    margin-bottom: 20px;
    color: var(--color-light-gray);
}

/* CTA Section */
.cta-section {
    background-image: url('/images/background/casino-cta.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-white);
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 20px;
    border-top: 5px solid var(--color-gold);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-logo p {
    margin-top: 10px;
    color: var(--color-light-gray);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-red);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--color-light-gray);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--color-dark-gray);
    margin-bottom: 30px;
}

.payment-methods, .responsible-gambling {
    margin-bottom: 20px;
}

.payment-icons, .responsible-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.copyright {
    text-align: center;
    color: var(--color-light-gray);
    padding-top: 20px;
    border-top: 1px solid var(--color-dark-gray);
    font-size: 0.9rem;
}

.copyright p:not(:last-child) {
    margin-bottom: 10px;
}

/* Page Header */
.page-header {
    background-color: var(--color-dark-gray);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid var(--color-gold);
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/background/page-header.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-description {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    min-height: 600px;
}

/* Content List */
.content-list {
    margin-top: 40px;
}

.list-item {
    background-color: var(--color-dark-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(231, 29, 54, 0.5);
}

.list-item h2 {
    margin-bottom: 15px;
}

.list-item p {
    color: var(--color-light-gray);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: var(--color-red);
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* Media Queries */
@media (max-width: 992px) {
    .bonus-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .bonus-text {
        padding-right: 0;
        margin-top: 30px;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .payment-methods, .responsible-gambling {
        width: 100%;
    }
    
    .payment-icons, .responsible-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .games-grid, .features-grid, .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}