@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --gold: #C5A059;
  --gold-light: #e0bc7a;
  --midnight: #0a0a0a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--midnight);
    color: #f5f5f7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.btn-gold {
    background: linear-gradient(135deg, #C5A059 0%, #a88540 100%);
    color: #0a0a0a;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    filter: brightness(1.1);
}

.section-padding {
    padding: 120px 24px;
}

/* Custom Table Styles */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.comparison-table tr {
    transition: all 0.3s ease;
}

.comparison-table td, .comparison-table th {
    padding: 20px;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Scroll Indicators */
.scroll-indicator {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 20px auto;
}

/* Trust Bar Animation */
.partners-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}
