/* Caliente Slots - Arcade Theme CSS */
/* 电玩城主题 - 霓虹灯、像素风、复古游戏 */

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-green: #00ff00;
    --neon-orange: #ff6600;
    --arcade-dark: #0a0a1a;
    --arcade-purple: #1a0a2e;
    --arcade-blue: #0f1a3d;
    --gold: #ffd700;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

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

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--arcade-dark) 0%, var(--arcade-purple) 50%, var(--arcade-blue) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Scanline Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 9999;
}

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

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Header */
.header {
    background: rgba(10, 10, 26, 0.95);
    border-bottom: 3px solid var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

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

.nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    color: var(--text-light) !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 255, 0.8); }
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-arcade.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neon-flicker 3s infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
    52% { opacity: 1; }
    54% { opacity: 0.9; }
    56% { opacity: 1; }
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    color: var(--text-light);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--arcade-dark);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

/* Bonus Banner */
.bonus-banner {
    background: linear-gradient(90deg, var(--arcade-purple), var(--arcade-blue), var(--arcade-purple));
    border-top: 3px solid var(--neon-green);
    border-bottom: 3px solid var(--neon-green);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}

.bonus-banner h2 {
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    margin-bottom: 10px;
    animation: neon-flicker 2s infinite;
}

.bonus-banner p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Games Section */
.games-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

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

.game-card {
    background: linear-gradient(145deg, rgba(26, 10, 46, 0.9), rgba(15, 26, 61, 0.9));
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--neon-pink);
}

.game-card:hover img {
    border-color: var(--neon-cyan);
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.game-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.game-link:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.7);
    color: var(--text-light);
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, var(--arcade-blue), var(--arcade-purple));
    padding: 80px 20px;
    border-top: 3px solid var(--neon-cyan);
    border-bottom: 3px solid var(--neon-cyan);
}

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

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

.feature-card {
    background: rgba(10, 10, 26, 0.8);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(26, 10, 46, 0.9), rgba(15, 26, 61, 0.9));
    border: 2px solid var(--neon-orange);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--neon-pink);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.testimonial-info h4 {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.testimonial-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--arcade-purple), var(--arcade-dark));
    padding: 80px 20px;
    border-top: 3px solid var(--neon-pink);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10, 10, 26, 0.8);
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.faq-toggle {
    color: var(--neon-pink);
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--arcade-dark);
    border-top: 3px solid var(--neon-pink);
    padding: 60px 20px 30px;
}

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

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

.footer-section h4 {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

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

.footer-section a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.age-warning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 15px 25px;
    margin-top: 20px;
}

.age-warning span {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .bonus-banner h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--neon-cyan);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin: 30px 0 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

.content-section p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-section ul {
    color: var(--text-gray);
    margin-left: 30px;
    margin-bottom: 20px;
}

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

/* Pixel Border Effect */
.pixel-border {
    position: relative;
}

.pixel-border::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-green), var(--neon-pink));
    background-size: 400% 400%;
    animation: gradient-border 5s ease infinite;
    z-index: -1;
    border-radius: inherit;
}

@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
