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

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    height: 100vh;
    width: 100vw;
    background-color: white;
    background-image: url('images/bg.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.logo {
    height: 60px;
    width: auto;
}

.main-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.glass-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    z-index: -1;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.glass-container .title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.glass-container .subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.app-button {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.button-image {
    height: 50px;
    width: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.app-button:hover .button-image {
    filter: brightness(1.1);
}

.footer-link {
    margin-top: 30px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.footer-link p {
    font-size: 0.9rem;
    color: rgba(64, 64, 64, 0.8);
    margin: 0;
}

.footer-link a {
    color: rgba(48, 48, 48, 0.9);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-link a:hover {
    color: #333;
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .glass-container {
        margin: 20px;
        padding: 30px 20px;
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .glass-container::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 25px;
    }
    
    .glass-container .title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .glass-container .subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .button-image {
        height: 55px;
    }
    
    .header {
        top: 15px;
        left: 15px;
    }
    
    .logo {
        height: 45px;
    }
    
    .footer-link {
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .footer-link p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .glass-container {
        margin: 15px;
        padding: 25px 15px;
        width: calc(100% - 30px);
    }
    
    .glass-container .title {
        font-size: 1.8rem;
    }
    
    .glass-container .subtitle {
        font-size: 0.9rem;
    }
    
    .button-image {
        height: 50px;
    }
    
    .header {
        top: 10px;
        left: 10px;
    }
    
    .logo {
        height: 40px;
    }
}