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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
    z-index: 100;
}

.lang-btn {
    background: white;
    border: 2px solid transparent;
    border-radius: 6px;
    width: 50px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #d4938f;
}

.lang-btn.active {
    border-color: #c17c78;
    background-color: #fff5f5;
}

/* Container */
.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Heart Icon */
.heart-icon {
    font-size: 80px;
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, #d4938f 0%, #c17c78 100%);
    width: 100%;
    padding: 60px 40px;
    margin-bottom: 60px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 900;
    color: #000;
    letter-spacing: -2px;
    text-transform: lowercase;
}

/* Content Section */
.content-section {
    margin-bottom: 80px;
    padding: 0 20px;
}

.welcome-text {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #d4938f 0%, #c17c78 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 124, 120, 0.3);
    text-transform: capitalize;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(193, 124, 120, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Secret Section */
.secret-section {
    background: linear-gradient(135deg, #d4938f 0%, #c17c78 100%);
    width: 100%;
    padding: 80px 40px;
    margin-top: auto;
}

.secret-text {
    font-size: clamp(18px, 3.5vw, 24px);
    color: #2d2d2d;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
}

/* GDPR Modal */
.gdpr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in;
}

.gdpr-modal.show {
    display: flex;
}

.gdpr-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gdpr-content h3 {
    font-size: 24px;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.gdpr-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gdpr-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.gdpr-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.gdpr-accept {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.gdpr-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.gdpr-decline {
    background: #f5f5f5;
    color: #555;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gdpr-decline:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .container {
        padding: 20px 0;
        max-width: 100%;
    }
    
    .heart-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .language-selector {
        max-width: 100%;
        gap: 8px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .lang-btn {
        width: 45px;
        height: 32px;
    }
    
    .logo-section {
        padding: 40px 15px;
        margin-bottom: 30px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .content-section {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
        width: calc(100% - 30px);
        max-width: 300px;
    }
    
    .secret-section {
        padding: 50px 15px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .gdpr-content {
        padding: 30px 20px;
    }
    
    .gdpr-content h3 {
        font-size: 20px;
    }
    
    .gdpr-buttons {
        flex-direction: column;
    }
    
    .gdpr-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .heart-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .language-selector {
        gap: 6px;
        padding: 0 5px;
    }
    
    .lang-btn {
        width: 40px;
        height: 28px;
    }
    
    .logo-section {
        padding: 30px 10px;
    }
    
    .content-section {
        padding: 0 10px;
    }
    
    .secret-section {
        padding: 40px 10px;
    }
    
    .gdpr-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
}

/* Smooth transitions for language changes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
