/* Landing page styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    min-height: 100vh;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
    color: rgb(245, 250, 250);
    border-radius: 8px;
    margin-top: 0rem;
    margin-bottom: 0rem;
    /*background-image: url('/static/images/liberation_invasion.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    position: relative;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    /*font-family: 'Courier New', Courier, monospace;*/
    font-size: 1.8rem;
    margin: 0 0 0 0;
    font-weight: 200;
    /*text-shadow: 2px 2px 4px rgba(0,0,0,0.8);*/
}

.hero p {
    font-size: 1.3rem;
    font-weight: 200;
    margin: 0 0 3rem 0;
    opacity: 0.95;
    /*text-shadow: 1px 1px 2px rgba(0,0,0,0.8);*/
    
}
.cta-buttons {
    display: flex;
    margin-top: 5rem;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button.primary {
    /*background: rgba(255,255,255,0.2);*/
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: rgba(0,0,0, 0.5);
    
    /*font-family:'Courier New', Courier, monospace;*/
    border: 2px solid white;
    max-width: 60%;
}

.cta-button.secondary {
    /*background: rgba(255,255,255,0.2);*/
    background: rgba(0,0,0, 0.5);
    color: white;
    /*font-family:'Courier New', Courier, monospace;*/
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: rgba(0,0,0, 0.5);
    color: white;
}

.features {
    background: black;
    padding: 1rem 1rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 1rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin: 0 0 1rem 0;
    color: #667eea;
}

.feature p {
    color: #666;
    line-height: 1.6;
}
.landing-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem; /* Adjust gap as needed */
}