/* Sweet Rush Bonanza Theme - verabet 2026 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --candy-purple: #8B5CF6;
    --candy-pink: #EC4899;
    --candy-magenta: #D946EF;
    --candy-gold: #F59E0B;
    --candy-teal: #14B8A6;
    --candy-blue: #3B82F6;
    --dark-bg: #1A0A2E;
    --darker-bg: #0F051A;
    --light-purple: #C4B5FD;
    --white: #FFFFFF;
    --text-gray: #E5E7EB;
    --gradient-candy: linear-gradient(135deg, var(--candy-purple), var(--candy-pink), var(--candy-magenta));
    --gradient-gold: linear-gradient(135deg, var(--candy-gold), #FBBF24);
    --shadow-candy: 0 4px 30px rgba(139, 92, 246, 0.4);
    --shadow-gold: 0 4px 20px rgba(245, 158, 11, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--text-gray);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-gray);
}

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

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Navigation - NOT STICKY */
.site-header {
    background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-candy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--candy-pink);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    color: var(--darker-bg);
}

.btn-secondary {
    background: var(--gradient-candy);
    color: var(--white);
    box-shadow: var(--shadow-candy);
}

.btn-secondary:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9) 0%, rgba(15, 5, 26, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: var(--gradient-candy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light-purple);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--dark-bg);
}

.section-gradient {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-candy);
    border-radius: 2px;
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.game-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(15, 5, 26, 0.95));
}

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

.game-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.game-card p {
    font-size: 0.9rem;
    color: var(--light-purple);
    margin-bottom: 1rem;
}

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

.feature-box {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--candy-purple);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-candy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-candy);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Payment Methods */
.payment-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem 0;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.payment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.payment-item img {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

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

.review-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-candy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-info span {
    font-size: 0.85rem;
    color: var(--light-purple);
}

.review-stars {
    color: var(--candy-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
}

.review-date {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--light-purple);
}

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

.faq-item {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.15);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--candy-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--candy-purple);
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--candy-pink);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* License Section */
.license-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.license-badge {
    flex-shrink: 0;
}

.license-badge img {
    width: 100px;
    height: auto;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--candy-pink);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

.footer-payment img {
    height: 40px;
    width: auto;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    font-size: 0.85rem;
    color: var(--light-purple);
}

/* Responsible Gaming */
.responsible-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.responsible-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.responsible-header img {
    width: 60px;
    height: 60px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--light-purple);
}

.breadcrumb span {
    color: var(--candy-pink);
}

/* Content Page */
.content-page {
    padding: 3rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    margin-bottom: 2rem;
}

.content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--candy-pink);
}

.content-wrapper ul, .content-wrapper ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.content-image {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
}

/* Sitemap Page */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sitemap-section {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.sitemap-section h3 {
    color: var(--candy-pink);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

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

.sitemap-section li {
    margin-bottom: 0.75rem;
}

.sitemap-section a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sitemap-section a:hover {
    background: rgba(139, 92, 246, 0.15);
    color: var(--candy-gold);
}

.sitemap-section a::before {
    content: '→';
    color: var(--candy-purple);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--dark-bg);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        padding: 1rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .license-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-candy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
