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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0E0817; /* New background color */
    color: white;
    overflow-x: hidden;
}

.site-header {
    padding: 10px 0;
    background: rgba(0,0,0,0.2);
}

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

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
.header-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.site-name {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

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

.hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.manifesto {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.manifesto h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
    text-align: center;
}

.manifesto p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
}

.solutions {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.solutions h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4ecdc4;
    text-align: center;
}

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

.solution-item {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,107,107,0.4);
}

.cta-button.for-her {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.cta-button.for-him {
    background: linear-gradient(45deg, #4ecdc4, #5fded7);
    box-shadow: 0 10px 20px rgba(78,205,196,0.3);
}

.cta-button.for-him:hover {
    box-shadow: 0 15px 30px rgba(78,205,196,0.4);
}

.app-preview {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.app-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.app-preview-image img {
    max-width: 100%;
    border-radius: 15px;
}

.app-preview-text h3 {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.app-preview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .app-preview-grid {
        grid-template-columns: 1fr;
    }
}

.modal-content .checklist {
    text-align: left;
}

.modal-content .checklist-item {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    margin-bottom: 1rem;
}

.modal-content h2[style*="#4ecdc4"] + p + .checklist .checklist-item {
    border-left-color: #4ecdc4;
}

.hero .cta-buttons {
    margin-top: 2rem;
}