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

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #7CFB00 0%, #E4E4E4 50%, #F7F7F7 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-wrapper {
    display: inline-block;
    background: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 80px;
    height: 80px;
    display: block;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    font-stretch: expanded;
    color: #2E7D32;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #4A7C59;
    margin-bottom: 50px;
    font-weight: 600;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    display: block;
    width: 280px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #4A5568;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 480px) {
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .btn {
        width: 260px;
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-wrapper {
        padding: 20px;
        border-radius: 20px;
    }
} 