/* lottubet - Void Theme CSS - 2026 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --void-primary: #6B21A8;
    --void-secondary: #A855F7;
    --void-accent: #E879F9;
    --void-dark: #0F0A1A;
    --void-darker: #070410;
    --void-glow: #C084FC;
    --void-text: #E9D5FF;
    --void-text-muted: #A78BFA;
    --void-gold: #F59E0B;
    --void-success: #10B981;
    --void-border: rgba(168, 85, 247, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--void-darker);
    color: var(--void-text);
    line-height: 1.7;
    font-size: 17px;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--void-accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

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

a:hover {
    color: var(--void-accent);
    text-shadow: 0 0 10px var(--void-glow);
}

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

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

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

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

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

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--void-accent), var(--void-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(107, 33, 168, 0.2);
    border: 1px solid var(--void-border);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--void-primary);
    border-color: var(--void-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.cta-button {
    background: linear-gradient(135deg, var(--void-primary), var(--void-secondary));
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--void-accent);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    animation: pulse-glow 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(232, 121, 249, 0.7);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(168, 85, 247, 0.5); }
    50% { box-shadow: 0 0 50px rgba(232, 121, 249, 0.8); }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(7, 4, 16, 0.3) 0%, 
        rgba(15, 10, 26, 0.8) 70%,
        var(--void-darker) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--void-text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.breadcrumb-list li:last-child::after {
    content: '';
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--void-secondary), transparent);
    margin: 1rem auto 0;
}

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

.game-card {
    background: linear-gradient(145deg, rgba(15, 10, 26, 0.9), rgba(107, 33, 168, 0.2));
    border: 1px solid var(--void-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--void-secondary);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.game-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.game-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

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

.game-card-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--void-primary);
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Content Sections */
.content-section {
    background: linear-gradient(145deg, rgba(15, 10, 26, 0.8), rgba(107, 33, 168, 0.1));
    border: 1px solid var(--void-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-section ul {
    list-style: none;
    margin: 1rem 0;
}

.content-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-section li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--void-secondary);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(107, 33, 168, 0.15);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--void-text-muted);
    font-size: 0.95rem;
}

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

.review-card {
    background: rgba(15, 10, 26, 0.8);
    border: 1px solid var(--void-border);
    border-radius: 12px;
    padding: 1.5rem;
}

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

.review-author {
    font-weight: 600;
    color: var(--void-accent);
}

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

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

.review-text {
    font-style: italic;
    color: var(--void-text);
    margin-bottom: 0.75rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--void-text-muted);
}

/* FAQ Section */
.faq-item {
    background: rgba(15, 10, 26, 0.6);
    border: 1px solid var(--void-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--void-text-muted);
}

/* Payment Methods */
.payment-section {
    text-align: center;
}

.payment-image {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* License Badge */
.license-section {
    text-align: center;
}

.license-badge {
    max-width: 200px;
    margin: 1.5rem auto;
    display: block;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.support-item {
    padding: 1.5rem;
    background: rgba(107, 33, 168, 0.15);
    border-radius: 12px;
}

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

/* Footer */
.void-footer {
    background: linear-gradient(180deg, var(--void-dark) 0%, var(--void-darker) 100%);
    border-top: 1px solid var(--void-border);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--void-accent);
}

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

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

.footer-links a {
    color: var(--void-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--void-accent);
}

.footer-bottom {
    border-top: 1px solid var(--void-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-legal a {
    color: var(--void-text-muted);
    font-size: 0.9rem;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #FCA5A5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--void-text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Inner Pages */
.inner-hero {
    min-height: 40vh;
    background: linear-gradient(180deg, var(--void-dark) 0%, var(--void-darker) 100%);
}

.inner-hero .hero-content {
    padding-top: 3rem;
}

.game-detail-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.game-info-item {
    background: rgba(107, 33, 168, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.game-info-label {
    font-size: 0.85rem;
    color: var(--void-text-muted);
    margin-bottom: 0.25rem;
}

.game-info-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--void-accent);
}

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

.sitemap-section {
    background: rgba(15, 10, 26, 0.8);
    border: 1px solid var(--void-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.sitemap-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--void-border);
}

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

.sitemap-links li {
    padding: 0.5rem 0;
}

.sitemap-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-links a::before {
    content: '→';
    color: var(--void-secondary);
}
