/* General Styles */
:root {
    --primary-color: #ff4757;
    --secondary-color: #2f3542;
    --accent-color: #1e90ff;
    --text-color: #ffffff;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.95);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.download-btn-nav {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.download-btn-nav:hover {
    background-color: #ff6b81;
    color: white !important;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff4757, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slogan {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ced4da;
}

.description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #adb5bd;
    max-width: 600px;
}

.download-buttons {
    display: flex;
    gap: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.btn-android {
    background-color: #388e3c;
    color: white;
}

.btn-ios {
    background-color: #ffffff;
    color: #000000;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 40px;
    padding: 15px;
    border: 8px solid #444;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
}

.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto;
    border-radius: 2px;
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: #adb5bd;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot-gallery img {
    width: 220px;
    border-radius: 15px;
    border: 3px solid #333;
    transition: 0.3s;
}

.screenshot-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://via.placeholder.com/1920x600?text=Arcade+Background');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.download-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.download-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ced4da;
}

.download-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.qr-code {
    background: white;
    padding: 20px;
    border-radius: 10px;
    color: #333;
}

.qr-code img {
    margin-bottom: 10px;
}

.direct-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-dark {
    background-color: #000;
    color: white;
    border: 1px solid #333;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-info p {
    color: #6c757d;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #6c757d;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .download-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .download-options {
        flex-direction: column;
        gap: 40px;
    }
}
