/* 3191bet - Modern Luxury Casino Design */
/* Color Scheme: Red (#c41e3a) + Black (#0a0a0a) + Gold (#ffd700) */

:root {
    --primary-red: #c41e3a;
    --dark-red: #8b1428;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gold: #ffd700;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
    --shadow-hover: 0 8px 30px rgba(196, 30, 58, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--light-gray);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header Styles */
.site-header {
    background: linear-gradient(90deg, var(--black) 0%, var(--dark-red) 100%);
    padding: 1.2rem 0;
    border-bottom: 3px solid var(--primary-red);
    position: relative;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.main-nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(196,30,58,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* Game Grid */
.game-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.game-card {
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

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

.game-card-content {
    padding: 1.5rem;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.game-card-content p {
    color: var(--light-gray);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.game-card-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.game-card-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Card Styles */
.card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-red);
    box-shadow: var(--shadow);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.card p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.card img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--dark-red), var(--black));
    border-left: 5px solid var(--gold);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.info-box h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 300px;
}

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

.review-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.review-rating {
    color: var(--gold);
    font-size: 1.2rem;
}

.review-text {
    color: var(--light-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-red);
    transition: var(--transition);
}

.faq-item:hover {
    border-left-color: var(--gold);
    background: rgba(196, 30, 58, 0.1);
}

.faq-question {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.faq-answer {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: linear-gradient(90deg, var(--black) 0%, var(--dark-red) 100%);
    border-top: 3px solid var(--primary-red);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-red);
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Utility Classes */
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .game-card {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .two-column {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .content-wrapper {
        padding: 2rem 1rem;
    }
    
    .hero-section {
        padding: 5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}
