/* segurobet - Neymar Style Theme 2026 */
/* Brazilian Football Star Inspired Design */

:root {
    --primary-gold: #D4AF37;
    --primary-green: #009739;
    --dark-green: #006B2B;
    --accent-blue: #002776;
    --bg-dark: #0A0F1C;
    --bg-darker: #050810;
    --text-light: #F5F5F5;
    --text-gold: #FFD700;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gradient-green: linear-gradient(135deg, #009739 0%, #00C853 50%, #009739 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-green: 0 4px 20px rgba(0, 151, 57, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

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

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

.logo-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

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

.main-nav a {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    background: rgba(255,255,255,0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.cta-button {
    background: var(--gradient-gold) !important;
    color: var(--bg-dark) !important;
    font-weight: 700 !important;
    padding: 0.75rem 2rem !important;
    box-shadow: var(--shadow-gold);
    animation: pulse-gold 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5); }
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

.hero-background 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(10,15,28,0.9) 0%, rgba(0,39,118,0.7) 50%, rgba(0,107,43,0.8) 100%);
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
    color: var(--bg-dark);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.3);
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.breadcrumb-list a {
    color: var(--text-light);
    opacity: 0.8;
}

.breadcrumb-list a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.game-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

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

.game-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.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: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

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

.game-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.game-card-desc {
    color: var(--text-light);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

.game-card-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-green);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.game-card-link:hover {
    box-shadow: var(--shadow-green);
    color: white;
}

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

.feature-item {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

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

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

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Payment Methods */
.payment-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--bg-dark) 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 3rem 0;
}

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

.payment-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
}

.payment-item img {
    height: 50px;
    margin: 0 auto;
    object-fit: contain;
}

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

.review-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

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

.review-author {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.review-location {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

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

.review-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--text-light);
    opacity: 0.6;
    font-size: 0.85rem;
}

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

.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.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;
}

.faq-answer p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.7;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
}

/* License Section */
.license-box {
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.2) 0%, rgba(0, 39, 118, 0.2) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.license-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.license-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.license-title {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.license-text {
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 3rem 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-bio {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

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

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

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

.footer-copyright {
    color: var(--text-light);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.3);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.responsible-gaming h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.responsible-gaming p {
    margin-bottom: 1rem;
}

.responsible-gaming a {
    color: #ff6b6b;
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--accent-blue) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-description {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.content-section h3 {
    color: var(--text-gold);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-image {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

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

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0;
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.data-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

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

.sitemap-section {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.sitemap-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

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

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

.sitemap-section a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.sitemap-section a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0.5rem;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .game-card-image {
        height: 160px;
    }
}

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

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}
