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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
}

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

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #4E342E 0%, #3E2723 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: #BF953F;
    font-weight: 300;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 60px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FCF6BA;
}

.hero p {
    font-size: 1.2rem;
    color: #d4c5b9;
    max-width: 600px;
    margin: 0 auto;
}

.download-section {
    text-align: center;
    background: rgba(78, 52, 46, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(191, 149, 63, 0.2);
}

.download-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #BF953F;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.store-button svg {
    width: 32px;
    height: 32px;
}

.store-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-button .small {
    font-size: 0.75rem;
    font-weight: 400;
}

.store-button .large {
    font-size: 1.2rem;
    font-weight: 600;
}

.ios-button {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.ios-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.android-button {
    background: #01875F;
    color: white;
}

.android-button:hover {
    background: #019968;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(1, 135, 95, 0.5);
}

.web-button {
    background: linear-gradient(135deg, #4E342E 0%, #3E2723 100%);
    color: #FCF6BA;
    border: 1px solid rgba(191, 149, 63, 0.5);
}

.web-button:hover {
    background: linear-gradient(135deg, #5D4037 0%, #4E342E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(191, 149, 63, 0.3);
    border-color: #BF953F;
}

.coming-soon {
    color: #BF953F;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 10px;
}

.features h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #BF953F;
}

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

.feature {
    background: rgba(78, 52, 46, 0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(191, 149, 63, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(191, 149, 63, 0.5);
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #FCF6BA;
}

.feature p {
    color: #d4c5b9;
    font-size: 0.95rem;
}

.about {
    background: rgba(78, 52, 46, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(191, 149, 63, 0.2);
}

.about h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #BF953F;
}

.about p {
    max-width: 800px;
    margin: 15px auto;
    text-align: center;
    color: #d4c5b9;
    font-size: 1.1rem;
}

.support {
    padding: 40px;
    border-radius: 20px;
    background: rgba(78, 52, 46, 0.3);
    border: 1px solid rgba(191, 149, 63, 0.2);
}

.support h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #BF953F;
}

.support > p {
    text-align: center;
    color: #d4c5b9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.support-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(191, 149, 63, 0.15);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.support-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #FCF6BA;
}

.support-item p {
    color: #d4c5b9;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.support-link {
    color: #BF953F;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(191, 149, 63, 0.4);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #FCF6BA;
    border-color: #FCF6BA;
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(191, 149, 63, 0.2);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #BF953F;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    margin: 0 15px;
    color: #6d5d52;
}

.copyright {
    color: #8d7d72;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer {
    color: #6d5d52;
    font-size: 0.85rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .logo-section h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 280px;
    }

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