/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; /* Dark background */
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background-color: #16213e;
    padding: 1rem 0;
    border-bottom: 2px solid #0f3460;
}

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

nav h1 {
    color: #e94560; /* Pink neon */
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 0 5px #e94560, 0 0 10px #e94560;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #00bcd4; /* Cyan neon */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e94560; /* Pink neon on hover */
    text-shadow: 0 0 5px #e94560;
}

main {
    padding: 20px 0;
}

section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #0f3460; /* Darker section background */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3); /* Cyan shadow */
}

h2, h3, h4 {
    color: #e94560; /* Pink neon */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #e94560;
}

p {
    color: #c0c0c0;
    text-align: justify;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #1a1a2e, #0f3460);
    text-align: center;
    padding: 100px 20px;
    border-radius: 0;
    box-shadow: none;
}

.hero-content h2 {
    font-size: 3rem;
    color: #00bcd4; /* Cyan neon */
    text-shadow: 0 0 10px #00bcd4, 0 0 20px #00bcd4;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #00bcd4); /* Pink to Cyan gradient */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.7);
}

/* App Cards (Homepage) */
.app-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.app-card {
    background-color: #16213e;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 0 10px rgba(147, 112, 219, 0.3); /* Purple shadow */
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.5);
}

.app-card h4 {
    color: #9370db; /* Purple neon */
    text-shadow: 0 0 5px #9370db;
}

.app-card .stars {
    color: #ffd700; /* Gold for stars */
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Rankings Page */
.app-listing .app-item {
    background-color: #16213e;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.2);
}

.app-listing .app-item h4 {
    color: #00bcd4; /* Cyan neon */
    text-align: left;
    text-shadow: 0 0 5px #00bcd4;
}

.app-listing .app-item .stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.app-listing .app-item p {
    margin-bottom: 10px;
}

.app-listing .app-item strong {
    color: #e94560; /* Pink neon */
}

/* How It Works Page */
.how-it-works h3 {
    color: #9370db; /* Purple neon */
    text-align: left;
    margin-top: 30px;
    text-shadow: 0 0 5px #9370db;
}

/* Footer */
footer {
    background-color: #16213e;
    color: #c0c0c0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 40px;
    border-top: 2px solid #0f3460;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .app-card {
        width: 90%;
    }
}
