/* wap-aaabet.com - Mobile-First Stacked Cards + Wave Layout */
:root {
    --neon-blue: #00D9FF;
    --neon-green: #39FF14;
    --neon-pink: #FF10F0;
    --dark-bg: #0D0221;
    --card-bg: #1A0B2E;
    --text-light: #E0E0E0;
    --accent-orange: #FF6C11;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16003B 100%);
    color: var(--text-light);
    line-height: 1.6;
}

/* Wave Header - COMPLETELY DIFFERENT */
.wave-header {
    position: relative;
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-pink));
    padding: 40px 20px 80px;
    overflow: hidden;
}

.wave-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--dark-bg);
    clip-path: polygon(0 50%, 10% 30%, 20% 50%, 30% 20%, 40% 50%, 50% 10%, 60% 50%, 70% 30%, 80% 50%, 90% 40%, 100% 50%, 100% 100%, 0 100%);
}

.mobile-logo {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    margin-bottom: 15px;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: white;
    margin-bottom: 25px;
}

.cta-mobile {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    padding: 18px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    color: var(--dark-bg);
    text-align: center;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
    transition: transform 0.3s;
}

.cta-mobile:hover {
    transform: translateY(-5px);
}

/* Sticky Mobile Nav - Horizontal Scroll */
.mobile-nav {
    position: sticky;
    top: 0;
    background: var(--card-bg);
    padding: 15px 0;
    overflow-x: auto;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.mobile-nav::-webkit-scrollbar {
    height: 4px;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 2px;
}

.nav-items {
    display: inline-flex;
    gap: 15px;
    padding: 0 20px;
}

.nav-items a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s;
}

.nav-items a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Stacked Card Layout - UNIQUE */
.content-wrapper {
    padding: 30px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.stacked-card {
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    transition: all 0.4s;
}

.stacked-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 16, 240, 0.3);
    border-color: var(--neon-pink);
}

.stacked-card h2 {
    font-size: 1.8em;
    color: var(--neon-green);
    margin-bottom: 20px;
    text-align: center;
}

.stacked-card p {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Mobile Game Grid - Responsive */
.mobile-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.game-tile {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-tile:hover {
    transform: scale(1.05);
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px var(--neon-pink);
}

.game-tile img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game-tile-title {
    padding: 12px;
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
    color: var(--neon-green);
    background: rgba(0, 0, 0, 0.7);
}

.play-btn-mobile {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, var(--neon-pink), var(--accent-orange));
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.play-btn-mobile:hover {
    background: linear-gradient(90deg, var(--accent-orange), var(--neon-pink));
}

/* Feature List with Icons */
.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(0, 217, 255, 0.1);
    border-left: 4px solid var(--neon-green);
    border-radius: 8px;
    font-size: 1em;
}

.feature-list li::before {
    content: '✓ ';
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
}

/* Testimonial Carousel Style */
.testimonial-mobile {
    background: linear-gradient(135deg, var(--card-bg), #2D1B4E);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.stars-mobile {
    color: var(--accent-orange);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.testimonial-mobile p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--neon-blue);
    font-weight: bold;
}

/* Footer Mobile Style */
.footer-mobile {
    background: linear-gradient(180deg, var(--card-bg), #000);
    border-top: 3px solid var(--neon-blue);
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
}

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

.footer-links a {
    color: var(--neon-green);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.copyright-mobile {
    color: var(--text-light);
    font-size: 0.85em;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .mobile-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3em;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        max-width: 900px;
    }
    
    .mobile-game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
