/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0b0e11;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0b90b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: #d4a017;
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f0b90b;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.crypto-payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-crypto {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.btn-btc {
    background: linear-gradient(135deg, #F7931A, #FFB84D);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-btc:hover {
    background: linear-gradient(135deg, #E8821A, #FFA726);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 147, 26, 0.3);
}

.btn-solana {
    background: linear-gradient(135deg, #9945FF, #14F195);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-solana:hover {
    background: linear-gradient(135deg, #8B3AFF, #00E676);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
}

/* Crypto Payment Buttons in CTA sections */
.cta-buttons .crypto-payment-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-buttons .btn-crypto {
    min-width: 160px;
    padding: 12px 24px;
    font-size: 1rem;
}

.cta-buttons .btn-crypto.btn-large {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #0b0e11;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 185, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(240, 185, 11, 0.1);
    border-color: #f0b90b;
}

.btn-outline {
    background: transparent;
    color: #f0b90b;
    border: 2px solid #f0b90b;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f0b90b;
    color: #0b0e11;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b0e11 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Parallax effect for hero content */
.hero-content,
.hero-visual {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2300d4ff" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300d4ff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 120px;
    min-height: 85vh;
    text-align: center;
    gap: 50px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-ai-network {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    margin: 0 auto;
}

/* AI Network Section */
.ai-network-section {
    background: linear-gradient(135deg, #0b0e11 0%, #1a1d29 50%, #0b0e11 100%);
    position: relative;
    overflow: hidden;
}

.ai-network-section::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f0b90b" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f0b90b" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.ai-network-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    padding: 40px;
}

.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.ai-brain {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 60px rgba(240, 185, 11, 0.9);
    animation: brainPulse 2s ease-in-out infinite;
}

.ai-brain i {
    font-size: 3.5rem;
    color: #000;
    z-index: 2;
}

.ai-pulse-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(240, 185, 11, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ai-data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ai-data-streams::before,
.ai-data-streams::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 50%;
}

.ai-data-streams::before {
    width: 200px;
    height: 200px;
}

.ai-data-streams::after {
    width: 250px;
    height: 250px;
}

.ai-core h3 {
    color: #f0b90b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-core p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.service-node {
    position: absolute;
    width: 180px;
    padding: 25px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.service-node:hover {
    transform: scale(1.1);
    background: rgba(240, 185, 11, 0.15);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.4);
}

.service-node.whale-tracking {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.service-node.ai-analysis {
    top: 50px;
    right: 20px;
    animation-delay: 0.5s;
}

.service-node.portfolio {
    bottom: 50px;
    right: 20px;
    animation-delay: 1s;
}

.service-node.network {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.service-node.automation {
    bottom: 50px;
    left: 20px;
    animation-delay: 2s;
}

.service-node.analytics {
    top: 50px;
    left: 20px;
    animation-delay: 2.5s;
}

.node-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: #000;
    box-shadow: 0 10px 25px rgba(240, 185, 11, 0.6);
    transition: all 0.3s ease;
}

.service-node:hover .node-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(240, 185, 11, 0.6);
}

.service-node h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.node-stats {
    margin-bottom: 10px;
}

.node-stats .stat {
    display: block;
    color: #f0b90b;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(240, 185, 11, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(240, 185, 11, 0.4), transparent);
    transform: translate(-50%, -50%);
    animation: dataFlow 2s ease-in-out infinite;
}

.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f0b90b;
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.6);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    right: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 40%;
    right: 10%;
    animation-delay: 5s;
}

/* Animations */
@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(240, 185, 11, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(240, 185, 11, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scaleY(1.2);
    }
}

@keyframes particleOrbit {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.stat {
    text-align: left;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0b90b;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.2;
}

/* Integrated Dashboard */
.integrated-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-container {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    width: 100%;
    aspect-ratio: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.dashboard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(240, 185, 11, 0.15) 0%, 
        rgba(240, 185, 11, 0.08) 50%, 
        rgba(255, 71, 87, 0.08) 100%);
    border-radius: 20px;
    z-index: -1;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-indicators {
    display: flex;
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.status-item i {
    font-size: 0.6rem;
    color: #f0b90b;
    animation: pulse 2s infinite;
}

.header-right {
    text-align: right;
}

.live-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-stats .stat {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

/* Feature Cards */
.feature-card {
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(240, 185, 11, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #ffffff;
}

.feature-card.whale-tracking .feature-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.feature-card.ai-analysis .feature-icon {
    background: linear-gradient(135deg, #9945ff, #14f195);
}

.feature-card.portfolio .feature-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.feature-card.network .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.feature-card.automation .feature-icon {
    background: linear-gradient(135deg, #627eea, #4f46e5);
}

.feature-card.analytics .feature-icon {
    background: linear-gradient(135deg, #ff9f43, #ff6b6b);
}

.feature-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Whale Tracking */
.whale-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.whale-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.whale-address {
    color: #ffffff;
    font-family: monospace;
    font-weight: 500;
}

.whale-amount {
    color: #f0b90b;
    font-weight: 600;
}

/* AI Analysis */
.ai-prediction {
    margin-bottom: 6px;
}

.prediction-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.prediction-fill {
    height: 100%;
    background: linear-gradient(90deg, #f0b90b, #d4a017);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.prediction-text {
    font-size: 0.75rem;
    color: #f0b90b;
    font-weight: 700;
}

.ai-signals {
    display: flex;
    align-items: center;
    gap: 6px;
}

.signal {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
}

.signal.buy {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
}

.signal-price {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

/* Portfolio */
.portfolio-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.portfolio-value .value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.portfolio-value .change {
    font-size: 0.7rem;
    font-weight: 600;
}

.portfolio-value .change.positive {
    color: #f0b90b;
}

.portfolio-chart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Network */
.network-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.network-stat {
    text-align: center;
}

.network-stat .number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.network-stat .label {
    font-size: 0.65rem;
    color: #cccccc;
}

/* Automation */
.bot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.bot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4757;
}

.bot-indicator.active {
    background: #f0b90b;
    animation: pulse 2s infinite;
}

.bot-text {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.bot-performance {
    text-align: center;
}

.performance {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0b90b;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Analytics */
.analytics-metrics {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.7rem;
    color: #cccccc;
}

.metric-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Status Bar */
.status-bar {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.market-indicators {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.indicator {
    text-align: center;
    flex: 1;
}

.indicator .label {
    display: block;
    font-size: 0.65rem;
    color: #cccccc;
    margin-bottom: 2px;
}

.indicator .value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.indicator .value.greed {
    color: #f0b90b;
}

.crypto-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.crypto-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.crypto-card.btc .crypto-icon {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
}

.crypto-card.eth .crypto-icon {
    background: linear-gradient(135deg, #627eea, #4f46e5);
}

.crypto-card.bnb .crypto-icon {
    background: linear-gradient(135deg, #f3ba2f, #f0b90b);
}

.crypto-card.sol .crypto-icon {
    background: linear-gradient(135deg, #9945ff, #14f195);
}

.crypto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.crypto-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.crypto-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.crypto-change {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}

.crypto-change.positive {
    color: #f0b90b;
    background: rgba(240, 185, 11, 0.1);
}

.crypto-change.negative {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

/* Trading Chart */
.trading-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chart-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.chart-timeframe {
    font-size: 0.7rem;
    color: #cccccc;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

.chart-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.chart-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.chart-stats .stat {
    text-align: center;
    flex: 1;
}

.chart-stats .label {
    display: block;
    font-size: 0.65rem;
    color: #cccccc;
    margin-bottom: 2px;
}

.chart-stats .value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

/* Market Indicators */
.market-indicators {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.indicator {
    text-align: center;
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
}

.indicator-label {
    display: block;
    font-size: 0.65rem;
    color: #cccccc;
    margin-bottom: 4px;
}

.indicator-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.indicator-value.greed {
    color: #f0b90b;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0b90b;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #f0b90b;
}

.status-text {
    font-size: 0.85rem;
    color: #f0b90b;
    font-weight: 600;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.signal-count {
    text-align: right;
}

.signal-count .count {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f0b90b;
}

.signal-count .label {
    font-size: 0.75rem;
    color: #cccccc;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f0b90b;
    font-size: 0.8rem;
    font-weight: 600;
}

.pulse {
    width: 6px;
    height: 6px;
    background: #f0b90b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Market Overview */
.market-overview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.crypto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.crypto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.crypto-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: #ffffff;
}

.crypto-icon.btc {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
}

.crypto-icon.eth {
    background: linear-gradient(135deg, #627eea, #4f46e5);
}

.crypto-icon.bnb {
    background: linear-gradient(135deg, #f3ba2f, #f0b90b);
}

.crypto-icon.sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
}

.crypto-details {
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.crypto-symbol {
    font-size: 0.7rem;
    color: #cccccc;
}

.crypto-price {
    text-align: right;
}

.crypto-price .price {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.crypto-price .change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}

.crypto-price .change.positive {
    color: #f0b90b;
    background: rgba(240, 185, 11, 0.1);
}

.crypto-price .change.negative {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

/* Trading Chart */
.trading-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coin-symbol {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.timeframe {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.chart-price {
    text-align: right;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.price-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}

.price-change.positive {
    color: #f0b90b;
    background: rgba(240, 185, 11, 0.1);
}

.chart-container {
    height: 140px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.chart-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.chart-stats .stat {
    text-align: center;
    flex: 1;
}

.chart-stats .label {
    display: block;
    font-size: 0.7rem;
    color: #cccccc;
    margin-bottom: 2px;
}

.chart-stats .value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

/* Order Book */
.order-book {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.order-book h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.order-book-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.orders {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 3px 6px;
    font-size: 0.7rem;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.order-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sell-orders .order-row .price {
    color: #ff4757;
}

.buy-orders .order-row .price {
    color: #f0b90b;
}

.order-row .amount,
.order-row .total {
    color: #cccccc;
    text-align: right;
}

.spread {
    text-align: center;
    padding: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spread-value {
    font-size: 0.7rem;
    color: #f0b90b;
    font-weight: 600;
}

/* Recent Trades */
.recent-trades {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.recent-trades h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.trades-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trade-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    transition: background-color 0.2s ease;
}

.trade-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.trade-item.buy .price {
    color: #f0b90b;
}

.trade-item.sell .price {
    color: #ff4757;
}

.trade-item .time {
    color: #cccccc;
}

.trade-item .amount {
    color: #cccccc;
    text-align: right;
}

/* Market Metrics */
.market-metrics {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 0.7rem;
    color: #cccccc;
    margin-bottom: 4px;
    display: block;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.metric-value.greed {
    color: #f0b90b;
}

/* Performance Stats */
.performance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ffffff;
}

.stat-icon.success {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.stat-icon.profit {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.stat-icon.signals {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.7rem;
    color: #cccccc;
}

/* Signals Feed */
.signals-feed {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.feed-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.feed-controls {
    display: flex;
    gap: 6px;
}

.filter-btn {
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #cccccc;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #f0b90b;
    color: #0b0e11;
    border-color: #f0b90b;
}

.filter-btn:hover {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
}

.signals-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.signal-item.buy {
    border-left-color: #f0b90b;
}

.signal-item.sell {
    border-left-color: #ff4757;
}

.signal-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(2px);
}

.signal-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ffffff;
}

.signal-item.buy .signal-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.signal-item.sell .signal-icon {
    background: linear-gradient(135deg, #ff4757, #ee5a24);
}

.signal-content {
    flex: 1;
}

.signal-pair {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.signal-details {
    display: flex;
    gap: 8px;
    margin-bottom: 3px;
}

.signal-type {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
}

.signal-item.buy .signal-type {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
}

.signal-item.sell .signal-type {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.signal-price {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
}

.signal-target {
    font-size: 0.7rem;
    color: #cccccc;
}

.signal-meta {
    display: flex;
    gap: 8px;
    font-size: 0.65rem;
    color: #cccccc;
}

.signal-actions {
    display: flex;
    gap: 4px;
}

.action-btn {
    padding: 3px 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #cccccc;
    border-radius: 3px;
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #f0b90b;
    color: #0b0e11;
    border-color: #f0b90b;
}

/* AI Analysis Panel */
.ai-analysis-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.panel-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #f0b90b;
}

.ai-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f0b90b;
    animation: pulse 1.5s infinite;
}

.analysis-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-sentiment {
    text-align: center;
}

.sentiment-label {
    font-size: 0.75rem;
    color: #cccccc;
    margin-bottom: 6px;
}

.sentiment-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.sentiment-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.sentiment-fill.bullish {
    background: linear-gradient(90deg, #f0b90b, #d4a017);
}

.sentiment-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f0b90b;
}

.ai-predictions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.prediction-item {
    text-align: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.prediction-label {
    display: block;
    font-size: 0.65rem;
    color: #cccccc;
    margin-bottom: 3px;
}

.prediction-value {
    font-size: 0.8rem;
    font-weight: 700;
}

.prediction-value.positive {
    color: #f0b90b;
}

.prediction-value.negative {
    color: #ff4757;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: #0b0e11;
}

.bg-dark {
    background: #0b0e11;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #f0b90b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #f0b90b;
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #0b0e11;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Whale Dashboard */
.whale-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.whale-dashboard h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.whale-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.whale-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
}

.whale-row.header {
    background: rgba(240, 185, 11, 0.1);
    font-weight: 600;
    color: #f0b90b;
}

.type {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
}

.type.buy {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
}

.type.sell {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.type.transfer {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

/* AI Features */
.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ai-feature {
    text-align: center;
    padding: 30px;
}

.ai-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.ai-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.ai-feature p {
    color: #cccccc;
    line-height: 1.6;
}

.ai-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.prediction-chart, .sentiment-meter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.prediction-chart h3, .sentiment-meter h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.chart-container {
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
}

.meter {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ffa502, #f0b90b);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.sentiment-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #cccccc;
}

/* Portfolio Dashboard */
.portfolio-dashboard {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.portfolio-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.portfolio-card h3 {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.portfolio-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.portfolio-change {
    font-size: 1rem;
    font-weight: 600;
}

.portfolio-change.positive {
    color: #f0b90b;
}

.portfolio-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #f0b90b;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Network Features */
.network-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.network-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.network-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.1);
}

.network-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
}

.network-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.network-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Automation Grid */
.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.automation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.automation-card:hover {
    transform: translateY(-5px);
    border-color: #ffa502;
    box-shadow: 0 15px 30px rgba(255, 165, 2, 0.1);
}

.automation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffa502, #ff6348);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
}

.automation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.automation-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Services Section */
.services-category {
    margin-bottom: 60px;
    padding: 30px 0;
}

.services-category:last-child {
    margin-bottom: 0;
}

/* Different styles for each category */
.services-category:nth-child(2) .category-title {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-category:nth-child(3) .category-title {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-category:nth-child(4) .category-title {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.category-subtitle {
    font-size: 1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 185, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #f0b90b;
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
    background: rgba(240, 185, 11, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #0b0e11;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(240, 185, 11, 0.4);
}

/* Different icon colors for each category */
.services-category:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.services-category:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.services-category:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #f0b90b;
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
    background: rgba(240, 185, 11, 0.12);
}

.pricing-card.featured {
    border-color: #f0b90b;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #0b0e11;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0b90b;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: #f0b90b;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f0b90b;
}

.period {
    font-size: 1rem;
    color: #f0b90b;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #f0b90b;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pricing-features li i {
    color: #f0b90b;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b0e11;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Resale Content */
.resale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.resale-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.resale-info p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.resale-features {
    list-style: none;
    margin-bottom: 30px;
}

.resale-features li {
    padding: 10px 0;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.resale-features li i {
    color: #f0b90b;
    margin-right: 10px;
    font-size: 0.9rem;
}

.resale-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0b90b;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 8px 0;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: #f0b90b;
    margin-right: 10px;
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0b90b;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Support Content */
.support-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #f0b90b;
    box-shadow: 0 15px 30px rgba(240, 185, 11, 0.2);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #0b0e11;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.support-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(240, 185, 11, 0.1);
}

.faq-answer {
    padding: 0 20px 20px;
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0b0e11;
    border-top: 1px solid rgba(240, 185, 11, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0b90b;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    color: #d4a017;
    transform: scale(1.05);
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f0b90b;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f0b90b;
    color: #0b0e11;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #f0b90b;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 80px;
}

.privacy-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.privacy-intro p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(240, 185, 11, 0.12);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.2);
}

.highlight-card i {
    font-size: 3rem;
    color: #f0b90b;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.highlight-card p {
    color: #ccc;
    line-height: 1.6;
}

.privacy-sections {
    margin-bottom: 80px;
}

.privacy-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h3 {
    font-size: 1.8rem;
    color: #f0b90b;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(240, 185, 11, 0.3);
    padding-bottom: 10px;
}

.privacy-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-section li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-section strong {
    color: #f0b90b;
}

.motivation-box {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1), rgba(240, 185, 11, 0.05));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.motivation-box h4 {
    color: #f0b90b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.motivation-box p {
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.privacy-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1), rgba(240, 185, 11, 0.05));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
}

.privacy-cta h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.privacy-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #f0b90b;
    font-weight: 500;
}

.cta-guarantee i {
    font-size: 1.2rem;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-intro h2 {
        font-size: 2rem;
    }
    
    .privacy-intro p {
        font-size: 1.1rem;
    }
    
    .privacy-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-section {
        padding: 25px;
    }
    
    .privacy-section h3 {
        font-size: 1.5rem;
    }
    
    .privacy-cta {
        padding: 40px 20px;
    }
    
    .privacy-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .privacy-intro h2 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card i {
        font-size: 2.5rem;
    }
    
    .motivation-box {
        padding: 20px;
    }
    
    .privacy-cta {
        padding: 30px 15px;
    }
}

/* Terms of Service Styles */
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.terms-intro {
    text-align: center;
    margin-bottom: 80px;
}

.terms-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.terms-intro p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.terms-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h3 {
    font-size: 1.8rem;
    color: #f0b90b;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(240, 185, 11, 0.3);
    padding-bottom: 10px;
}

.terms-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.terms-section li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-section strong {
    color: #f0b90b;
}

.terms-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1), rgba(240, 185, 11, 0.05));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
}

.terms-cta h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.terms-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Terms of Service */
@media (max-width: 768px) {
    .terms-content {
        padding: 40px 0;
    }
    
    .terms-intro h2 {
        font-size: 2rem;
    }
    
    .terms-intro p {
        font-size: 1.1rem;
    }
    
    .terms-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .terms-section {
        padding: 25px;
    }
    
    .terms-section h3 {
        font-size: 1.5rem;
    }
    
    .terms-cta {
        padding: 40px 20px;
    }
    
    .terms-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .terms-intro h2 {
        font-size: 1.8rem;
    }
    
    .terms-section {
        padding: 20px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card i {
        font-size: 2.5rem;
    }
    
    .motivation-box {
        padding: 20px;
    }
    
    .terms-cta {
        padding: 30px 15px;
    }
}

/* Cookie Policy Styles */
.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.cookie-intro {
    text-align: center;
    margin-bottom: 80px;
}

.cookie-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cookie-intro p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cookie-section {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-section h3 {
    font-size: 1.8rem;
    color: #f0b90b;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(240, 185, 11, 0.3);
    padding-bottom: 10px;
}

.cookie-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.cookie-section li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-section strong {
    color: #f0b90b;
}

.cookie-consent {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15), rgba(240, 185, 11, 0.08));
    border: 2px solid rgba(240, 185, 11, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cookie-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 185, 11, 0.1), transparent, rgba(240, 185, 11, 0.1));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.consent-content {
    position: relative;
    z-index: 2;
}

.cookie-consent h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cookie-consent p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consent-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1), rgba(240, 185, 11, 0.05));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
}

.cookie-cta h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.cookie-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #f0b90b;
    font-weight: 500;
    margin-top: 20px;
}

.cta-guarantee i {
    font-size: 1.2rem;
}

/* Responsive Design for Cookie Policy */
@media (max-width: 768px) {
    .cookie-content {
        padding: 40px 0;
    }
    
    .cookie-intro h2 {
        font-size: 2rem;
    }
    
    .cookie-intro p {
        font-size: 1.1rem;
    }
    
    .cookie-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-section {
        padding: 25px;
    }
    
    .cookie-section h3 {
        font-size: 1.5rem;
    }
    
    .cookie-consent {
        padding: 30px 20px;
    }
    
    .cookie-consent h3 {
        font-size: 1.5rem;
    }
    
    .consent-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-cta {
        padding: 40px 20px;
    }
    
    .cookie-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cookie-intro h2 {
        font-size: 1.8rem;
    }
    
    .cookie-section {
        padding: 20px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card i {
        font-size: 2.5rem;
    }
    
    .motivation-box {
        padding: 20px;
    }
    
    .cookie-consent {
        padding: 25px 15px;
    }
    
    .cookie-cta {
        padding: 30px 15px;
    }
}

/* Responsive styles for crypto payment buttons in CTA sections */
@media (max-width: 768px) {
    .cta-buttons .crypto-payment-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .cta-buttons .btn-crypto {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .cta-buttons .btn-crypto {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .cta-buttons .btn-crypto.btn-large {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* Professional Trading Platform */
.trading-platform {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: rgba(11, 14, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Platform Header */
.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.platform-logo i {
    color: #f0b90b;
    font-size: 1rem;
}

.platform-status {
    display: flex;
    gap: 8px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.live {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
    border: 1px solid rgba(240, 185, 11, 0.3);
}

.status-badge.ai {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
    border: 1px solid rgba(240, 185, 11, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #f0b90b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Market Ticker */
.market-ticker {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
    gap: 15px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.ticker-item .symbol {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.8rem;
}

.ticker-item .price {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.8rem;
}

.ticker-item .change {
    font-weight: 600;
    font-size: 0.75rem;
}

.ticker-item .change.positive {
    color: #f0b90b;
}

.ticker-item .change.negative {
    color: #ff4757;
}

.ticker-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.ticker-stats {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.ticker-stats .stat {
    font-size: 0.75rem;
    color: #cccccc;
    font-weight: 500;
}

/* Trading Interface */
.trading-interface {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    min-height: 250px;
}

/* Left Panel - Whale Tracking */
.left-panel {
    background: rgba(11, 14, 17, 0.95);
    padding: 12px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-header h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.panel-header h4 i {
    color: #f0b90b;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #f0b90b;
    font-weight: 600;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #f0b90b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.whale-feed {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.whale-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.whale-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whale-address {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.whale-time {
    font-size: 0.7rem;
    color: #888;
}

.whale-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.action-type {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.action-type.buy {
    background: rgba(240, 185, 11, 0.2);
    color: #f0b90b;
}

.action-type.sell {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.action-amount {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

/* Center Panel - Trading Chart */
.center-panel {
    background: rgba(11, 14, 17, 0.95);
    padding: 12px;
    position: relative;
}

.chart-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chart-symbol {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-symbol .symbol {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

.timeframe {
    padding: 3px 6px;
    font-size: 0.7rem;
    color: #888;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.timeframe.active {
    background: #f0b90b;
    color: #0b0e11;
    font-weight: 600;
}

.timeframe:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.chart-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.price-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.price-change.positive {
    color: #f0b90b;
}

.price-change.negative {
    color: #ff4757;
}

.chart-container {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.chart-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 12px;
}

.chart-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.indicator-label {
    font-size: 0.7rem;
    color: #888;
}

.indicator-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.indicator-value.positive {
    color: #f0b90b;
}

.indicator-value.negative {
    color: #ff4757;
}

/* Right Panel - Market Stats */
.right-panel {
    background: rgba(11, 14, 17, 0.95);
    padding: 12px;
}

.market-metrics {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-card {
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-label {
    font-size: 0.65rem;
    color: #888;
    margin-bottom: 3px;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.metric-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #f0b90b;
}

.metric-change.negative {
    color: #ff4757;
}

/* Platform Footer */
.platform-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stats {
    display: flex;
    gap: 15px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-stat .stat-label {
    font-size: 0.65rem;
    color: #888;
}

.footer-stat .stat-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-stat .stat-value.greed {
    color: #f0b90b;
}

.footer-actions {
    display: flex;
    gap: 6px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #0b0e11;
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, #d4a017, #b8940f);
    transform: translateY(-1px);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Chart Canvas */
#professionalChart {
    width: 100%;
    height: 150px;
    display: block;
}

.professional-dashboard .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.professional-dashboard .header-left h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.professional-dashboard .status-indicators {
    display: flex;
    gap: 15px;
}

.professional-dashboard .status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.professional-dashboard .status-item i {
    font-size: 0.6rem;
    color: #f0b90b;
    animation: pulse 2s infinite;
}

.professional-dashboard .live-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.professional-dashboard .stat {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.professional-dashboard .main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Whale Section */
.whale-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #f0b90b;
    font-weight: 500;
}

.whale-transactions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whale-transaction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whale-transaction:last-child {
    border-bottom: none;
}

.whale-address {
    color: #ffffff;
    font-family: monospace;
    font-weight: 500;
    font-size: 0.8rem;
}

.whale-amount {
    font-weight: 600;
    font-size: 0.8rem;
}

.whale-amount.positive {
    color: #f0b90b;
}

.whale-amount.negative {
    color: #ff4757;
}

/* Market Overview */
.market-overview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.market-stat {
    text-align: center;
}

.stat-label {
    font-size: 0.7rem;
    color: #cccccc;
    margin-bottom: 4px;
    display: block;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Trading Chart Section */
.trading-chart-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coin-symbol {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.timeframe {
    font-size: 0.7rem;
    color: #cccccc;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.chart-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.price-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.price-change.positive {
    color: #f0b90b;
}

.price-change.negative {
    color: #ff4757;
}

#professionalChart {
    width: 100%;
    height: 120px;
    border-radius: 8px;
}

/* Responsive Design for Trading Platform */
@media (max-width: 768px) {
    .trading-platform {
        max-width: 90%;
        margin: 0 10px;
    }
    
    .trading-interface {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .left-panel,
    .center-panel,
    .right-panel {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .right-panel {
        border-bottom: none;
    }
    
    .market-ticker {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ticker-stats {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .platform-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .footer-stats {
        justify-content: space-between;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .chart-toolbar {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .chart-symbol {
        justify-content: center;
    }
    
    .chart-price {
        align-items: center;
    }
    
    #professionalChart {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .trading-platform {
        max-width: 95%;
        margin: 0 5px;
    }
    
    .platform-header {
        padding: 8px 12px;
    }
    
    .platform-logo {
        font-size: 1rem;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .market-ticker {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .ticker-item {
        font-size: 0.8rem;
    }
    
    .left-panel,
    .center-panel,
    .right-panel {
        padding: 12px;
    }
    
    .whale-alert {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }
    
    .whale-action {
        align-items: flex-start;
    }
    
    .metric-card {
        padding: 6px;
    }
    
    .action-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    #professionalChart {
        height: 120px;
    }
}

/* AI Services Visualization */
.ai-visualization {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(240, 185, 11, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    overflow: hidden;
}

.ai-network {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.ai-brain {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(240, 185, 11, 0.5);
    animation: brainPulse 2s ease-in-out infinite;
}

.ai-brain i {
    font-size: 3rem;
    color: #000;
    z-index: 2;
}

.ai-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(240, 185, 11, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ai-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ai-connections::before,
.ai-connections::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(240, 185, 11, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ai-connections::after {
    width: 150px;
    height: 150px;
    animation: rotate 15s linear infinite reverse;
}

.ai-center h3 {
    color: #f0b90b;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.ai-center p {
    color: #888;
    font-size: 0.9rem;
}

.service-node {
    position: absolute;
    width: 200px;
    padding: 20px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.service-node:hover {
    transform: scale(1.05);
    background: rgba(240, 185, 11, 0.12);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.3);
}

.service-node.whale-tracking {
    top: 10%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.service-node.ai-analysis {
    top: 10%;
    right: 10%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.service-node.portfolio {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation: float 3s ease-in-out infinite 1s;
}

.service-node.network {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: float 3s ease-in-out infinite 1.5s;
}

.service-node.automation {
    bottom: 10%;
    left: 10%;
    animation: float 3s ease-in-out infinite 2s;
}

.service-node.analytics {
    bottom: 10%;
    right: 10%;
    animation: float 3s ease-in-out infinite 2.5s;
}

.node-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
}

.service-node h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.node-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.node-stats .stat {
    color: #f0b90b;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(240, 185, 11, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(240, 185, 11, 0.3), transparent);
    transform: translate(-50%, -50%);
    animation: dataFlow 2s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

.flow-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f0b90b;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.8);
    animation: particleOrbit 4s linear infinite;
}

.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: 0.8s; }
.particle:nth-child(3) { animation-delay: 1.6s; }
.particle:nth-child(4) { animation-delay: 2.4s; }
.particle:nth-child(5) { animation-delay: 3.2s; }

/* Animations */
@keyframes brainPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) scaleY(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
}

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Responsive Design for AI Visualization */
@media (max-width: 768px) {
    .ai-network {
        height: 500px;
    }
    
    .service-node {
        width: 150px;
        padding: 15px;
    }
    
    .ai-brain {
        width: 80px;
        height: 80px;
    }
    
    .ai-brain i {
        font-size: 2rem;
    }
    
    .service-node.whale-tracking,
    .service-node.ai-analysis {
        top: 5%;
    }
    
    .service-node.portfolio,
    .service-node.network {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .service-node.automation,
    .service-node.analytics {
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    .ai-network {
        height: 400px;
    }
    
    .service-node {
        width: 120px;
        padding: 10px;
    }
    
    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-node h4 {
        font-size: 0.9rem;
    }
    
    .node-stats .stat {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
}

/* Sophisticated Pricing Styles */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    position: relative;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(240, 185, 11, 0.2);
}

.pricing-card.featured {
    border: 2px solid #f0b90b;
    box-shadow: 0 0 40px rgba(240, 185, 11, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .card-glow {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.4);
}

.popular-badge i {
    font-size: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(240, 185, 11, 0.4);
}

.pricing-header h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-subtitle {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
}

.price-container {
    position: relative;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    color: #f0b90b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}


.period {
    color: #888;
    font-size: 1.2rem;
    margin-left: 5px;
}


.pricing-features {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.feature-category {
    margin-bottom: 30px;
}

.feature-category h4 {
    color: #f0b90b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-category li:hover {
    color: #fff;
}

.feature-category li i {
    color: #f0b90b;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.pricing-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 185, 11, 0.3);
}

.pricing-btn i {
    transition: transform 0.3s ease;
}

.pricing-btn:hover i {
    transform: translateX(5px);
}

.trial-info {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Plan-specific styling */
.basic-card .plan-icon {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.pro-card .plan-icon {
    background: linear-gradient(135deg, #f0b90b, #d4a017);
}

.enterprise-card .plan-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 3rem;
    }
    
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 25px 15px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
}

/* Additional Styles for New Pages */
.cta-content {
    text-align: center;
    padding: 60px 0;
    background: rgba(240, 185, 11, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
}

.member-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
}

.member-role {
    color: #f0b90b;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.member-social a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #f0b90b;
}

/* Values Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
}

/* Tech Stats */
.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-stat {
    text-align: center;
    padding: 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
}

.tech-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f0b90b;
    margin-bottom: 10px;
}

.tech-stat .stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* Resale Styles */
.resale-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.resale-features {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: #f0b90b;
    margin-top: 5px;
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

.resale-stats {
    display: grid;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 12px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.stat-content h3 {
    font-size: 2rem;
    color: #f0b90b;
    margin-bottom: 5px;
}

.stat-content p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Commission Tiers */
.commission-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tier-card {
    padding: 40px 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
}

.tier-card.featured {
    border-color: #f0b90b;
    box-shadow: 0 0 30px rgba(240, 185, 11, 0.3);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-header h3 {
    color: #fff;
    margin-bottom: 20px;
}

.tier-commission {
    font-size: 3rem;
    font-weight: 800;
    color: #f0b90b;
    margin-bottom: 20px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    padding: 10px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-features li:last-child {
    border-bottom: none;
}

/* Join Steps */
.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.join-step {
    text-align: center;
    padding: 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    position: relative;
}

.join-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 0 auto 20px;
}

.join-step h4 {
    color: #fff;
    margin-bottom: 15px;
}

.join-step p {
    color: #ccc;
    line-height: 1.6;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
}

.requirement-card i {
    font-size: 3rem;
    color: #f0b90b;
    margin-bottom: 20px;
}

.requirement-card h4 {
    color: #fff;
    margin-bottom: 15px;
}

.requirement-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Support Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(240, 185, 11, 0.3);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
}

.support-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.support-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Contact Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #fff;
    margin-bottom: 10px;
}

.contact-details p {
    color: #f0b90b;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details span {
    color: #ccc;
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f0b90b;
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Status Styles */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.status-item {
    text-align: center;
    padding: 30px;
    background: rgba(240, 185, 11, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.status-indicator.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.offline {
    background: #ff4757;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.status-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.status-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .crypto-payment-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .btn-crypto {
        font-size: 0.8rem;
        padding: 6px 12px;
        min-width: 120px;
    }
    
    .hero-container {
        max-width: 95%;
        margin-top: 100px;
        text-align: center;
        gap: 40px;
        min-height: 80vh;
    }
    
    .hero-content {
        text-align: center;
        max-width: 90%;
        gap: 25px;
    }
    
    .hero-ai-network {
        max-width: 95%;
        height: 500px;
        padding: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Hero AI Network Responsive */
    .hero-ai-network {
        max-width: 90%;
        height: 350px;
        margin: 30px auto;
    }
    
    .ai-brain {
        width: 80px;
        height: 80px;
    }
    
    .ai-brain i {
        font-size: 2rem;
    }
    
    .service-node {
        width: 120px;
        padding: 12px;
    }
    
    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .service-node h4 {
        font-size: 0.8rem;
    }
    
    .node-stats .stat {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .ai-core h3 {
        font-size: 1rem;
    }
    
    .ai-core p {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ai-dashboard {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-links {
        gap: 20px;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .legal-links {
        gap: 15px;
        flex-direction: column;
    }
    
    .legal-links a {
        font-size: 0.75rem;
    }
    
    .whale-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .whale-row.header {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .resale-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resale-stats {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .integrated-dashboard {
        max-width: 400px;
    }
    
    .dashboard-container {
        padding: 15px;
        gap: 12px;
    }
    
    .main-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 10px;
    }
    
    .feature-card {
        padding: 10px;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .feature-card h4 {
        font-size: 0.75rem;
    }
    
    .crypto-grid {
        gap: 8px;
    }
    
    .crypto-card {
        padding: 8px;
    }
    
    .crypto-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .crypto-name {
        font-size: 0.75rem;
    }
    
    .crypto-price {
        font-size: 0.8rem;
    }
    
    .crypto-change {
        font-size: 0.65rem;
    }
    
    .trading-chart {
        padding: 10px;
    }
    
    .chart-title {
        font-size: 0.8rem;
    }
    
    .chart-timeframe {
        font-size: 0.65rem;
    }
    
    .market-indicators {
        gap: 6px;
    }
    
    .indicator {
        padding: 6px;
    }
    
    .indicator-label {
        font-size: 0.6rem;
    }
    
    .indicator-value {
        font-size: 0.8rem;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .signal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .signal-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .ai-predictions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .order-book-content {
        font-size: 0.6rem;
    }
    
    .trades-list {
        font-size: 0.6rem;
    }
    
    .hero-container {
        max-width: 85%;
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .stat {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .services-category {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .category-header {
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .category-subtitle {
        font-size: 0.9rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    
    .hero-container {
        text-align: center;
        gap: 30px;
        min-height: 75vh;
        padding: 0 15px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 95%;
        gap: 20px;
    }
    
    .hero-ai-network {
        max-width: 98%;
        height: 400px;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Hero AI Network Mobile */
    .hero-ai-network {
        max-width: 95%;
        height: 300px;
        margin: 20px auto;
    }
    
    .ai-brain {
        width: 60px;
        height: 60px;
    }
    
    .ai-brain i {
        font-size: 1.5rem;
    }
    
    .service-node {
        width: 100px;
        padding: 10px;
    }
    
    .node-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-node h4 {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    .node-stats .stat {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    .ai-core h3 {
        font-size: 0.9rem;
    }
    
    .ai-core p {
        font-size: 0.7rem;
    }
    
    .connection-line {
        height: 60px;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1600px;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 900px;
        gap: 40px;
    }
    
    .hero-ai-network {
        max-width: 1000px;
        height: 700px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .hero-container {
        padding: 0 10px;
        gap: 25px;
        min-height: 70vh;
    }
    
    .hero-content {
        max-width: 98%;
        gap: 15px;
    }
    
    .hero-ai-network {
        max-width: 100%;
        height: 350px;
        padding: 15px;
    }
    
    .ai-brain {
        width: 80px;
        height: 80px;
    }
    
    .ai-brain i {
        font-size: 2.5rem;
    }
    
    .service-node {
        width: 120px;
        padding: 15px;
    }
    
    .node-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
    
    .feature-card, .network-card, .automation-card, .analytics-card {
        padding: 30px 20px;
    }
    
    .services-category {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .category-header {
        margin-bottom: 25px;
    }
    
    .category-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .category-subtitle {
        font-size: 0.85rem;
    }
    
    .services-grid {
        gap: 12px;
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 18px 15px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* New Pages Responsive */
    .resale-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid,
    .values-grid,
    .commission-tiers,
    .join-steps,
    .requirements-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .tech-stats,
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-stats,
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card,
    .team-member,
    .value-card,
    .support-card,
    .requirement-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Payment Page Styles - Inspired by FlashUSDT */
.payment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.payment-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f0b90b;
    font-weight: 700;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.payment-content {
    background: rgba(240, 185, 11, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.payment-info {
    text-align: center;
    margin-bottom: 40px;
}

.payment-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.payment-info .highlight {
    color: #f0b90b;
    font-weight: 700;
}

.payment-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 0;
}

.payment-form {
    margin-bottom: 40px;
}

.wallet-section {
    margin-bottom: 30px;
}

.wallet-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f0b90b;
    font-weight: 600;
}

.wallet-address {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.wallet-address input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(240, 185, 11, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.wallet-address input:focus {
    outline: none;
    border-color: #f0b90b;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.3);
}

.copy-btn {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.4);
}

.network-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffa726;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.network-warning i {
    font-size: 1rem;
}

.payment-form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #f0b90b;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.3);
}

.form-group input::placeholder {
    color: #888;
}

.required {
    display: none;
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #f0b90b, #d4a017);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.payment-instructions {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.95rem;
}

.instruction-item:last-child {
    margin-bottom: 0;
}

.instruction-item i {
    color: #00ff88;
    font-size: 1.1rem;
    width: 20px;
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px;
    background: rgba(240, 185, 11, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 16px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-item i {
    color: #f0b90b;
    font-size: 1.2rem;
}

/* Responsive Payment Page */
@media (max-width: 768px) {
    .payment-container {
        padding: 40px 15px;
    }
    
    .payment-header h1 {
        font-size: 2rem;
    }
    
    .payment-content {
        padding: 30px 20px;
    }
    
    .payment-info h2 {
        font-size: 1.5rem;
    }
    
    .wallet-address {
        flex-direction: column;
    }
    
    .copy-btn {
        justify-content: center;
    }
    
    .security-features {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .payment-container {
        padding: 30px 10px;
    }
    
    .payment-header h1 {
        font-size: 1.8rem;
    }
    
    .payment-content {
        padding: 25px 15px;
    }
    
    .payment-info h2 {
        font-size: 1.3rem;
    }
    
    .wallet-address input {
        font-size: 0.8rem;
    }
    
    .form-group input {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 15px 25px;
    }
}
