/* Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-container {
    width: 100%;
    max-width: 800px;
    padding: 40px;
}

.content {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-main {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    margin: 40px 0;
}

.description > p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: rgba(42, 42, 42, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(42, 42, 42, 0.8);
}

.feature .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature p {
    font-size: 0.95em;
    color: #a0a0a0;
    line-height: 1.4;
}

.launch-button {
    background: linear-gradient(135deg, #2a4a2a 0%, #3a5a3a 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(42, 74, 42, 0.3);
    margin: 30px 0;
}

.launch-button:hover {
    background: linear-gradient(135deg, #3a5a3a 0%, #4a6a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(42, 74, 42, 0.4);
}

.launch-button:active {
    transform: translateY(0);
}

.note {
    margin-top: 20px;
    font-size: 0.9em;
    color: #808080;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        padding: 20px;
    }
    
    .content {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}