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

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    height: 100vh;
    overflow: hidden;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: #ffffff;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex: 0.7;
}

.landing-logo {
    max-width: 90vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.enter-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10vh;
    flex: 0.3;
}

.enter-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enter-button:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.05);
}

.enter-button:active {
    transform: scale(0.95);
}

.enter-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .landing-logo {
        max-width: 90vw;
        max-height: 40vh;
    }
    
    .enter-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .enter-button-container {
        padding-bottom: 15vh;
    }
}

@media (max-width: 480px) {
    .landing-logo {
        max-width: 95vw;
        max-height: 35vh;
    }
    
    .enter-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    .enter-button-container {
        padding-bottom: 20vh;
    }
}

