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

body {
    font-family: 'SF Pro Display', 'Helvetica Neue', 'Arial', sans-serif;
    background: linear-gradient(180deg, #1a0033 0%, #330066 50%, #1a0033 100%);
    color: #fff;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* App icon pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Header - NON-STICKY */
header {
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    padding: 25px 0;
    text-align: center;
    border-bottom: 4px solid #ff0080;
    box-shadow: 0 8px 40px rgba(255, 0, 255, 0.6);
    position: relative;
    z-index: 10;
    /* NO position sticky */
}

header img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(255, 0, 128, 0.8));
}

header h1 {
    color: #fff;
    font-size: 2em;
    margin-top: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.9), 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Navigation - NON-STICKY with PLAY button */
nav {
    background: rgba(26, 0, 51, 0.95);
    padding: 18px 0;
    border-bottom: 3px solid #ff00ff;
    position: relative;
    z-index: 10;
    /* NO position sticky */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

nav ul li a {
    color: #ff00ff;
    text-decoration: none;
    padding: 14px 28px;
    display: block;
    background: linear-gradient(135deg, #330066, #660099);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 700;
    border: 3px solid #ff00ff;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #1a0033;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.7);
}

/* PLAY button special styling */
nav ul li a[rel="nofollow"] {
    background: linear-gradient(135deg, #ff0080, #ff00ff);
    border-color: #00ffff;
    animation: app-glow 2s infinite;
}

@keyframes app-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 128, 0.6), 0 0 30px rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 128, 0.9), 0 0 50px rgba(0, 255, 255, 0.7); }
}

nav ul li a[rel="nofollow"]:hover {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #ff0080;
}

main {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 25px;
    position: relative;
    z-index: 5;
}

/* App Tiles Layout (Layout #24) */
.app-section {
    background: linear-gradient(135deg, rgba(51, 0, 102, 0.6), rgba(102, 0, 153, 0.5));
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    border: 4px solid rgba(255, 0, 255, 0.6);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '📱';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.app-section h2 {
    color: #00ffff;
    font-size: 2.2em;
    margin-bottom: 22px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 2px 2px 6px rgba(0,0,0,0.9);
}

.app-section p {
    font-size: 1.15em;
    margin-bottom: 20px;
    text-align: justify;
    color: #fff;
    line-height: 1.8;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 40px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(255, 0, 255, 0.5);
    border: 5px solid #ff00ff;
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,0,51,0.95), transparent);
    padding: 50px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 3em;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 1), 3px 3px 6px rgba(0,0,0,0.9);
}

.hero-overlay p {
    font-size: 1.5em;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.7), 2px 2px 4px rgba(0,0,0,0.8);
}

/* App Tiles Grid */
.app-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.app-tile {
    background: linear-gradient(135deg, rgba(51, 0, 102, 0.8), rgba(102, 0, 153, 0.7));
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid rgba(255, 0, 255, 0.7);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.app-tile::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    opacity: 0;
    transition: all 0.4s;
}

.app-tile:hover::after {
    opacity: 1;
    transform: rotate(360deg) scale(1.2);
}

.app-tile:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 18px 50px rgba(0, 255, 255, 0.7);
    border-color: #00ffff;
}

.app-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.app-tile h3 {
    padding: 20px;
    color: #00ffff;
    font-size: 1.4em;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.app-tile p {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #fff;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff0080, #ff00ff);
    color: #fff;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    margin: 25px auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.6);
    border: 4px solid #00ffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #ff0080;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.8);
}

/* FAQ */
.faq-item {
    background: rgba(51, 0, 102, 0.6);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 20px;
    border-left: 6px solid #00ffff;
}

.faq-item h3 {
    color: #00ffff;
    margin-bottom: 12px;
    font-size: 1.3em;
}

/* Reviews */
.review {
    background: rgba(51, 0, 102, 0.6);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 20px;
    border-left: 6px solid #ff0080;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    color: #00ffff;
    font-weight: bold;
    font-size: 1.1em;
}

.review-rating {
    color: #ff00ff;
    font-size: 1.3em;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a0033, #330066);
    color: #fff;
    padding: 50px 25px 25px;
    margin-top: 70px;
    border-top: 5px solid #ff00ff;
    position: relative;
    z-index: 10;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-section h3 {
    color: #00ffff;
    margin-bottom: 18px;
    font-size: 1.4em;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00ffff;
}

.license-badge {
    background: linear-gradient(135deg, #330066, #660099);
    color: #00ffff;
    padding: 12px 25px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 12px;
    font-weight: bold;
    border: 3px solid #ff00ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 0, 255, 0.3);
    color: #ff00ff;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .app-tiles-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay h2 {
        font-size: 2em;
    }
    
    .hero-overlay p {
        font-size: 1.1em;
    }
}
