
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
    padding-top: 2rem;
}


.container {
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 2;
    background: transparent;
    margin: 2rem auto;
    height: auto;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f3460;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: -1;
    min-height: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.85;
    position: relative;
    z-index: 10;
}


.heart {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
    color: #ff4d88;
    position: relative;
    z-index: 10;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.lang-btn {
    text-decoration: none;
    background: #ff4d88;
    color: #fff;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.lang-btn span {
    margin-right: 8px;
}

.flag-img {
    height: 20px;
    width: 30px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 4px;
}

.lang-btn:hover {
    background: #ff6b9d;
    transform: scale(1.05);
}

.footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 10;
}

.floating-heart {
    position: fixed;
    top: -20px;
    font-size: 1.25rem;
    opacity: 0.6;
    animation: floatDown 6s linear forwards;
    z-index: 1;
    pointer-events: none;
}


@keyframes floatDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(120vh);
        opacity: 1;
    }
}

.easter-egg-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4d88;
    color: #fff;
    padding: 2rem 3rem;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 20px 60px rgba(255, 77, 136, 0.4);
    animation: popUp 0.5s ease forwards;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.easter-egg-message p {
    margin: 0;
}

.easter-egg-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@keyframes popUp {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}


.card {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    line-height: 1.0;
    margin-bottom: 1rem;
}

.card ul {
    text-align: left;
    display: inline-block;
}

.card li {
    margin-bottom: 0.8rem;
}

.bottom-right-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


