/* Features Page CSS */

/* Import main theme variables */
:root {
    --primary-black: #0A0A0A;
    --secondary-black: #1A1A1A;
    --primary-gold: #FFD700;
    --accent-orange: #FFA500;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --gradient-gold: linear-gradient(45deg, #FFD700, #FFA500);
    --gradient-black: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    --success-green: #4CAF50;
    --error-red: #f44336;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    text-decoration: none;
}

.navbar-brand .logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
}

.navbar-brand span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0 !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-wallet {
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    color: var(--primary-black);
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/ai_neural_network_icon.webp') center/cover;
    margin-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
}

.hero-title {
    margin-bottom: 30px;
}

.gradient-text {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--secondary-black);
    position: relative;
}

.feature-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Feature Chart */
.feature-chart {
    margin-top: 20px;
    height: 200px;
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.3);
    border-radius: 10px;
    padding: 20px;
}

/* Network Visualization */
.network-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    position: relative;
    height: 120px;
}

.network-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.network-node:not(.active) {
    background: rgba(255, 215, 0, 0.3);
    color: var(--text-gray);
}

.network-node.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.network-connections {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent, var(--primary-gold));
    z-index: 1;
    animation: connectionFlow 3s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Supported Chains */
.supported-chains {
    position: relative;
    z-index: 2;
}

.chain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.chain-item:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
}

.chain-name {
    font-weight: 600;
    color: var(--text-light);
}

.chain-status.online {
    color: var(--success-green);
    font-weight: 600;
}

.chain-status.coming {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Top Traders */
.top-traders {
    position: relative;
    z-index: 2;
}

.top-traders h5 {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.trader-list {
    background: rgba(10, 10, 10, 0.3);
    border-radius: 15px;
    padding: 20px;
}

.trader-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.trader-item:last-child {
    border-bottom: none;
}

.trader-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding: 15px 10px;
}

.trader-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trader-rank {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.trader-name {
    font-weight: 600;
    color: var(--text-light);
}

.trader-stats {
    text-align: right;
}

.trader-profit {
    display: block;
    font-weight: 700;
    color: var(--success-green);
    font-size: 1.1rem;
}

.trader-followers {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Security Features */
.security-features {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.security-item i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.audit-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.audit-badge {
    text-align: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.audit-badge:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.badge-score {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.badge-name {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comparison Section */
.comparison-section {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-gold);
    margin-bottom: 20px;
}

.comparison-header > div {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    color: var(--primary-gold);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding: 15px 10px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 600;
    color: var(--text-light);
}

.comparison-taurus,
.comparison-others {
    text-align: center;
}

.comparison-taurus i {
    font-size: 1.5rem;
    color: var(--success-green);
}

.comparison-others i {
    font-size: 1.5rem;
}

.comparison-others .fa-check-circle {
    color: var(--success-green);
}

.comparison-others .fa-times-circle {
    color: var(--error-red);
}

.comparison-others .fa-minus-circle {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-black);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    color: var(--primary-black);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .gradient-text {
        font-size: 3rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .audit-badges {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .network-visualization {
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
        padding: 20px 0;
    }
    
    .network-node {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
        margin: 5px;
    }
    
    .supported-chains {
        margin-top: 20px;
    }
    
    .chain-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .trader-item {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .gradient-text {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-section {
        min-height: 40vh;
        padding-top: 80px;
    }
    
    .features-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-stats {
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .network-visualization {
        gap: 8px;
        padding: 15px 0;
    }
    
    .network-node {
        width: 45px;
        height: 45px;
        font-size: 0.7rem;
    }
    
    .comparison-table {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .comparison-section {
        padding: 40px 0;
    }
    
    .comparison-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .trader-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }
    
    .trader-info {
        justify-content: center;
    }
    
    .trader-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .security-item {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .audit-badges {
        gap: 15px;
    }
    
    .audit-badge {
        padding: 15px;
        min-width: 120px;
    }
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 400px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}



/* Footer Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
        margin-top: 60px;
    }
    
    .footer-content {
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 20px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}