/* Tazzo Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFB703;
    color: #2D3436;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.lang-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
}

.lang-btn.active {
    background: #2D3436;
    color: white;
    border-color: #2D3436;
}

.lang-btn.active:hover {
    background: #1a1d1e;
    border-color: #1a1d1e;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.content {
    flex: 1;
    width: 100%;
    max-width: 800px;
}

.intro {
    text-align: center;
    margin-bottom: 60px;
}

.description {
    font-size: 20px;
    font-weight: 500;
    color: #2D3436;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: #2D3436;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2D3436;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
    color: #2D3436;
}

.download {
    text-align: center;
    margin-bottom: 60px;
}

.download h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2D3436;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: #2D3436;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    background: #636E72;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn span {
    font-size: 28px;
}

.download-btn small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.download-btn strong {
    display: block;
    font-size: 16px;
}

.footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(45, 52, 54, 0.2);
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.disclaimer {
    background: rgba(231, 76, 60, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.disclaimer p:first-child {
    font-size: 18px;
    color: #E74C3C;
    margin-bottom: 5px;
}

.disclaimer p:last-child {
    font-size: 14px;
    color: #2D3436;
}

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:nth-child(1) {
    background: #E4405F;
    color: white;
}

.social-btn:nth-child(2) {
    background: #000000;
    color: white;
}

.social-btn:nth-child(3) {
    background: #1DA1F2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
    color: #2D3436;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .header {
        margin: 40px 0 30px;
    }
    
    .language-switcher {
        position: static;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .download h2 {
        font-size: 28px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .social {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        text-align: center;
    }
}

/* Support Section */
.support-section {
    margin-top: 40px;
    text-align: center;
}

.support-section p {
    font-size: 16px;
    color: #2D3436;
    margin-bottom: 20px;
}

.donate-link {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.donate-link:hover {
    background: linear-gradient(135deg, #C0392B, #A93226);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

@media (max-width: 480px) {
    .description {
        font-size: 18px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .download h2 {
        font-size: 24px;
    }
    
    .donate-link {
        padding: 12px 25px;
        font-size: 14px;
    }
}