/* Custom Styles for Panda Sports */
:root {
    --gold-light: #f1e5ac;
    --gold: #d4af37;
    --gold-dark: #aa8a2e;
    --black-light: #2a2a2a;
    --black-dark: #121212;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-dark);
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 50%, #aa8a2e 100%);
}

.gold-text-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 50%, #aa8a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.btn-gold {
    background: var(--gold);
    color: var(--black-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Page Transitions */
.page-section {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Corporate Dynamics Scroll */
.dynamics-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
}

.dynamic-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}
