/* mgmbet casino - Starlight Princess Theme CSS */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B3FD9;
    --primary-pink: #E91E8C;
    --primary-gold: #FFD700;
    --dark-purple: #2D1B4E;
    --light-purple: #B565F2;
    --text-dark: #1A1A2E;
    --text-light: #FFFFFF;
    --bg-gradient-start: #1A0B2E;
    --bg-gradient-end: #2D1B4E;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow-color: rgba(139, 63, 217, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header and Navigation */
.site-header {
    background: linear-gradient(90deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    box-shadow: 0 4px 20px var(--shadow-color);
    position: relative;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    left: 0;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
    color: var(--dark-purple);
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 11, 46, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.6);
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 30, 140, 0.8);
}

/* Main Content */
.main-content {
    background: var(--text-light);
    border-radius: 30px 30px 0 0;
    padding: 60px 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-pink) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 30px 0 15px;
}

/* Sections */
.intro-section,
.bonus-section,
.payment-section,
.license-section,
.support-section,
.responsible-gaming-section,
.vip-section,
.about-section {
    margin-bottom: 80px;
}

.intro-content p,
.bonus-content p,
.payment-content p,
.license-text p,
.support-content p,
.responsible-text p,
.vip-content p,
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-dark);
}

/* Banner Images */
.bonus-banner-container,
.payment-banner-container,
.support-banner-container,
.vip-banner-container {
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.bonus-banner,
.payment-banner,
.support-banner,
.vip-banner {
    width: 100%;
    height: auto;
}

/* License Section */
.license-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.license-badge-container {
    text-align: center;
}

.license-badge {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 4px 20px rgba(139, 63, 217, 0.3));
}

/* Responsible Gaming */
.responsible-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.responsible-badge-container {
    text-align: center;
}

.responsible-badge {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 4px 20px rgba(233, 30, 140, 0.3));
}

.responsible-text a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
}

.responsible-text a:hover {
    color: var(--primary-pink);
}

/* Games Grid */
.games-section {
    margin-bottom: 80px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(139, 63, 217, 0.3);
}

.game-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-pink) 100%);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 25px;
}

.game-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.game-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.game-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: var(--text-light);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.game-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 63, 217, 0.4);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(139, 63, 217, 0.2);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 80px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 63, 217, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 0.95rem;
    color: #666;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.3rem;
    color: #ddd;
}

.star.filled {
    color: var(--primary-gold);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--dark-purple) 0%, #1A0B2E 100%);
    color: var(--text-light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-payment-icons {
    text-align: center;
    margin: 40px 0;
}

.footer-payment-icons img {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.footer-badges img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-purple);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .license-content,
    .responsible-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
}

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

.intro-section,
.bonus-section,
.games-section,
.payment-section,
.license-section,
.support-section,
.responsible-gaming-section,
.vip-section,
.faq-section,
.reviews-section,
.about-section {
    animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print Styles */
@media print {
    .site-header,
    .hero-section,
    .site-footer {
        display: none;
    }
    
    .main-content {
        box-shadow: none;
    }
}
