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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #07C55B 0%, #05A347 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

h1 {
    color: #07C55B;
    margin-bottom: 15px;
    font-size: 28px;
}

.socialees-text {
    color: #07C55B;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.small {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #07C55B;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.app-button {
    background: #07C55B;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #07C55B;
    display: block;
    text-align: center;
}

.app-button:hover {
    background: white;
    color: #07C55B;
    text-decoration: none;
}

.download-button {
    background: white;
    color: #07C55B;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #07C55B;
    display: block;
    text-align: center;
}

.download-button:hover {
    background: #07C55B;
    color: white;
    text-decoration: none;
}

@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .socialees-text {
        font-size: 28px;
    }
}