/* BullX Review Page Styles */

:root {
    /* Solana-themed Colors for BullX */
    --bullx-primary: #9945ff;
    --bullx-secondary: #14f195;
    --bullx-accent: #00d4aa;
    --bullx-dark: #1a1a1a;
    --bullx-darker: #0d0d0d;
    
    /* Gradients */
    --bullx-gradient: linear-gradient(135deg, #9945ff 0%, #14f195 50%, #00d4aa 100%);
    --bullx-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --bullx-gradient-subtle: linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, rgba(20, 241, 149, 0.1) 100%);
    
    /* Shadows */
    --bullx-shadow: 0 10px 30px rgba(153, 69, 255, 0.2);
    --bullx-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(--bullx-primary);
}

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

.try-bullx-btn {
    background: var(--bullx-gradient);
    color: #000000;
    font-weight: 700;
    text-shadow: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--bullx-shadow);
}

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

/* 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(--bullx-gradient);
    opacity: 0.05;
    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.3"/></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(--bullx-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--bullx-secondary);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--bullx-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: #cccccc;
    font-size: 0.9rem;
}

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

.rating-preview {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(153, 69, 255, 0.3);
}

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

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

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

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

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

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

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

.rating-text {
    color: #cccccc;
    font-weight: 500;
}

/* Summary Section */
.summary-section {
    padding: var(--section-padding);
}

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

.summary-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.summary-card p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    font-weight: 500;
}

.highlight-item.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.highlight-item.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.highlight-item i {
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    padding: 0 3rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bullx-gradient);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.memecoin-badge {
    background: rgba(153, 69, 255, 0.1);
    color: var(--bullx-primary);
}

.chain-badge {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.early-badge {
    background: rgba(255, 193, 7, 0.1);
    color: #ff8f00;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bullx-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros-card, .cons-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.pros-card {
    border-left: 4px solid #22c55e;
}

.cons-card {
    border-left: 4px solid #ef4444;
}

.pros-card h3, .cons-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.pros-card h3 {
    color: #16a34a;
}

.cons-card h3 {
    color: #dc2626;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pros-list i {
    color: #22c55e;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.cons-list i {
    color: #ef4444;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Safety Section */
.safety-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border: 2px solid rgba(153, 69, 255, 0.3);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: var(--bullx-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.safety-content p {
    margin-bottom: 1.5rem;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(153, 69, 255, 0.05);
    border-radius: var(--border-radius-small);
}

.safety-feature i {
    color: var(--bullx-primary);
    width: 20px;
    text-align: center;
}

/* Rating Section */
.rating-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(153, 69, 255, 0.3);
}

.rating-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.rating-score-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.rating-score-large .score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bullx-primary);
}

.rating-score-large .max {
    font-size: 2rem;
    color: #cccccc;
    margin-left: 0.5rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem;
    align-items: center;
}

.rating-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--bullx-gradient);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Bottom Line Section */
.bottom-line-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.bottom-line-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.recommendation {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bullx-gradient-subtle);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--bullx-primary);
}

.recommendation-icon {
    width: 60px;
    height: 60px;
    background: var(--bullx-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.recommendation-content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.recommendation-content p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #cccccc;
}

/* Comparison Section */
.comparison-section {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(153, 69, 255, 0.3);
}

.comparison-card .comparison-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #cccccc;
}

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

.comparison-item {
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(153, 69, 255, 0.1);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    background: var(--bullx-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.comparison-item h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.comparison-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #cccccc;
}

.comparison-conclusion {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.comparison-conclusion p {
    font-size: 1.1rem;
    margin: 0;
    color: #cccccc;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

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

.cta-button.secondary {
    background: #1a1a1a;
    color: var(--bullx-primary);
    border-color: var(--bullx-primary);
}

.cta-button.secondary:hover {
    background: var(--bullx-primary);
    color: #000000;
    font-weight: 700;
    transform: translateY(-2px);
}

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

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

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* 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-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

/* Footer */
.footer {
    background: var(--bullx-dark);
    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(--bullx-primary);
}

.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(--bullx-primary);
}

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-smooth);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bullx-gradient);
    color: #000000;
    font-weight: 700;
    text-shadow: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--bullx-shadow);
    transition: var(--transition-smooth);
}

.floating-cta a:hover {
    transform: translateY(-2px);
    box-shadow: var(--bullx-shadow-hover);
    color: #000000;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-content {
        padding: 0 1rem;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .safety-card {
        flex-direction: column;
        text-align: center;
    }
    
    .recommendation {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .rating-preview {
        padding: 1.5rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
} 