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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(202, 80, 65, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #CA5041;
    text-transform: lowercase;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #CA5041;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2C2C2C;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    color: #2C2C2C;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #CA5041;
    text-transform: lowercase;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2C2C2C;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #6C757D;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: #CA5041;
    color: white;
    box-shadow: 0 8px 25px rgba(202, 80, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(202, 80, 65, 0.4);
    background: #B8473A;
}

.btn-secondary {
    background: transparent;
    color: #2C2C2C;
    border: 2px solid #2C2C2C;
}

.btn-secondary:hover {
    background: #2C2C2C;
    color: white;
    transform: translateY(-3px);
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder {
    width: 320px;
    height: 640px;
    background: #2C2C2C;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(202, 80, 65, 0.3);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(202, 80, 65, 0.1);
    padding: 18px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(202, 80, 65, 0.2);
}

.stat-circle {
    width: 45px;
    height: 45px;
    background: rgba(202, 80, 65, 0.3);
    border-radius: 50%;
}

.stat-text {
    color: #2C2C2C;
    font-weight: 600;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #FFFFFF;
}

.about h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #2C2C2C;
    font-weight: 700;
}

.about-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #6C757D;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #F8F9FA;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(202, 80, 65, 0.1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(202, 80, 65, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #CA5041;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #2C2C2C;
    font-weight: 600;
}

.feature-card p {
    color: #6C757D;
    line-height: 1.7;
    font-size: 1.05rem;
}

.community-highlight {
    text-align: center;
    padding: 4rem;
    background: #F8F9FA;
    border-radius: 25px;
    border: 1px solid rgba(202, 80, 65, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.community-highlight h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C2C2C;
    font-weight: 600;
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat-highlight {
    text-align: center;
    padding: 2rem;
    background: rgba(202, 80, 65, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(202, 80, 65, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #CA5041;
    margin-bottom: 0.8rem;
}

.stat-label {
    color: #6C757D;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    color: #2C2C2C;
    text-align: center;
}

.download h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.download p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    color: #6C757D;
}

.download-buttons {
    margin-bottom: 4rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-button {
    transition: transform 0.3s ease;
    display: inline-block;
}

.app-store-button:hover {
    transform: scale(1.08);
}

.pricing-info {
    margin-bottom: 3rem;
}

.pricing-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    font-weight: 600;
}

.pricing-info p {
    color: #6C757D;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-option {
    background: rgba(202, 80, 65, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(202, 80, 65, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #CA5041;
    margin-bottom: 0.5rem;
}

.coins {
    color: #6C757D;
    font-size: 1rem;
    font-weight: 500;
}

.system-requirements {
    opacity: 0.8;
    font-size: 1rem;
    color: #6C757D;
}

/* Footer */
footer {
    background: #2C2C2C;
    color: #FFFFFF;
    padding: 80px 0 30px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: #CA5041;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: #CA5041;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #404040;
    color: #B0B0B0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .mockup-placeholder {
        width: 280px;
        height: 560px;
    }

    .about h2, .download h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-highlight {
        grid-template-columns: 1fr;
    }

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

    .pricing-options {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 160px;
    }

    .mockup-placeholder {
        width: 240px;
        height: 480px;
    }

    .about h2, .download h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .community-highlight {
        padding: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .community-highlight {
    animation: fadeInUp 0.8s ease-out;
} 