/*
Theme Name: BigLuckyChoice
Theme URI: https://bigluckychoice.com
Author: BigLuckyChoice
Author URI: https://bigluckychoice.com
Description: A professional lottery information theme for BigLuckyChoice featuring black and red design.
Version: 5.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bigluckychoice
*/

:root {
    --blc-black: #0a0a0a;
    --blc-black-light: #1a1a1a;
    --blc-black-lighter: #2a2a2a;
    --blc-red: #dc2626;
    --blc-red-dark: #b91c1c;
    --blc-red-light: #ef4444;
    --blc-white: #ffffff;
    --blc-gray: #9ca3af;
    --blc-gray-light: #d1d5db;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--blc-black);
    color: var(--blc-white);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--blc-red-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--blc-red);
}

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

.age-banner {
    background-color: var(--blc-black);
    color: var(--blc-red);
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--blc-black-lighter);
}

.site-header {
    background-color: var(--blc-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--blc-black-lighter);
}

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

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

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

.site-logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--blc-white);
}

.site-logo .logo-highlight {
    color: var(--blc-red);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--blc-red);
    color: var(--blc-white);
}

.btn-outline:hover {
    background-color: var(--blc-red);
    color: var(--blc-white);
}

.btn-primary {
    background-color: var(--blc-red);
    color: var(--blc-white);
}

.btn-primary:hover {
    background-color: var(--blc-red-dark);
}

.btn-large {
    padding: 16px 48px;
    font-size: 16px;
    border-radius: 8px;
}

.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--blc-black) 0%, var(--blc-black-light) 100%);
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-style: italic;
    color: var(--blc-white);
}

.hero-section h1 .highlight {
    color: var(--blc-red);
}

.hero-section p {
    font-size: 18px;
    color: var(--blc-gray-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.about-section {
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.about-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--blc-red);
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-content p {
    color: var(--blc-gray-light);
    margin-bottom: 15px;
}

.about-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.about-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--blc-gray-light);
}

.about-content ul li::before {
    content: "•";
    color: var(--blc-red);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 6px;
}

.features-section {
    padding: 60px 20px;
    background-color: var(--blc-black-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, var(--blc-black-lighter), var(--blc-black-light));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--blc-black-lighter);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--blc-red);
    text-transform: uppercase;
}

.feature-card p {
    color: var(--blc-gray);
    font-size: 14px;
    line-height: 1.7;
}

.games-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title .highlight {
    color: var(--blc-red);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.game-card {
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    transition: transform 0.3s ease;
}

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

.game-card.orange {
    background: linear-gradient(145deg, #f97316, #ea580c);
}

.game-card.pink {
    background: linear-gradient(145deg, #ec4899, #db2777);
}

.game-card.cyan {
    background: linear-gradient(145deg, #06b6d4, #0891b2);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.game-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--blc-white);
    text-transform: uppercase;
}

.game-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.hub-section {
    padding: 80px 20px;
    background-color: var(--blc-black-light);
    text-align: center;
}

.hub-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--blc-gray-light);
    font-size: 16px;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hub-card {
    background-color: var(--blc-black-lighter);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.hub-card h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--blc-white);
    text-transform: uppercase;
}

.hub-card p {
    color: var(--blc-gray);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer {
    background-color: var(--blc-black);
    padding: 40px 20px;
    border-top: 1px solid var(--blc-black-lighter);
}

.footer-disclaimer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-disclaimer h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--blc-white);
}

.footer-disclaimer p {
    color: var(--blc-gray);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid var(--blc-black-lighter);
    border-bottom: 1px solid var(--blc-black-lighter);
    margin-bottom: 30px;
}

.footer-logos img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--blc-gray-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blc-red);
}

.page-header {
    padding: 60px 20px;
    border-bottom: 1px solid var(--blc-black-lighter);
}

.page-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-header .effective-date {
    color: var(--blc-gray);
    font-size: 14px;
}

.page-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 20px;
    margin: 40px 0 15px;
    color: var(--blc-white);
    font-weight: 600;
}

.page-content h3 {
    font-size: 18px;
    margin: 30px 0 12px;
    color: var(--blc-gray-light);
    font-weight: 600;
}

.page-content p {
    color: var(--blc-gray-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-content ul {
    margin: 15px 0 15px 25px;
    color: var(--blc-gray-light);
}

.page-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-content strong {
    color: var(--blc-white);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .about-section {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 28px;
    }

    .header-buttons {
        gap: 5px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 26px;
    }

    .site-logo span {
        font-size: 18px;
    }

    .footer-logos {
        gap: 20px;
    }

    .footer-logos img {
        height: 40px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--blc-black-light);
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    position: relative;
    border: 1px solid var(--blc-black-lighter);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--blc-gray);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--blc-red);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--blc-white);
    text-align: center;
}

.modal-subtitle {
    color: var(--blc-gray);
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--blc-gray-light);
    font-size: 14px;
    font-weight: 500;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--blc-black-lighter);
    border: 1px solid var(--blc-black-lighter);
    border-radius: 8px;
    color: var(--blc-white);
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-form input:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: var(--blc-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
    color: var(--blc-gray);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--blc-gray-light);
    font-size: 13px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blc-red);
    cursor: pointer;
}

.forgot-link {
    color: var(--blc-red-light);
    font-size: 13px;
}

.forgot-link:hover {
    color: var(--blc-red);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.modal-footer-text {
    text-align: center;
    margin-top: 25px;
    color: var(--blc-gray);
    font-size: 14px;
}

.modal-footer-text a {
    color: var(--blc-red-light);
    font-weight: 600;
}

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

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--blc-black-lighter);
}

.contact-info h3 {
    color: var(--blc-white);
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--blc-gray-light);
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--blc-red-light);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 24px;
    }
}
