/* Trading Reviews Page Styles */

:root {
    /* Primary Colors */
    --primary-purple: #9945ff;
    --primary-green: #14f195;
    --accent-teal: #00d4aa;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #9945ff 0%, #14f195 50%, #00d4aa 100%);
    --card-gradient: linear-gradient(135deg, rgba(153, 69, 255, 0.05) 0%, rgba(20, 241, 149, 0.05) 100%);
    --hero-gradient: linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, rgba(20, 241, 149, 0.1) 100%);
    
    /* Shadows */
    --primary-shadow: 0 10px 30px rgba(153, 69, 255, 0.2);
    --primary-shadow-hover: 0 15px 40px rgba(153, 69, 255, 0.3);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-padding: 0 3rem;
    --border-radius: 16px;
    --border-radius-small: 8px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(153, 69, 255, 0.3);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--card-shadow);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-brand:hover {
    color: var(--primary-purple);
}

.nav-brand i {
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link.cta-nav {
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-small);
    box-shadow: var(--primary-shadow);
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--primary-shadow-hover);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 3rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-gradient);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%239945ff" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.breadcrumb a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-purple);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(153, 69, 255, 0.1);
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Section */
.featured-section {
    padding: var(--section-padding);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(153, 69, 255, 0.2);
}

.review-card.featured {
    border-color: var(--primary-purple);
    background: var(--card-gradient);
}

.review-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.platform-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.platform-logo.small {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.axiom-logo {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.bullx-logo {
    background: var(--primary-gradient);
}

.platform-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.platform-tagline {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.platform-chains {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chain-badge {
    background: rgba(153, 69, 255, 0.1);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chain-badge.ethereum {
    background: rgba(96, 165, 250, 0.1);
    color: #3b82f6;
}

.review-rating {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.rating-score .score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
}

.rating-score .max {
    font-size: 1.2rem;
    color: #cccccc;
    margin-left: 0.25rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.rating-stars .far {
    color: #ddd;
}

.rating-stars .fa-star-half-alt {
    color: var(--primary-purple);
}

.rating-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.review-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(153, 69, 255, 0.05);
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-purple);
    width: 16px;
    text-align: center;
}

.review-summary {
    margin-bottom: 2rem;
}

.review-summary p {
    color: #cccccc;
    line-height: 1.6;
}

.review-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000000;
    font-weight: 700;
    text-shadow: none;
    box-shadow: var(--primary-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--primary-shadow-hover);
    color: #000000;
}

.btn-secondary {
    background: #1a1a1a;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: #2a2a2a;
    color: #cccccc;
    border-color: #444444;
}

.btn-tertiary:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large, .btn-tertiary.large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

/* Comparison Section */
.comparison-section {
    padding: var(--section-padding);
    background: #1a1a1a;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.comparison-table {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #444444;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--card-gradient);
    border-bottom: 2px solid rgba(153, 69, 255, 0.1);
}

.feature-column, .platform-column {
    padding: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.platform-column {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #444444;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: #ffffff;
    background: #1a1a1a;
}

.feature-value {
    padding: 1.25rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-value.axiom {
    background: rgba(30, 64, 175, 0.05);
    color: #1e40af;
}

.feature-value.bullx {
    background: rgba(153, 69, 255, 0.05);
    color: var(--primary-purple);
}

.feature-value i.fa-check {
    color: #22c55e;
}

.feature-value i.fa-times {
    color: #ef4444;
}

.feature-value i.fa-minus {
    color: #f59e0b;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
}

.cta-card {
    background: #1a1a1a;
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    border: 2px solid rgba(153, 69, 255, 0.3);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-card > p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-option {
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #444444;
    transition: var(--transition-smooth);
    position: relative;
    background: #1a1a1a;
}

.cta-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.cta-option.recommended {
    border-color: var(--primary-purple);
    background: var(--card-gradient);
}

.cta-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-option h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-option p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

.footer-brand p {
    color: #ccc;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-section {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-highlights {
        grid-template-columns: 1fr;
    }
    
    .review-actions {
        flex-direction: column;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .platform-column {
        border-bottom: 1px solid #444444;
    }
    
    .feature-name {
        background: #2a2a2a;
        border-bottom: 1px solid #444444;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
} 