/* 1xbet APK - Black + Lime Green Modern Tech Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0A0A0A;
    --secondary-black: #1A1A1A;
    --lime-green: #00FF00;
    --dark-lime: #00CC00;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --border-green: #00FF0033;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--text-white);
    line-height: 1.6;
}

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

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--lime-green);
    padding: 15px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--lime-green));
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--lime-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--lime-green);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--lime-green);
}

nav a:hover {
    color: var(--lime-green);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: var(--lime-green);
    border: none;
    color: var(--primary-black);
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--lime-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('../images/hero-banner.webp') center/cover;
    padding: 100px 0;
    text-align: center;
    border-bottom: 3px solid var(--lime-green);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.03) 2px,
        rgba(0, 255, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--lime-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px var(--lime-green), 0 0 60px var(--lime-green);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--lime-green), 0 0 40px var(--lime-green);
    }
    to {
        text-shadow: 0 0 30px var(--lime-green), 0 0 60px var(--lime-green), 0 0 90px var(--lime-green);
    }
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--lime-green);
    color: var(--primary-black);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px var(--lime-green);
    border: 2px solid var(--lime-green);
}

.cta-button:hover {
    background: transparent;
    color: var(--lime-green);
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--lime-green);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--lime-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--lime-green);
}

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

.game-card {
    background: var(--primary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--lime-green);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.3);
}

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

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

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--lime-green);
}

.game-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.game-link {
    display: inline-block;
    color: var(--lime-green);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--lime-green);
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.game-link:hover {
    background: var(--lime-green);
    color: var(--primary-black);
    box-shadow: 0 0 20px var(--lime-green);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--primary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--secondary-black);
    border-radius: 15px;
    border: 2px solid var(--border-green);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--lime-green);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--lime-green);
    text-shadow: 0 0 20px var(--lime-green);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--lime-green);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.payment-methods img {
    height: 60px;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.payment-methods img:hover {
    transform: scale(1.2);
    filter: brightness(1) drop-shadow(0 0 20px var(--lime-green));
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--primary-black);
}

.faq-item {
    background: var(--secondary-black);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-green);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--lime-green);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--lime-green);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 0, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--lime-green);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    color: var(--text-gray);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 25px;
}

/* Footer */
footer {
    background: var(--primary-black);
    border-top: 2px solid var(--lime-green);
    padding: 50px 0 20px;
    box-shadow: 0 -4px 20px rgba(0, 255, 0, 0.2);
}

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

.footer-section h3 {
    color: var(--lime-green);
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--lime-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-green);
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--lime-green);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid var(--lime-green);
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
