/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
header {
    background: #000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #fff;
}

.spaced-para {
    margin-bottom: 1rem;
}

/* Hero section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 900;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.store-buttons {
    margin-top: 2rem;
}

.store-buttons a {
    display: inline-block;
    /*padding: 0.8rem 1.5rem;*/
    margin: 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    /*background: #333;*/
    transition: background 0.3s ease;
}

/* Features section */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    border-radius: 8px;
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

footer a {
    color: #fff;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Logo styles */
.logo img {
    margin-top: 12px;
    height: 52px;
    width: auto;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

/* Store buttons */
.store-buttons {
    margin-top: 2rem;
}

.store-buttons img {
    height: 60px;
    width: auto;
    display: block;
}

.store-buttons a {
    display: inline-block;
    margin: 0.5rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.store-buttons a.disabled {
    cursor: default;
    /*cursor: not-allowed;*/
}

.play-store-button {
    opacity: 1;
    cursor: pointer;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

/* Content styles for policy pages */
.content {
    line-height: 1.8;
}

.content section {
    margin: 2rem 0;
}

.content h2 {
    margin: 1.5rem 0 1rem;
    color: #444;
}

.content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content ul li {
    margin: 0.5rem 0;
}

.content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content ol li {
    margin: 0.5rem 0;
}

.content p {
    margin: 1rem 0;
} 

.xhero-title {
    background: linear-gradient(180deg, #bfff00 -20%, #6d9100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
} 
.hero-title {
    /*color: #85b100;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);*/
    color: #000;
    text-shadow: 10px 10px 20px rgba(255, 255, 255, 0.8);
}