/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #0a0a0a;
    color: #ffffff;
}

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

/* Header styles */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00ff88;
}

/* Main content styles */
main {
    padding-top: 80px;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/static/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #00ff88;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.section-container {
    padding: 4rem 0;
}

.section-container h2 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer styles */
footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: #00ff88;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.screenshot img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.screenshot:hover img {
    transform: scale(1.05);
}

.screenshot p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    margin: 0;
}

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

.gameplay-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.gameplay-feature h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.gameplay-feature ul {
    list-style: none;
    padding: 0;
}

.gameplay-feature ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.gameplay-feature ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ff88;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.review-rating {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #00ff88;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.dark-bg {
    background: rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #00ff88;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #00ff88;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #00ff88;
    color: #000000;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
}

.tip-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    color: #e6e6e6;
}

.tip-card ul li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card ul li:before {
    content: "✔";
    color: #00ff88;
    position: absolute;
    left: 0;
}

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

.privacy-section {
    margin-bottom: 2rem;
}

.policy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-nav .center-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.policy-nav .center-menu li {
    margin: 0;
}

.policy-nav .center-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-nav .center-menu a:hover {
    color: #00ff88;
}

.policy-nav .placeholder {
    width: 50px; /* Adjust as needed to balance the logo */
}