/* Font Face - Bebas Neue */
@font-face {
    font-family: 'Bebas Neue';
    src: url('BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* App Color Scheme */
    --bg-dark: #111923;
    --bg-darker: #05090F;
    --bg-card: #1D212A;
    --bg-card-alt: #28353E;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.15);
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Accent Colors */
    --green: #0EA743;
    --yellow: #F5C542;
    --red: #E94F37;
    --teal: #6DB19C;
    --orange: #ED6E30;
    --blue-gray: #81A1BA;
    
    /* Primary action color */
    --primary-color: var(--green);
    --primary-hover: #0d8f38;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand img {
    width: 32px;
    height: 32px;
}

.nav-brand h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--text-white);
    font-weight: normal;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 5rem 0;
    text-align: center;
}

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

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 167, 67, 0.4);
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--text-white);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

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

.feature-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: var(--border-color);
}

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

.feature-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.disclaimer-box {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border-left: 4px solid var(--yellow);
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.disclaimer-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.disclaimer-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Content Pages */
.content-page {
    padding: 3rem 0;
    min-height: calc(100vh - 300px);
}

.content-page {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.content-page h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    font-weight: normal;
    letter-spacing: 0.02em;
}

.content-page h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.content-page h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.content-page h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.content-page ul, .content-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.content-page strong {
    color: var(--text-white);
    font-weight: 600;
}

.content-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-page a:hover {
    text-decoration: underline;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
}

/* Support Page */
.support-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .content-page h1 {
        font-size: 2rem;
    }

    .content-page h2 {
        font-size: 1.5rem;
    }
}

