/* Base Styles */
:root {
    --primary-color: #111111;
    --secondary-color: #222222;
    --accent-color: #ffffff;
    --text-color: #f5f5f5;
    --light-bg: #1a1a1a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--primary-color);
}

/* Main Layout */
.main-content {
    display: flex;
    min-height: 60vh;
    background-color: transparent;
    position: relative;
    margin: 0;
    padding-top: 2rem;
    justify-content: center;
    align-items: center;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

.left-column, .right-column {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    box-sizing: border-box;
}

.left-column {
    padding-left: 3rem;
    text-align: left;
}

.right-column {
    padding-right: 3rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.main-content {
    align-items: center;
}

/* Navigation Styles */
.main-nav {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 65px;
    width: auto;
}

.brand-text {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.brand-text h1 {
    margin: 0;
    font-size: 1.8rem;
}

.brand-text p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.brand-text:hover {
    text-decoration: none;
    color: inherit;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    text-align: left;
    background-color: transparent;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #FC466B, #3F5EFB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Remove duplicate right-column styles */

/* Features Section */
.features {
    padding: 0;
}

.features h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
}

.features p {
    color: rgba(255,255,255,0.8);
    margin: 0 0 1rem 0;
}

.features h3:first-child {
    margin-top: 0;
}

/* Screenshots Section */
.screenshots {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-bg);
}


.button-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 2rem 0 0 0;
    flex-wrap: wrap;
}

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

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

.app-store-button img {
    height: 60px;
    width: auto;
}

.app-store-button:first-child img {
    width: 180px;
    height: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    margin-top: auto;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Content Sections */
.content-section {
    padding: 2rem 3rem;
}

/* Content Links */
a {
    color: #4da6ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #66b3ff;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .right-column {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1rem;
    }
    
    .left-column, .right-column {
        padding: 1.5rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
