* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Home page layout */
.home-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.app-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.app-title {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.centered-image {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

/* Download buttons */
.download-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 7px;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.download-btn {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-store-badge {
    height: 60px;
    width: 180px;
    display: block;
    object-fit: contain;
}

.play-store-badge {
    height: 95px;
    width: 220px;
    display: block;
    object-fit: contain;
}

/* Policy pages layout */
.policy-content {
    flex: 1;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.header {
    background-color: #111111;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333333;
}

.header a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.footer {
    background-color: #111111;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #cccccc;
}

.footer-links {
    margin-bottom: 10px;
}

.copyright {
    color: #888888;
    font-size: 0.9em;
}

/* Typography for policy pages */
h1 {
    margin-bottom: 30px;
    color: #ffffff;
}

h2 {
    margin: 25px 0 15px 0;
    color: #cccccc;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 0.9em;
    text-align: center;
}

/* Email link styling */
a[href^="mailto:"] {
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: #6bb3ff;
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .app-icon {
        width: 80px;
        height: 80px;
    }
    
    .app-title {
        font-size: 1.8em;
    }
    
    .centered-image {
        max-height: 40vh;
    }
    
    .download-buttons {
        gap: 10px;
        margin: 15px 0;
    }
    
    .download-btn {
        width: 160px;
    }
    
    .app-store-badge {
        height: 50px;
        width: 150px;
    }
    
    .play-store-badge {
        height: 62px;
        width: 175px;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .header {
        padding: 15px;
    }
    
    .header a {
        font-size: 1em;
    }
    
    .footer {
        padding: 15px;
    }
    
    .footer a {
        margin: 0 10px;
        font-size: 0.9em;
    }
    
    h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 1.3em;
        margin: 20px 0 10px 0;
    }
    
    p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-title {
        font-size: 1.5em;
    }
    
    .centered-image {
        max-height: 35vh;
    }
    
    .download-buttons {
        gap: 8px;
        margin: 12px 0;
    }
    
    .download-btn {
        width: 140px;
    }
    
    .app-store-badge {
        height: 45px;
        width: 135px;
    }
    
    .play-store-badge {
        height: 70px;
        width: 160px;
    }
    
    .policy-content {
        padding: 15px 10px;
    }
    
    .hero-section {
        gap: 15px;
    }
    
    .home-content {
        padding: 15px;
    }
} 