* {
    scroll-behavior: smooth;
}
body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.logo h1 {
    color: #00ff7f;
    margin: 0;
}

.logo p {
    margin: 5px 0;
    font-size: 14px;
    color: #aaa;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.rating .verified {
    color: #00ff7f;
}

.promo {
    text-align: center;
    margin: 20px;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.promo h2 {
    color: #00ff7f;
}

.call-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #00ff7f;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #00cc66;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.tabs a {
    color: #00ff7f;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tabs a:hover {
    background-color: #1e1e1e;
}

.contacts {
    text-align: center;
    margin: 20px;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contacts .status {
    color: #00ff7f;
}

.show-entry {
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #00ff7f;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.show-entry:hover {
    background-color: #00cc66;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px;
    padding: 10px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.whatsapp {
    background: #25D366;
}

.email {
    background: #EA4335;
}

.social-btn i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 10px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn {
        text-align: center;
        justify-content: center;
    }
}
