/* SNB Vape Lightning Casino - Speed Style CSS */

/* CSS Variables */
:root {
    /* Lightning Color Palette */
    --primary-color: #ffff00;
    --secondary-color: #ffd700;
    --accent-color: #ffffff;
    --background-dark: #000000;
    --background-secondary: #1a1a00;
    --text-light: #ffffff;
    --text-dark: #000000;
    --success-color: #00ff00;
    --danger-color: #ff0000;
    --warning-color: #ff6600;
    --border-color: #333300;
    --glow-color: rgba(255, 255, 0, 0.8);
    
    /* Lightning Gradients */
    --lightning-gradient: linear-gradient(135deg, #000000 0%, #1a1a00 50%, #ffff00 100%);
    --speed-gradient: linear-gradient(90deg, #ffff00 0%, #ffffff 50%, #ffff00 100%);
    --electric-gradient: radial-gradient(circle, #ffff00 0%, #ffd700 50%, #000000 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    word-wrap: break-word;
}

.container {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--lightning-gradient);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    text-decoration: none;
    color: var(--text-light);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--glow-color);
    animation: lightning-glow 2s infinite alternate;
}

@keyframes lightning-glow {
    from { text-shadow: 0 0 10px var(--glow-color); }
    to { text-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--primary-color); }
}

.free-badge {
    background: var(--success-color);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lightning-gradient);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}

.mobile-nav-menu li {
    margin: 10px 0;
}

.mobile-nav-menu .nav-link {
    display: block;
    padding: 15px 20px;
    text-align: center;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 10px;
    margin: 5px 0;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    background: var(--lightning-gradient);
    background-attachment: scroll;
    background-position: center top;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '⚡';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lightning-pulse 2s infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L30,40 L25,40 L35,80 L25,50 L30,50 L20,20 Z" fill="rgba(255,255,0,0.1)"/></svg>') repeat;
    opacity: 0.1;
    animation: lightning-move 4s linear infinite;
}

@keyframes lightning-pulse {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes lightning-move {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-color);
    animation: lightning-text 3s infinite;
}

@keyframes lightning-text {
    0%, 100% { transform: scale(1); text-shadow: 0 0 20px var(--glow-color); }
    50% { transform: scale(1.05); text-shadow: 0 0 30px var(--glow-color), 0 0 40px var(--primary-color); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--speed-gradient);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.4);
    animation: speed-pulse 2s infinite;
}

@keyframes speed-pulse {
    0%, 100% { box-shadow: 0 5px 15px rgba(255, 255, 0, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(255, 255, 0, 0.8); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--glow-color);
    position: relative;
}

.section-title::after {
    content: '⚡';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: lightning-spin 2s linear infinite;
}

@keyframes lightning-spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--background-secondary);
    position: relative;
}

.benefits-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    background: var(--electric-gradient);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: lightning-sweep 1s ease-in-out;
}

@keyframes lightning-sweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 0, 0.5);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: lightning-bounce 2s infinite;
}

@keyframes lightning-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.games-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-card {
    background: var(--background-secondary);
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 255, 0, 0.4);
    border-color: var(--secondary-color);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.game-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.play-btn {
    width: 100%;
    background: var(--speed-gradient);
    color: var(--text-dark);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.5);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.reviews-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: var(--background-dark);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.2);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.review-rating {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-light);
}

.review-author {
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--background-secondary);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 0, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    background: rgba(255, 255, 0, 0.05);
}

/* Leaderboard Section */
.leaderboard-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.leaderboard-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: var(--electric-gradient);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 255, 0, 0.4);
}

.leader-rank {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: lightning-bounce 2s infinite;
}

.leader-info h3 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.leader-info p {
    color: var(--primary-color);
    font-weight: bold;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: var(--danger-color);
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    animation: warning-pulse 2s infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.disclaimer-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.disclaimer-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.badge {
    background: var(--text-light);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.compliance-links {
    margin-top: 30px;
}

.compliance-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.compliance-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    background: var(--text-light);
    padding: 8px;
    border-radius: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    object-fit: contain;
}

.compliance-logo:hover {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: var(--background-dark);
    padding: 50px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Popup Styles */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-popup-content {
    background: var(--lightning-gradient);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px var(--glow-color);
}

.age-popup-content h2 {
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--glow-color);
}

.age-popup-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: var(--lightning-gradient);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 0 20px var(--glow-color);
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Additional Styles for Account Page */
.account-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 0, 0.1);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px var(--glow-color);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.lightning-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--background-dark);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.form-group small {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.login-benefits {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 0, 0.05);
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.contact-info {
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    gap: 30px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.contact-icon {
    font-size: 2.5rem;
    animation: lightning-bounce 2s infinite;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-footer {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 0, 0.05);
    border-radius: 15px;
}

.emergency-contact {
    margin-top: 20px;
}

.emergency-contact h4 {
    color: var(--warning-color);
    margin-bottom: 10px;
}

.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-content {
    background: var(--lightning-gradient);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px var(--glow-color);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: lightning-pulse 1s infinite;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: var(--background-dark);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background: var(--background-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.lightning-stats {
    padding: 80px 0;
    background: var(--background-secondary);
}

.stats-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--electric-gradient);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Responsible Play Styles */
.important-notice {
    padding: 40px 0;
    background: var(--danger-color);
    text-align: center;
}

.notice-content h2 {
    color: var(--text-light);
    margin-bottom: 15px;
    animation: warning-pulse 2s infinite;
}

.notice-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.responsible-content {
    padding: 80px 0;
    background: var(--background-dark);
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    background: var(--background-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.safety-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.safety-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.safety-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.safety-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.warning-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.warning-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 100, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--warning-color);
}

.warning-card h3 {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.warning-card ul {
    list-style: none;
    padding: 0;
}

.warning-card li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.self-check {
    margin-top: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 0, 0.05);
    border-radius: 10px;
}

.check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.tools-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tool-card {
    flex: 1;
    min-width: 250px;
    background: var(--background-dark);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.help-option {
    background: var(--background-dark);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--success-color);
}

.help-option h3 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.help-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.family-support {
    margin-top: 30px;
}

.family-support h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.compliance-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.compliance-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.compliance-card {
    background: var(--background-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--glow-color);
}

.compliance-card a {
    text-decoration: none;
    color: var(--text-light);
}

.compliance-card h3 {
    color: var(--primary-color);
    margin: 20px 0 15px;
}

.helpline-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    background: var(--background-dark);
}

.info-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.info-category {
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.info-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.usage-grid,
.sharing-scenarios {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.usage-card,
.sharing-scenario {
    flex: 1;
    min-width: 250px;
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.usage-card h3,
.sharing-scenario h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.cookie-type {
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
}

.cookie-type h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.security-measures {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.security-measure {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--success-color);
}

.security-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.security-text h3 {
    color: var(--success-color);
    margin-bottom: 10px;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.right-card {
    flex: 1;
    min-width: 300px;
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.right-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.retention-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.retention-item {
    background: var(--background-dark);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.retention-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.child-protection {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.protection-point {
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--warning-color);
}

.protection-point h3 {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.transfer-info {
    margin-top: 30px;
}

.transfer-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    flex: 1;
    min-width: 250px;
    background: var(--background-dark);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.update-process {
    margin-top: 30px;
}

.update-process h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

/* Result styles for self-check */
.result-good {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--success-color);
    padding: 20px;
    border-radius: 10px;
    color: var(--success-color);
}

.result-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid var(--warning-color);
    padding: 20px;
    border-radius: 10px;
    color: var(--warning-color);
}

.result-concern {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--danger-color);
    padding: 20px;
    border-radius: 10px;
    color: var(--danger-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header adjustments */
    .main-header {
        padding: 10px 0;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        background: var(--primary-color);
        border-radius: 5px;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        background: var(--text-dark);
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    /* Hero adjustments */
    .hero-section {
        margin-top: 60px !important;
        min-height: calc(100vh - 60px) !important;
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Section adjustments */
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-title::after {
        display: none;
    }
    
    /* Grid adjustments */
    .benefits-grid,
    .games-grid,
    .reviews-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card,
    .game-card,
    .review-card {
        max-width: 100%;
        width: 100%;
    }
    
    .leaderboard-grid {
        justify-content: center;
    }
    
    .leader-card {
        min-width: 140px;
        max-width: 160px;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Cookie banner mobile */
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 15px 15px 0 0;
        margin: 0;
    }
    
    .disclaimer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .compliance-logos {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .benefit-card,
    .game-card,
    .review-card {
        padding: 20px;
    }
    
    .age-popup-content {
        padding: 20px;
        margin: 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}

/* High contrast mode for accessibility */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffffff;
        --background-dark: #000000;
        --text-light: #ffffff;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
