/* verabet - Nasus Egyptian Theme CSS */
/* 2026 Design - Purple & Gold Color Scheme */

:root {
    --primary-gold: #D4AF37;
    --primary-purple: #2D1B4E;
    --dark-purple: #1A0F2E;
    --light-purple: #4A2C7A;
    --accent-gold: #FFD700;
    --text-light: #F5F5F5;
    --text-muted: #B8B8B8;
    --bg-dark: #0D0815;
    --bg-card: rgba(45, 27, 78, 0.8);
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

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

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

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

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

/* Header */
.main-header {
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    border-bottom: 2px solid var(--border-gold);
    padding: 15px 0;
}

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

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

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8860B 100%);
    color: var(--dark-purple);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
    color: var(--dark-purple);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--dark-purple);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gold);
}

.breadcrumb ol {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 10px;
    color: var(--text-muted);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8860B 100%);
    color: var(--dark-purple);
    padding: 18px 45px;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-gold);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px var(--shadow-gold);
    color: var(--dark-purple);
}

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

/* Main Content */
.main-content {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-purple) 50%, var(--bg-dark) 100%);
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-gold);
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 15px auto 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Brand Intro */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

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

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

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

/* Bonus Section */
.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bonus-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bonus-text h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.bonus-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.bonus-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #B8860B 100%);
    color: var(--dark-purple);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.bonus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-gold);
    color: var(--dark-purple);
}

/* Responsible Gaming */
.responsible-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.responsible-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.responsible-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.responsible-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.help-links {
    list-style: none;
    margin-top: 1rem;
}

.help-links li {
    margin-bottom: 0.5rem;
}

.help-links a {
    color: var(--accent-gold);
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.author-info {
    display: flex;
    gap: 25px;
    align-items: center;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-gold);
}

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

.author-details h3 {
    margin-bottom: 0.3rem;
}

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

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

.company-history h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.company-history p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.benefits-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Payment Section */
.payment-banner {
    display: block;
    margin: 0 auto 3rem;
    border-radius: 10px;
}

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

.payment-method {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
}

.payment-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.payment-method p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.payment-limits {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.payment-limits h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.limits-table th,
.limits-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-gold);
}

.limits-table th {
    background: var(--primary-purple);
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
}

.limits-table td {
    color: var(--text-muted);
}

.limits-table tr:last-child td {
    border-bottom: none;
}

/* License Section */
.license-content {
    display: flex;
    gap: 40px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.license-badge {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    flex-shrink: 0;
}

.license-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.license-text h3:not(:first-child) {
    margin-top: 1.5rem;
}

.license-text p {
    color: var(--text-muted);
}

/* Support Section */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.support-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.support-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.support-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-light);
}

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

.review-rating {
    margin-left: auto;
}

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

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--bg-dark) 100%);
    border-top: 2px solid var(--border-gold);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-gold);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

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

.footer-badge {
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
}

.license-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.footer-payments {
    margin-bottom: 20px;
    opacity: 0.8;
}

.copyright {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .bonus-content,
    .responsible-content,
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .bonus-image,
    .responsible-image,
    .support-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .license-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--dark-purple);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px;
        border-bottom: 1px solid var(--border-gold);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .games-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .limits-table {
        font-size: 0.85rem;
    }
    
    .limits-table th,
    .limits-table td {
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
