:root {
    /* Mapping old variables to monochrome for compatibility with inline styles */
    --gold-1: #ffffff;
    /* Primary White */
    --gold-2: #cccccc;
    /* Light Gray */
    --gold-3: #333333;
    /* Dark Gray Border */
    --blue-1: #ffffff;
    /* Accent White */
    --blue-2: #000000;
    /* Primary Black */

    /* New Theme Variables */
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #eeeeee;
    --text-muted: #888888;
    --card-bg: #111111;
    --card-border: #333333;
    --accent: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: none;
    /* Remove uppercase force */
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.2rem;
    border-bottom: none;
    display: block;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Components */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--text-primary);
}

/* Layout */
header {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
}

/* Sections */
section {
    padding: 6rem 0;
    scroll-margin-top: 150px;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-preview {
    flex: 1;
    max-width: 400px;
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    border-radius: 40px;
    border: 6px solid #222;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.screenshot-item {
    width: 280px;
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    border-radius: 24px;
    border: 5px solid #222;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.screenshot-item img:hover {
    transform: translateY(-10px);
}

.screenshot-item p {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Custom overwrites for inline styles in HTML */
.hero-text div[style*="border-top"] {
    border-color: var(--card-border) !important;
}

.hero-text ul {
    color: var(--text-secondary);
}

.hero-text ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-muted);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.disclaimer-section {
    padding: 3rem 0;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 800px;
    text-align: left;
}

footer {
    padding: 2rem 0;
    border-top: 1px solid var(--card-border);
    background: var(--bg-color);
}

.contact-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Privacy Page */
.privacy-container {
    max-width: 800px;
    margin: 40px auto;
}

.privacy-content h3 {
    color: var(--text-primary);
    margin-top: 3rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    nav ul {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .app-preview {
        width: 100%;
        margin-top: 30px;
    }
}