/* 119bet JOJO Style CSS - 2026 Edition */
/* Golden & Purple Theme inspired by JoJo's Bizarre Adventure */

:root {
    --jojo-gold: #FFD700;
    --jojo-gold-dark: #B8860B;
    --jojo-purple: #6B2D8B;
    --jojo-purple-dark: #4A1D6B;
    --jojo-purple-light: #9B4DCA;
    --jojo-black: #1A1A2E;
    --jojo-white: #F5F5F5;
    --jojo-accent: #FF6B35;
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-purple: 0 0 20px rgba(107, 45, 139, 0.5);
    --gradient-jojo: linear-gradient(135deg, var(--jojo-purple) 0%, var(--jojo-gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--jojo-black) 0%, var(--jojo-purple-dark) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--gradient-dark);
    color: var(--jojo-white);
    line-height: 1.8;
    min-height: 100vh;
}

/* JOJO Text Effect */
.jojo-text {
    font-family: 'Bangers', cursive;
    background: var(--gradient-jojo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.jojo-glow {
    box-shadow: var(--shadow-gold), var(--shadow-purple);
    transition: all 0.3s ease;
}

.jojo-glow:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(107, 45, 139, 0.8);
    transform: scale(1.05);
}

/* Header & Navigation */
.site-header {
    background: rgba(26, 26, 46, 0.95);
    border-bottom: 3px solid var(--jojo-gold);
    position: relative;
    z-index: 100;
}

.main-nav {
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: var(--jojo-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--jojo-purple);
    border-color: var(--jojo-gold);
    color: var(--jojo-gold);
}

.cta-btn {
    background: var(--gradient-jojo);
    color: var(--jojo-black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--jojo-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--jojo-gold);
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--jojo-gold);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--jojo-gold);
    left: 0;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

/* Breadcrumb */
.breadcrumb {
    background: rgba(107, 45, 139, 0.3);
    padding: 10px 20px;
}

.breadcrumb-list {
    max-width: 1400px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list a {
    color: var(--jojo-gold);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 5px solid var(--jojo-gold);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
    padding: 60px 40px 40px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 var(--jojo-purple-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--jojo-white);
}

.hero-cta {
    display: inline-block;
    background: var(--jojo-gold);
    color: var(--jojo-black);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 4px solid var(--jojo-purple);
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: var(--gradient-jojo);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background: rgba(107, 45, 139, 0.1);
    border-top: 3px solid var(--jojo-purple);
    border-bottom: 3px solid var(--jojo-purple);
}

.author-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(26, 26, 46, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--jojo-gold);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--jojo-gold);
    object-fit: cover;
}

.author-info {
    flex: 1;
    min-width: 250px;
}

.author-name {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--jojo-gold);
    margin-bottom: 5px;
}

.author-title {
    color: var(--jojo-purple-light);
    font-size: 1rem;
    margin-bottom: 15px;
}

.author-bio {
    font-size: 1rem;
    line-height: 1.8;
}

.content-article {
    font-size: 1.1rem;
}

.content-article p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Games Section */
.games-section {
    background: var(--jojo-black);
}

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

.game-card {
    background: rgba(107, 45, 139, 0.2);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

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

.game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--jojo-purple);
}

.game-info {
    padding: 20px;
}

.game-title {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: var(--jojo-gold);
    margin-bottom: 10px;
}

.game-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--jojo-white);
}

.game-rtp {
    display: inline-block;
    background: var(--jojo-purple);
    color: var(--jojo-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, var(--jojo-purple-dark) 0%, var(--jojo-black) 100%);
}

.bonus-banner {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 4px solid var(--jojo-gold);
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bonus-card {
    background: rgba(26, 26, 46, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--jojo-purple);
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--jojo-gold);
    box-shadow: var(--shadow-gold);
}

.bonus-title {
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    color: var(--jojo-purple-light);
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jojo-gold);
    margin-bottom: 15px;
}

.bonus-desc {
    font-size: 0.95rem;
    color: var(--jojo-white);
}

/* Payment Section */
.payment-section {
    background: rgba(107, 45, 139, 0.1);
}

.payment-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 15px;
    border: 3px solid var(--jojo-gold);
}

.payment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-method {
    background: rgba(26, 26, 46, 0.8);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--jojo-gold);
}

.payment-method h3 {
    color: var(--jojo-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.payment-method p {
    margin-bottom: 15px;
}

.payment-details {
    list-style: none;
    font-size: 0.95rem;
}

.payment-details li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.withdrawal-info {
    background: rgba(107, 45, 139, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--jojo-purple);
}

.withdrawal-info h3 {
    color: var(--jojo-gold);
    margin-bottom: 15px;
}

.withdrawal-info ul {
    list-style: none;
    margin: 15px 0;
}

.withdrawal-info li {
    padding: 8px 0;
}

/* License Section */
.license-section {
    background: var(--jojo-black);
}

.license-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.license-badge {
    width: 250px;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--jojo-gold);
}

.license-info {
    flex: 1;
    min-width: 300px;
}

.license-info h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--jojo-gold);
    margin-bottom: 15px;
}

.license-info h4 {
    color: var(--jojo-purple-light);
    margin: 20px 0 10px;
}

.license-features {
    list-style: none;
}

.license-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.license-features li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--jojo-gold);
}

/* Responsible Gaming Section */
.responsible-section {
    background: linear-gradient(135deg, var(--jojo-purple-dark) 0%, var(--jojo-black) 100%);
}

.responsible-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.age-badge {
    width: 200px;
    height: auto;
    border-radius: 15px;
}

.responsible-info {
    flex: 1;
    min-width: 300px;
}

.responsible-info h3 {
    color: var(--jojo-gold);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.responsible-tools {
    list-style: none;
    margin-bottom: 20px;
}

.responsible-tools li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.help-resources {
    list-style: none;
}

.help-resources a {
    color: var(--jojo-gold);
    text-decoration: none;
    display: inline-block;
    padding: 5px 0;
}

.help-resources a:hover {
    text-decoration: underline;
}

/* Support Section */
.support-section {
    background: rgba(107, 45, 139, 0.1);
}

.support-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.support-icon {
    width: 200px;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--jojo-gold);
}

.support-info {
    flex: 1;
    min-width: 300px;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.channel {
    background: rgba(26, 26, 46, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--jojo-purple);
}

.channel h3 {
    color: var(--jojo-gold);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background: var(--jojo-black);
}

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

.faq-item {
    background: rgba(107, 45, 139, 0.2);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid var(--jojo-purple);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--jojo-gold);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--jojo-gold);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

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

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--jojo-purple-dark) 0%, var(--jojo-black) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(26, 26, 46, 0.9);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--jojo-purple);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--jojo-gold);
}

.review-header {
    margin-bottom: 15px;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    color: var(--jojo-gold);
    font-size: 1.1rem;
}

.reviewer-location {
    display: block;
    font-size: 0.9rem;
    color: var(--jojo-purple-light);
    margin-bottom: 10px;
}

.review-rating .stars {
    color: var(--jojo-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    display: block;
    font-size: 0.85rem;
    color: var(--jojo-purple-light);
}

/* Footer */
.site-footer {
    background: var(--jojo-black);
    border-top: 4px solid var(--jojo-gold);
    padding-top: 60px;
}

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

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

.footer-section {
    min-width: 180px;
}

.footer-title {
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    color: var(--jojo-gold);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

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

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

.footer-links a {
    color: var(--jojo-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--jojo-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: var(--jojo-white);
    text-decoration: none;
    padding: 8px 15px;
    background: var(--jojo-purple);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

.social-links a:hover {
    background: var(--jojo-gold);
    color: var(--jojo-black);
}

.footer-bottom {
    border-top: 2px solid var(--jojo-purple);
    padding: 30px 0;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-badges img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
}

.footer-legal p {
    margin-bottom: 15px;
}

.footer-legal a {
    color: var(--jojo-gold);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--jojo-black);
        padding: 20px;
        border-top: 2px solid var(--jojo-purple);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    
    .hero-content {
        position: relative;
        background: rgba(26, 26, 46, 0.95);
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .license-content,
    .responsible-content,
    .support-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .license-badge,
    .age-badge,
    .support-icon {
        margin: 0 auto;
    }
    
    .games-grid,
    .bonus-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .game-card {
        margin: 0 -5px;
    }
}

/* Animation Effects */
@keyframes jojo-pulse {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(107, 45, 139, 0.6); }
}

.cta-btn,
.hero-cta {
    animation: jojo-pulse 2s infinite;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-btn,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
