:root {
    --primary: #d4af37;
    --secondary: #000;
    --accent: #25D366;
    --text: #fff;
    --bg-dark: #111;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--secondary);
    color: var(--primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--primary);
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--text);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/logos/bg-pattern.png');
    background-size: cover;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Sections */
.section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto;
}

/* Cards Grid */
.coins-grid, .payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.coin-card, .payment-card {
    background-color: var(--bg-dark);
    padding: 25px 15px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.coin-card:hover, .payment-card:hover {
    transform: translateY(-5px);
}

.coin-card img, .payment-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content h2 {
    color: var(--primary);
    margin-top: 30px;
}

.about-content ul {
    padding-left: 20px;
}

/* Contact Page */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.agents-list {
    max-width: 600px;
    margin: 0 auto;
}

.agent {
    background-color: var(--bg-dark);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.whatsapp-link {
    color: var(--accent);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 15px;
    width: 200px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-options.active {
    display: block;
    animation: fadeIn 0.3s;
}

.agent-option {
    margin-bottom: 10px;
}

.agent-option:last-child {
    margin-bottom: 0;
}

.agent-option a {
    color: var(--accent);
    text-decoration: none;
    display: block;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.agent-option a:hover {
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-toggle {
    background: var(--accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--secondary);
        padding: 20px;
        border-bottom: 1px solid var(--primary);
        display: none;
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}