/* Reset y Variables */
* {
    margin:  0;
    padding: 0;
    box-sizing:  border-box;
}

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --dark-bg: #000428;
    --dark-purple: #1a0033;
    --text-light: #ffffff;
    --text-gray: #aaaaaa;
    --success-color: #00cc88;
    --warning-color:  #ffaa00;
    --danger-color: #ff3333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fondo espacial (reutilizado) */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  linear-gradient(to bottom, #000428 0%, #004e92 50%, #000428 100%);
    z-index: -2;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.star.small { width: 2px; height:  2px; }
.star.medium { width: 3px; height: 3px; }
.star.large { width: 4px; height: 4px; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.planet {
    position: fixed;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.planet-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #ff6b9d, #c06c84);
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.planet-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, #00d4ff, #0066cc);
    bottom: 15%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

.planet-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #ffaa00, #ff6600);
    top: 50%;
    left: 3%;
    animation: float 7s ease-in-out infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5em;
    animation: rocket-float 3s ease-in-out infinite;
}

@keyframes rocket-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
    text-shadow: 0 0 10px var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-rocket {
    font-size: 8em;
    margin-bottom: 20px;
    animation: rocket-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.8));
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-10deg); }
}

.hero-title {
    font-size: 4em;
    margin-bottom:  20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-animation {
    0%, 100% { background-position:  0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
}

.hero-description {
    font-size: 1.2em;
    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;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius:  50px;
    font-size:  1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    box-shadow: 0 5px 25px rgba(0, 255, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 255, 0, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: var(--text-light);
    box-shadow: 0 5px 25px rgba(0, 102, 204, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 102, 204, 0.6);
}

.btn-large {
    padding: 20px 50px;
    font-size:  1.3em;
}

.btn-icon {
    font-size: 1.2em;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 204, 136, 0.3), rgba(0, 255, 255, 0.3));
    border:  2px solid var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size:  0.95em;
    font-weight:  bold;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* Quick Features */
.quick-features {
    padding: 80px 20px;
    background: rgba(26, 0, 51, 0.5);
    backdrop-filter: blur(10px);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border:  2px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 4em;
    margin-bottom:  20px;
    display: block;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform:  translateY(0px); }
    50% { transform:  translateY(-10px); }
}

.feature-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* Section Title */
.section-title {
    font-size: 3em;
    text-align:  center;
    margin-bottom:  50px;
    color:  var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.section-icon {
    font-size: 1.2em;
    margin-right: 15px;
}

/* Gameplay Section */
.gameplay-section {
    padding: 80px 20px;
}

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

.gameplay-item {
    text-align: center;
}

.gameplay-preview {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameplay-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
}

.preview-placeholder {
    text-align: center;
}

.preview-icon {
    font-size: 5em;
    display: block;
    margin-bottom: 20px;
}

.gameplay-caption {
    font-size: 1.2em;
    color: var(--text-light);
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(51, 0, 102, 0.8));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.stat-number {
    font-size: 3. 5em;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
}

.stat-label {
    font-size: 1.2em;
    color: var(--text-light);
    margin-top: 10px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

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

.testimonial-text {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.95), rgba(51, 0, 102, 0.95));
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3em;
    margin-bottom:  20px;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.cta-description {
    font-size: 1.3em;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.95em;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a0033, #330066);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--primary-color);
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-column p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border:  2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 1.3em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin:  5px 0;
}

/* Responsive */
@media (max-width:  768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 0, 51, 0.98);
        width: 100%;
        padding:  30px;
        gap: 20px;
        transition: left 0.3s ease;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.3em;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2em;
    }

    .feature-grid,
    .gameplay-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estilos para página de características */
.page-hero {
    padding: 150px 20px 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.4em;
    color: var(--text-gray);
}

.features-section {
    padding: 80px 20px;
}

.alt-bg {
    background:  rgba(26, 0, 51, 0.5);
    backdrop-filter: blur(10px);
}

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

.feature-detailed-card {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border:  3px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.5);
    border-color: var(--accent-color);
}

.feature-detailed-icon {
    font-size: 5em;
    margin-bottom:  20px;
    text-align: center;
}

.feature-detailed-card h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.feature-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.spec-badge {
    background: rgba(0, 255, 255, 0.2);
    border:  1px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size:  0.9em;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-tips {
    background: rgba(255, 170, 0, 0.1);
    border-left: 3px solid var(--warning-color);
    padding: 15px;
    border-radius: 5px;
    font-size: 0.95em;
}

.feature-tips strong {
    color: var(--accent-color);
}

/* Enemy Cards */
.enemy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.enemy-card {
    background: linear-gradient(135deg, rgba(51, 0, 0, 0.8), rgba(102, 0, 0, 0.8));
    border: 3px solid #ff3333;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.enemy-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.5);
}

.enemy-visual {
    font-size: 5em;
    text-align: center;
    margin-bottom: 20px;
}

.enemy-name {
    font-size: 1.5em;
    color: #ff3333;
    text-align: center;
    margin-bottom: 20px;
}

.enemy-stats {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
}

.stat-value {
    color: var(--text-light);
    font-weight: bold;
}

.enemy-description {
    color:  var(--text-gray);
    margin-bottom: 15px;
}

.enemy-strategy {
    background: rgba(255, 170, 0, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 12px;
    border-radius:  5px;
    font-size: 0.9em;
}

.enemy-strategy strong {
    color: var(--accent-color);
}

/* Power-Up Cards */
.powerup-grid {
    display:  grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.powerup-card {
    background: linear-gradient(135deg, rgba(0, 51, 51, 0.8), rgba(0, 102, 102, 0.8));
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.powerup-card:hover {
    transform:  translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
}

.powerup-icon {
    font-size: 4em;
    margin-bottom:  15px;
}

.powerup-card h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.powerup-effect {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.effect-badge {
    background: rgba(255, 170, 0, 0.2);
    border: 1px solid var(--warning-color);
    padding: 5px 12px;
    border-radius:  12px;
    font-size:  0.85em;
    color: var(--accent-color);
}

.powerup-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95em;
}

.powerup-combo {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff3333;
    padding: 10px;
    border-radius: 8px;
    font-size:  0.9em;
}

.powerup-combo strong {
    color: #ff6666;
}

/* Upgrade System */
.upgrade-system {
    margin-top: 40px;
}

.upgrade-explanation {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 170, 0, 0.1));
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.upgrade-explanation h3 {
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 15px;
}

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

.upgrade-category {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
}

.upgrade-cat-icon {
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
}

.upgrade-category h4 {
    color:  var(--primary-color);
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}

.upgrade-category ul {
    list-style: none;
    margin-left: 0;
}

.upgrade-category li {
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.upgrade-total {
    margin-top: 15px;
    text-align: center;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1em;
}

.upgrade-tips-box {
    background: rgba(255, 170, 0, 0.1);
    border: 3px solid var(--warning-color);
    border-radius: 15px;
    padding: 30px;
}

.upgrade-tips-box h3 {
    color: var(--accent-color);
    font-size: 1.8em;
    margin-bottom:  20px;
}

.upgrade-tips-box ul {
    list-style: none;
    margin-left: 0;
}

.upgrade-tips-box li {
    color: var(--text-light);
    padding: 10px 0;
    font-size: 1.1em;
}

/* Progression Timeline */
.progression-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.progression-step {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align:  center;
    position: relative;
}

.progression-step.highlight {
    border:  3px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(102, 0, 0, 0.8), rgba(153, 0, 51, 0.8));
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin:  0 auto 20px;
}

.progression-step.highlight .step-number {
    background: var(--accent-color);
    font-size: 1.5em;
}

.progression-step h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom:  15px;
}

.progression-step.highlight h3 {
    color: var(--accent-color);
}

.progression-step p {
    color: var(--text-gray);
    margin-bottom: 8px;
}

.progression-step strong {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5em;
    }

    .features-detailed-grid,
    .enemy-grid,
    .powerup-grid,
    .upgrade-categories,
    .progression-timeline {
        grid-template-columns: 1fr;
    }
}

/* Download Page Styles */
.download-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.download-hero-content {
    text-align: center;
    max-width: 900px;
}

.download-icon {
    font-size: 8em;
    margin-bottom: 30px;
    animation: phone-ring 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.download-main-button {
    margin:  40px 0;
}

.btn-download-primary {
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-download-primary:hover {
    transform: scale(1.05);
}

.play-store-badge {
    height: 80px;
    width: auto;
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-stat {
    background: rgba(0, 255, 255, 0.1);
    border:  2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-stat:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.download-stat .stat-icon {
    font-size: 2.5em;
}

.download-stat .stat-info {
    text-align: center;
}

.download-stat .stat-number {
    font-size: 1.8em;
    font-weight:  bold;
    color: var(--accent-color);
}

.download-stat .stat-label {
    font-size: 0.9em;
    color: var(--text-gray);
}

/* Requirements Section */
.requirements-section {
    padding: 80px 20px;
    background: rgba(26, 0, 51, 0.5);
}

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

.requirement-card {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align:  center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.requirement-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.requirement-card h3 {
    color:  var(--primary-color);
    font-size: 1.3em;
    margin-bottom:  15px;
}

.requirement-value {
    color: var(--text-light);
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 8px;
}

.requirement-note {
    color: var(--text-gray);
    font-size: 0.95em;
}

.compatibility-note {
    margin-top: 40px;
    background: rgba(0, 204, 136, 0.1);
    border: 2px solid var(--success-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1em;
}

/* Installation Steps */
.installation-section {
    padding: 80px 20px;
}

.installation-steps {
    max-width: 800px;
    margin: 40px auto 0;
}

.install-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(51, 0, 102, 0.8));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.install-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight:  bold;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom:  10px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 1.1em;
    line-height: 1.6;
}

/* App Info Section */
.app-info-section {
    padding: 80px 20px;
    background: rgba(26, 0, 51, 0.5);
}

.app-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom:  20px;
}

.info-box ul {
    list-style: none;
    margin-left: 0;
}

.info-box li {
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    font-size: 1.05em;
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box strong {
    color: var(--text-light);
}

/* Quick FAQ */
.quick-faq-section {
    padding: 80px 20px;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.faq-item h3 {
    color:  var(--primary-color);
    font-size: 1.4em;
    margin-bottom:  15px;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 1.05em;
    line-height:  1.6;
}

.more-questions {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
}

.more-questions a {
    color:  var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.more-questions a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Devices Section */
.devices-section {
    padding: 80px 20px;
    background: rgba(26, 0, 51, 0.5);
}

.devices-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.device-category {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
}

.device-category h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom:  20px;
    text-align: center;
}

.device-category ul {
    list-style: none;
    margin-left: 0;
}

.device-category li {
    color: var(--text-gray);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    font-size: 1.05em;
}

.device-category li:last-child {
    border-bottom: none;
}

.compatibility-disclaimer {
    margin-top: 40px;
    background: rgba(255, 170, 0, 0.1);
    border: 2px solid var(--warning-color);
    border-radius: 10px;
    padding: 25px;
    color: var(--text-light);
}

.compatibility-disclaimer strong {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .download-icon {
        font-size: 5em;
    }

    .play-store-badge {
        height: 60px;
    }

    .download-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .requirements-grid,
    .app-info-grid,
    .faq-grid,
    .devices-showcase {
        grid-template-columns: 1fr;
    }

    .install-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .install-step:hover {
        transform: translateY(-5px);
    }
}

/* Support Page Styles */
.support-hero {
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.hero-icon {
    font-size: 6em;
    margin-bottom: 20px;
    animation: light-pulse 2s infinite;
}

@keyframes light-pulse {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.8)); }
    50% { opacity: 0.7; filter: drop-shadow(0 0 30px rgba(255, 255, 0, 0.6)); }
}

.ticket-section {
    padding: 80px 20px;
}

.ticket-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2em;
    color: var(--text-gray);
}

.support-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(51, 0, 102, 0.9));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 5px;
    display: block;
}

input, select, textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 10px var(--primary-color);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Privacy Policy Styles */
.privacy-hero {
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.hero-icon {
    font-size: 6em;
    margin-bottom: 20px;
    animation: light-pulse 2s infinite;
}

.privacy-content {
    padding: 50px 20px;
}

.highlight-box, .important-box, .admob-note {
    margin: 25px 0;
    padding: 20px 25px;
    border-radius: 10px;
    background: rgba(26, 0, 51, 0.9);
    border: 2px solid var(--primary-color);
}

.admob-note {
    background: rgba(102, 51, 255, 0.2);
    border: 2px solid var(--secondary-color);
}

.privacy-permissions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    text-align: left;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.5), rgba(51, 0, 102, 0.5));
}

.privacy-permissions-table th, .privacy-permissions-table td {
    padding: 12px 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.privacy-permissions-table th {
    background: rgba(26, 0, 51, 0.8);
    color: var(--primary-color);
    text-transform: uppercase;
}

.list-checkmark, .list-bullet {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.list-checkmark li::before {
    content: "✅";
    margin-right: 10px;
    color: var(--success-color);
}

.list-bullet li::before {
    content: "📍";
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-email {
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-email a:hover {
    text-shadow: 0 0 10px var(--secondary-color);
}

@media (max-width: 768px) {
    .privacy-permissions-table th, .privacy-permissions-table td {
        padding: 10px;
    }

    .contact-email {
        font-size: 1em;
    }
}