/* 7C777 Casino Website Styles */
/* Mobile First Approach */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #AD083A;
}

/* Color Variables */
:root {
    --primary-color: #AD083A;
    --secondary-color: #3E0014;
    --accent-color: #f7d462;
    --primary-btn: linear-gradient(180deg, #fbe38c, #ebab51);
    --primary-btn-text: #6a0023;
    --secondary-btn-border: 1px solid #f7d462;
    --secondary-btn-text: #f7d462;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Navigation */
.nav {
    display: none;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent-color);
}

.nav a.active {
    color: var(--accent-color);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(247, 212, 98, 0.5);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--accent-color);
}

.mobile-menu a.active {
    color: var(--accent-color);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(247, 212, 98, 0.5);
    background: rgba(247, 212, 98, 0.1);
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

/* Buttons */
.btn {
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-btn);
    color: var(--primary-btn-text);
    box-shadow: 0 4px 15px rgba(251, 227, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 227, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-btn-text);
    border: var(--secondary-btn-border);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Button Groups */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Content Sections */
.section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 1rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

th {
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

@media (min-width: 1280px) {
    .nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

    
.btn-group {
    justify-content: center;
}

@media (max-width: 480px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }

    .btn {
        font-size: 14px;
    }

    .btn i {
        display: none;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .header-container {
        padding: 0 2rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* External Link Styles */
.external-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(247, 212, 98, 0.5);
}

.external-link:hover {
    text-decoration: underline;
    color: #f4d03f;
    text-shadow: 0 0 10px rgba(247, 212, 98, 0.8);
}

/* CTA Button Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* FAQ Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-answer {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Review Styles */
.review {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.review-author {
    font-weight: bold;
    color: white;
    margin-top: 1rem;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Bonus Cards */
.bonus-card {
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(247, 212, 98, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.bonus-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Banner Slider Styles */
.banner-slider {
    width: 100%;
    background: var(--secondary-color);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}

.banner-slider .swiper-button-next, .banner-slider .swiper-button-prev {
    display: none;
}

.banner-slider .swiper {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.banner-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.banner-slider .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;
    transition: all 0.3s ease;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.banner-slider .swiper-pagination {
    bottom: 10px;
}

.banner-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.banner-slider .swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (min-width: 480px) {
    .banner-slider .swiper {
        height: 200px;
    }

    .banner-slider .swiper-button-next, .banner-slider .swiper-button-prev {
        display: flex;
    }
}

/* Responsive Slider */
@media (min-width: 768px) {
    .banner-slider .swiper {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .banner-slider .swiper {
        height: 350px;
    }
}