/* Layout XXVIII - Neon Glow Design for WAP 333bet */
:root {
    --primary: #FF00FF;
    --secondary: #00FFFF;
    --accent: #FFFF00;
    --dark: #1A0033;
    --neon-pink: #FF1493;
    --neon-cyan: #00CED1;
    --neon-yellow: #FFD700;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #1A0033 0%, #2D0052 100%);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Neon glow animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: neonPulse 6s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navigation - Neon style */
.wap333-nav {
    background: linear-gradient(135deg, #1A0033, #2D0052);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.5);
    border-bottom: 3px solid var(--primary);
}

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

.wap333-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.wap333-logo:hover {
    transform: scale(1.05);
}

.wap333-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    animation: neonGlow 2s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% { box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary); }
    50% { box-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary); }
}

.wap333-logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.wap333-nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wap333-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 0, 255, 0.2);
    border-radius: 25px;
    border: 2px solid transparent;
}

.wap333-nav-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-2px);
}

.wap333-cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.875rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.5);
    border: 2px solid var(--primary);
    border-radius: 25px;
}

.wap333-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.7), 0 0 30px var(--primary);
}

/* Hero Section */
.wap333-hero {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    border-bottom: 3px solid var(--primary);
}

.wap333-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(255, 0, 255, 0.05) 10px,
        rgba(255, 0, 255, 0.05) 20px
    );
    animation: neonScan 3s linear infinite;
}

@keyframes neonScan {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.wap333-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.wap333-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary), 2px 2px 4px rgba(0,0,0,0.5);
}

.wap333-hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Section Styles */
.wap333-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.wap333-section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.wap333-section-title::after {
    content: '✨';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

/* Games Grid */
.wap333-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.wap333-game-card {
    background: linear-gradient(135deg, #2D0052, #1A0033);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s;
    position: relative;
    border: 2px solid var(--primary);
}

.wap333-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.wap333-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.7), 0 0 30px var(--primary);
    border-color: var(--secondary);
}

.wap333-game-card:hover::before {
    opacity: 1;
}

.wap333-game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wap333-game-card h3 {
    font-size: 1.6rem;
    color: var(--accent);
    margin: 1.5rem;
    text-shadow: 0 0 10px var(--accent);
}

.wap333-game-card p {
    color: rgba(255,255,255,0.85);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.wap333-play-button {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 1.2rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-top: 2px solid var(--primary);
    border-radius: 0 0 18px 18px;
}

.wap333-play-button:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 0 20px var(--primary);
}

/* Benefits Grid */
.wap333-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wap333-benefit-card {
    background: linear-gradient(135deg, #2D0052, #1A0033);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.wap333-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 0, 255, 0.7), 0 0 30px var(--primary);
    border-color: var(--secondary);
}

.wap333-benefit-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent);
}

.wap333-benefit-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

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

.wap333-faq-item {
    background: linear-gradient(135deg, #2D0052, #1A0033);
    margin-bottom: 1.5rem;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border-left: 5px solid var(--primary);
}

.wap333-faq-item:hover {
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.7), 0 0 20px var(--primary);
    transform: translateX(5px);
}

.wap333-faq-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px var(--accent);
}

.wap333-faq-item p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* Reviews Grid */
.wap333-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.wap333-review-card {
    background: linear-gradient(135deg, #2D0052, #1A0033);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.wap333-review-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 0, 255, 0.7), 0 0 30px var(--primary);
    border-color: var(--secondary);
}

.wap333-review-stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent);
}

.wap333-review-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.wap333-review-card strong {
    color: var(--accent);
    display: block;
    margin-top: 1rem;
}

/* Footer */
.wap333-footer {
    background: linear-gradient(135deg, #1A0033, #2D0052);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    border-top: 3px solid var(--primary);
}

.wap333-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.wap333-footer h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px var(--accent);
}

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

.wap333-footer ul li {
    margin-bottom: 0.75rem;
}

.wap333-footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.wap333-footer a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.wap333-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .wap333-hero h1 {
        font-size: 2.5rem;
    }
    
    .wap333-nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .wap333-nav-links {
        justify-content: center;
    }
}
