.entry-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.entry-title {
    font-size: 3.5rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.entry-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.enter-button {
    background: white;
    color: var(--primary-rose);
    border: none;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(231, 90, 124, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.enter-button:hover::before {
    width: 300px;
    height: 300px;
}

.enter-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.enter-button:active {
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .entry-title {
        font-size: 2.5rem;
    }

    .entry-subtitle {
        font-size: 1.2rem;
    }

    .enter-button {
        padding: 15px 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 2rem;
    }

    .entry-subtitle {
        font-size: 1rem;
    }

    .enter-button {
        padding: 12px 35px;
        font-size: 1rem;
    }
}
