/* Global Styles */
:root {
    --bg-color: #1C1C1E;
    --text-color: #FFFFFF;
    --accent-color: #0AF982;
    --secondary-bg: #2C2C2E;
    --text-muted: #8E8E93;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
    background: linear-gradient(135deg, #FFF 0%, #CCC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catchphrase {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.app-store-badge {
    display: inline-block;
    background-color: white;
    /* Placeholder for badge if needed, usually an image */
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 10px;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.feature-description {
    max-width: 600px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-color);
}

.feature-image img {
    max-width: 100%;
    width: 300px;
    /* Adjust based on screenshot aspect ratio */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* Terms & Privacy */
.legal-section {
    padding: 40px 20px;
    background-color: var(--secondary-bg);
    border-radius: 16px;
    margin: 40px 0;
}

.legal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--text-muted);
    padding-bottom: 10px;
}

.legal-content {
    font-size: 0.9rem;
    color: #D1D1D6;
    text-align: left;
}

.legal-content h3 {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #FFF;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--text-muted);
    margin: 0 10px;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (min-width: 768px) {
    .feature-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .feature-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-description {
        width: 45%;
        margin-bottom: 0;
        padding: 0 20px;
    }

    .feature-image {
        width: 45%;
        display: flex;
        justify-content: center;
    }
}

/* Comparison Table */
.comparison-section {
    padding: 60px 20px;
    background-color: var(--secondary-bg);
    text-align: center;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-color);
}

.comparison-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.comparison-table th {
    background-color: #222;
    color: var(--text-color);
    font-weight: 700;
}

.comparison-table th.premium-header {
    color: var(--accent-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--accent-color);
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--text-muted);
}

/* Dual Image Layout */
.feature-image.dual {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.feature-image.dual img {
    width: 48%;
    max-width: 200px;
}