/* Layout XXVII - Digital Pulse Design for Mobile 10bet */
:root {
    --primary: #0EA5E9;
    --secondary: #06B6D4;
    --accent: #8B5CF6;
    --dark: #0C4A6E;
    --light: #E0F2FE;
    --neon: #00F0FF;
    --text: #0F172A;
    --text-muted: #64748B;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0C4A6E 0%, #075985 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated digital pulse background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: digitalPulse 8s ease-in-out infinite;
}

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

/* Navigation - Digital tech style */
.mobile10-nav {
    background: linear-gradient(135deg, #0C4A6E, #075985);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    border-bottom: 3px solid var(--neon);
}

.mobile10-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;
}

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

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

.mobile10-logo img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 3px solid var(--neon);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    animation: techGlow 2s ease-in-out infinite;
}

@keyframes techGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.6); }
    50% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.9); }
}

.mobile10-logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.mobile10-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neon);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.mobile10-nav-links a:hover::before {
    opacity: 0.2;
}

.mobile10-nav-links a:hover {
    color: var(--neon);
    border-color: var(--neon);
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.mobile10-hero {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(12, 74, 110, 0.9));
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.mobile10-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.03) 2px,
        rgba(0, 240, 255, 0.03) 4px
    );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

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

.mobile10-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(0, 240, 255, 0.4);
}

.mobile10-hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

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

.mobile10-section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 15px rgba(0, 240, 255, 0.4);
    position: relative;
    display: inline-block;
    width: 100%;
}

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

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

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

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

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

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

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

.mobile10-game-card h3 {
    font-size: 1.6rem;
    color: var(--neon);
    margin: 1.5rem;
}

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

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

.mobile10-play-button:hover {
    background: linear-gradient(135deg, var(--accent), var(--neon));
}

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

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

.mobile10-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 240, 255, 0.6);
    border-color: var(--neon);
}

.mobile10-benefit-card h3 {
    color: var(--neon);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

.mobile10-faq-item {
    background: linear-gradient(135deg, #075985, #0C4A6E);
    margin-bottom: 1.5rem;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
    border-left: 5px solid var(--neon);
}

.mobile10-faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.6);
    transform: translateX(5px);
}

.mobile10-faq-item h3 {
    color: var(--neon);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

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

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

.mobile10-review-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 240, 255, 0.6);
    border-color: var(--neon);
}

.mobile10-review-stars {
    color: var(--neon);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

/* Footer */
.mobile10-footer {
    background: linear-gradient(135deg, #0C4A6E, #075985);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    border-top: 3px solid var(--neon);
}

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

.mobile10-footer h4 {
    color: var(--neon);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

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

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

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

.mobile10-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) {
    .mobile10-hero h1 {
        font-size: 2.5rem;
    }
    
    .mobile10-nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile10-nav-links {
        justify-content: center;
    }
}
