/* stakebet Devil Fruit Theme - 2026 Edition */
/* Unique color palette: Deep Purple, Crimson, Gold */

:root {
    --df-purple-dark: #1a0a2e;
    --df-purple: #2d1b4e;
    --df-purple-light: #4a2c7a;
    --df-crimson: #8b0a1a;
    --df-crimson-light: #c41e3a;
    --df-gold: #d4af37;
    --df-gold-light: #f4d03f;
    --df-text: #e8e0f0;
    --df-text-muted: #a89cc8;
    --df-gradient: linear-gradient(135deg, var(--df-purple-dark) 0%, var(--df-purple) 50%, var(--df-crimson) 100%);
    --df-glow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--df-purple-dark);
    color: var(--df-text);
    line-height: 1.8;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--df-gold);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--df-text);
}

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

a:hover {
    color: var(--df-gold-light);
    text-shadow: var(--df-glow);
}

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

/* Header Navigation */
.site-header {
    background: linear-gradient(180deg, var(--df-purple-dark) 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;
}

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

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

.brand-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--df-gold);
    text-shadow: var(--df-glow);
}

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

.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(74, 44, 122, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: var(--df-purple-light);
    border-color: var(--df-gold);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, var(--df-crimson) 0%, var(--df-crimson-light) 100%);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 3rem 0;
    background: var(--df-gradient);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.webp') center/cover no-repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--df-text);
}

.hero-image {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.hero-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: rgba(0,0,0,0.2);
}

.breadcrumb-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--df-text-muted);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

/* Section Styles */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: rgba(45, 27, 78, 0.5);
}

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

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--df-gold);
    border-radius: 2px;
}

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

.game-card {
    background: linear-gradient(145deg, var(--df-purple) 0%, var(--df-purple-dark) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--df-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.game-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

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

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

.game-card-body p {
    font-size: 0.95rem;
    color: var(--df-text-muted);
    margin-bottom: 1rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--df-purple) 0%, var(--df-purple-dark) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 2rem 0;
    align-items: flex-start;
}

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

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

.author-info h4 {
    color: var(--df-gold);
    margin-bottom: 0.5rem;
}

.author-info .author-title {
    color: var(--df-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.review-card {
    background: var(--df-purple);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

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

.reviewer-name {
    font-weight: 600;
    color: var(--df-gold);
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--df-text-muted);
}

.review-stars {
    color: var(--df-gold);
    font-size: 1.1rem;
}

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

.review-date {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--df-text-muted);
}

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

.faq-item {
    background: var(--df-purple);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--df-gold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--df-gold);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--df-text);
    line-height: 1.8;
}

/* Payment Methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.payment-item {
    background: var(--df-purple);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    min-width: 120px;
}

.payment-item.highlight {
    border-color: var(--df-gold);
    background: linear-gradient(135deg, var(--df-purple-light) 0%, var(--df-purple) 100%);
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
    background: var(--df-purple);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.support-item:hover {
    border-color: var(--df-gold);
    transform: translateY(-5px);
}

.support-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.support-item h4 {
    margin-bottom: 0.5rem;
}

/* License Section */
.license-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--df-purple) 0%, var(--df-purple-dark) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-wrap: wrap;
}

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

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--df-purple-dark) 0%, #0d0515 100%);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

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

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

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

.footer-section ul li a {
    color: var(--df-text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--df-text-muted);
    font-size: 0.9rem;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--df-crimson);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: 700;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--df-purple);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--df-gold);
    color: var(--df-purple-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .license-box {
        flex-direction: column;
        text-align: center;
    }
    
    .content-section {
        padding: 2rem 0;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--df-gold); }
    50% { box-shadow: 0 0 20px var(--df-gold), 0 0 30px var(--df-gold-light); }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--df-gold); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--df-purple);
    border: 1px solid var(--df-gold);
    color: var(--df-gold);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .main-nav.active {
        display: flex;
    }
}
