/* Clean Modern Design for zodttd.com */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header Styles */
header {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 20px 0;
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

nav a:hover {
    color: var(--secondary-color);
    background: var(--bg-light);
}

nav a.policy-link {
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
}

nav a.policy-link:hover {
    background: #c0392b;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid #ddd;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    font-size: 18px;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-red {
    background: var(--accent-color);
}

.btn-red:hover {
    background: #c0392b;
}

/* Apps Grid */
.apps-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.apps-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.app-card {
    background: var(--bg-white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.app-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.app-card img {
    width: 140px;
    height: 140px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.app-card h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.app-card p {
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-card .btn {
    margin-top: auto;
}

/* Social Links */
.social-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid #ddd;
}

.social-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.reddit-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: #FF4500;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.reddit-btn:hover {
    background: #FF5722;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.4);
}

.reddit-btn:active {
    transform: translateY(-1px);
}

.reddit-icon {
    font-size: 1.8em;
    font-weight: bold;
}

.social-links a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s, opacity 0.3s;
}

.social-links a:hover img {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Product Page Styles */
.product-hero {
    background: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
}

.product-hero img {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.product-hero p {
    font-size: 1.5em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.hero-policy-notice {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.hero-policy-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.hero-policy-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.policy-icon {
    font-size: 1.3em;
}

.product-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.product-features {
    max-width: 800px;
    margin: 0 auto;
}

.product-features h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.product-features h3 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-features p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-features ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.product-features ul li {
    font-size: 1.2em;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.product-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3em;
}

.info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 5px solid var(--accent-color);
}

.info-box h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: var(--primary-color);
    margin-top: 0;
}

.info-box a {
    display: inline-block;
    margin: 10px 15px 10px 0;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.info-box a:hover {
    background: #2980b9;
}

.info-box a.policy-btn {
    background: var(--accent-color);
}

.info-box a.policy-btn:hover {
    background: #c0392b;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    opacity: 0.9;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .product-hero h1 {
        font-size: 2.5em;
    }

    .product-hero p {
        font-size: 1.2em;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
        margin-top: 15px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .apps-section h2 {
        font-size: 2em;
    }

    .product-features h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .apps-section {
        padding: 50px 20px;
    }

    .apps-section h2 {
        font-size: 1.8em;
    }

    .app-card {
        padding: 30px 20px;
    }
}
