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

body {
    font-family: 'Nunito', sans-serif;
    background-color: #0E0E14;
    color: #FFFFFF;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 224, 102, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(26, 75, 64, 0.1) 0%, transparent 25%);
}

/* Main Circuit Lines Animation */
.circuit-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    background-image: 
        linear-gradient(to right, #1A4B40 1px, transparent 1px),
        linear-gradient(to bottom, #1A4B40 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuitFlow 20s infinite linear;
}

@keyframes circuitFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Shiba Guide */
.shiba-guide {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

.shiba-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.shiba-guide:hover .shiba-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Right Side Anchor Navigation */
.anchor-nav {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 6px;
}

.anchor-nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    position: relative;
}

.anchor-nav-item:hover,
.anchor-nav-item.active {
    opacity: 1;
}

.anchor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFE066;
    transition: all 0.3s ease;
}

.anchor-nav-item:hover .anchor-dot,
.anchor-nav-item.active .anchor-dot {
    width: 8px;
    height: 8px;
    background-color: #FFE066;
}

.anchor-nav-item.active .anchor-dot {
    background-color: #FFA500;
}

.anchor-label {
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 500;
    margin-right: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    border-radius: 3px;
    transform: translateX(10px);
}

.anchor-nav-item:hover .anchor-label,
.anchor-nav-item.active .anchor-label {
    opacity: 1;
    transform: translateX(0);
}

/* Progress indicator for scroll position */
.anchor-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255, 224, 102, 0.3);
    border-radius: 1px;
    overflow: hidden;
}

.anchor-progress-bar {
    width: 100%;
    background: #FFE066;
    border-radius: 1px;
    transition: height 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

/* Fixed Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(14, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.navbar.scrolled .logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    transition: font-size 0.3s ease;
}

.navbar.scrolled .logo-text {
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFE066;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #FFE066;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #FFE066;
    color: #FFE066;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #FFE066;
    color: #0E0E14;
    box-shadow: 0 0 15px rgba(255, 224, 102, 0.5);
}

.connect-wallet-btn {
    padding: 10px 20px;
    background-color: #FFE066;
    color: #0E0E14;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 224, 102, 0.4);
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-icon:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(14, 14, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 998;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #FFE066;
}

.soon-badge {
    background: linear-gradient(135deg, #FFE066, #FF8C42);
    color: #0E0E14;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: 700;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 224, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
    padding-top: 40px;
}

.mobile-connect-wallet-btn {
    padding: 12px 20px;
    background-color: #FFE066;
    color: #0E0E14;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 224, 102, 0.4);
}

/* Hero Section with Marketing Focus */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-image: url('images/circuit-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.marketing-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 224, 102, 0.1);
    color: #FFE066;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 224, 102, 0.2);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #FFE066;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
    position: relative;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.6);
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #FFE066;
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 15px 30px;
    background-color: #FFE066;
    color: #0E0E14;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 224, 102, 0.4);
}

.btn-secondary {
    padding: 15px 30px;
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.stat-card {
    background-color: rgba(14, 14, 20, 0.6);
    border: 2px solid #FFE066;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 180px;
    text-align: center;
    width: 30%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 75, 64, 0.3);
    border-color: rgba(255, 224, 102, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #FFE066;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-animation {
    position: relative;
    width: 450px;
    height: 450px;
}

.floating-agent {
    position: absolute;
    font-size: 40px;
    animation: floatAgent 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 224, 102, 0.5));
}

.floating-agent:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-agent:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.floating-agent:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.floating-agent:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.floating-agent:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

@keyframes floatAgent {
    0%, 100% {
        transform: translate(var(--x, 0), var(--y, 0)) translateY(0px);
    }
    50% {
        transform: translate(var(--x, 0), var(--y, 0)) translateY(-15px);
    }
}

.hero-image {
    width: 350px;
    height: 350px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FFE066' fill-opacity='0.3' d='M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,165.3C672,149,768,139,864,149.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 100px 0;
    background-image: url('images/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 20, 0.7);
    z-index: 1;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.value-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFE066;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 22px;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(14, 14, 20, 0.8);
    border: 1px solid rgba(255, 224, 102, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFE066, #FF6B6B, #FFE066);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 102, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 224, 102, 0.2);
    border-color: rgba(255, 224, 102, 0.5);
}

.value-card:hover::after {
    left: 100%;
}

.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 224, 102, 0.1);
    border: 2px solid rgba(255, 224, 102, 0.3);
    transition: all 0.6s ease;
    transform-style: preserve-3d;
}

.value-icon svg {
    transition: all 0.6s ease;
    transform: translateZ(10px);
}

.value-card:hover .value-icon {
    background: rgba(255, 224, 102, 0.2);
    border-color: rgba(255, 224, 102, 0.6);
    transform: rotateY(360deg);
}

.value-card:hover .value-icon svg path {
    stroke: #FFE066;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #FFE066;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: rgba(14, 14, 20, 0.6);
    position: relative;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

/* Vertical line connecting steps */
.how-it-works-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50px;
    width: 2px;
    background: linear-gradient(to bottom, #FFE066, rgba(255, 224, 102, 0.2));
}

.work-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

/* Stagger animation for each step */
.work-step:nth-child(1) { animation-delay: 0.1s; }
.work-step:nth-child(2) { animation-delay: 0.2s; }
.work-step:nth-child(3) { animation-delay: 0.3s; }
.work-step:nth-child(4) { animation-delay: 0.4s; }
.work-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(14, 14, 20, 0.8);
    border: 2px solid #FFE066;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: #FFE066;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.work-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 224, 102, 0.5);
}

.step-content {
    flex: 1;
    padding: 20px;
    background-color: rgba(14, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.work-step:hover .step-content {
    border-color: rgba(255, 224, 102, 0.3);
    box-shadow: 0 10px 20px rgba(26, 75, 64, 0.2);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.how-it-works-cta {
    text-align: center;
    margin-top: 80px;
}

.primary-btn {
    padding: 15px 40px;
    background-color: #FFE066;
    color: #0E0E14;
    border: 2px solid #FFE066;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 224, 102, 0.4);
}

/* Responsive design for How It Works section */
@media (max-width: 768px) {
    .how-it-works-steps::before {
        left: 40px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .work-step {
        gap: 20px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    /* Mobile responsive anchor navigation */
    .anchor-nav {
        right: 10px;
        gap: 15px;
        padding: 15px 8px;
    }
    
    .anchor-label {
        display: none; /* Hide labels on mobile for better UX */
    }
    
    .anchor-nav-item {
        padding: 3px 6px;
    }
    
    .anchor-nav-item:hover {
        transform: translateX(-2px);
    }
    
    .anchor-progress {
        width: 1px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 224, 102, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 178, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.feature-section {
    padding: 100px 0;
    background-image: url('images/circuit-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-section:last-child {
    border-bottom: none;
}

.feature-section:nth-child(even) {
    background-image: url('images/circuit-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Reduce spacing between Agent Store and Collaboration Engine */
#agent-store {
    padding-bottom: 60px;
}

#collaboration-engine {
    padding-top: 60px;
    padding-bottom: 80px;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 224, 102, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 178, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#agent-store {
    background: #0a0a0a;
    position: relative;
}

#agent-store::before {
    background: none;
}

/* Agent Store - 海绿色主题 */
#agent-store {
    background: linear-gradient(135deg, #2E8B57 0%, #1a5c3a 100%);
    position: relative;
}

#agent-store::before {
    background: radial-gradient(circle at 70% 30%, rgba(46, 139, 87, 0.2), transparent 50%);
}

#agent-store .feature-item.single-feature .feature-content {
    background: transparent;
    border: none;
}

#agent-store .feature-item.single-feature .feature-image {
    background: transparent;
    border: none;
}

#agent-store .feature-badge {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

#agent-store .feature-badge:hover {
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.6);
}

#agent-store .feature-title {
    color: #FFE066;
}

#agent-store .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

#agent-store .feature-list li {
    color: rgba(255, 255, 255, 0.95);
}

/* 为Agent Store中的4个特定列表项添加黄色中心小点 */
#agent-store .feature-list li::before {
    content: '•' !important;
    color: #FFE066 !important;
    font-size: 24px !important;
    filter: none !important;
    left: 0 !important;
    top: 2px !important;
    position: absolute !important;
}

#agent-store .learn-more-btn {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    box-shadow: 0 10px 35px rgba(46, 139, 87, 0.4);
}

#agent-store .learn-more-btn:hover {
    box-shadow: 0 15px 50px rgba(46, 139, 87, 0.6);
    background: linear-gradient(135deg, #2E8B57, #3CB371);
}

/* Collaboration Engine - 海绿色主题 */
#collaboration-engine {
    background: linear-gradient(135deg, #2E8B57 0%, #1a5c3a 100%);
    position: relative;
}

#collaboration-engine::before {
    background: radial-gradient(circle at 70% 30%, rgba(46, 139, 87, 0.2), transparent 50%);
}

#collaboration-engine .feature-item.single-feature .feature-content {
    background: transparent;
    border: none;
}

#collaboration-engine .feature-item.single-feature .feature-image {
    background: transparent;
    border: none;
}

#collaboration-engine .feature-badge {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

#collaboration-engine .feature-badge:hover {
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.6);
}

#collaboration-engine .feature-title {
    color: #FFE066;
}

#collaboration-engine .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

#collaboration-engine .feature-list li {
    color: rgba(255, 255, 255, 0.95);
}

#collaboration-engine .feature-list li::before {
    color: #90EE90;
    filter: drop-shadow(0 0 5px rgba(144, 238, 144, 0.5));
}

#collaboration-engine .learn-more-btn {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    box-shadow: 0 10px 35px rgba(46, 139, 87, 0.4);
}

#collaboration-engine .learn-more-btn:hover {
    box-shadow: 0 15px 50px rgba(46, 139, 87, 0.6);
    background: linear-gradient(135deg, #2E8B57, #3CB371);
}

/* Revenue System - 海绿色主题 */
#revenue-system {
    background: linear-gradient(135deg, #2E8B57 0%, #1a5c3a 100%);
    position: relative;
}

#revenue-system::before {
    background: radial-gradient(circle at 30% 70%, rgba(46, 139, 87, 0.2), transparent 50%);
}

#revenue-system .feature-item.single-feature .feature-content {
    background: transparent;
    border: none;
}

#revenue-system .feature-item.single-feature .feature-image {
    background: transparent;
    border: none;
}

#revenue-system .feature-badge {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

#revenue-system .feature-badge:hover {
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.6);
}

#revenue-system .feature-title {
    color: #FFE066;
}

#revenue-system .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

#revenue-system .feature-list li {
    color: rgba(255, 255, 255, 0.95);
}

#revenue-system .feature-list li::before {
    color: #90EE90;
    filter: drop-shadow(0 0 5px rgba(144, 238, 144, 0.5));
}

#revenue-system .learn-more-btn {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    box-shadow: 0 10px 35px rgba(46, 139, 87, 0.4);
}

#revenue-system .learn-more-btn:hover {
    box-shadow: 0 15px 50px rgba(46, 139, 87, 0.6);
    background: linear-gradient(135deg, #2E8B57, #3CB371);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-item.single-feature {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 0;
    gap: 100px;
    align-items: center;
}

/* Enhanced Feature Content Styling */
.feature-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.feature-item.single-feature .feature-content {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
    position: relative;
    overflow: visible;
}

.feature-item.single-feature .feature-content::before {
    display: none;
}

.feature-item.single-feature .feature-content:hover {
    transform: none;
    box-shadow: none;
    border-color: none;
}

/* Enhanced Image Styling */
.feature-image {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item.single-feature .feature-image {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
    position: relative;
    overflow: visible;
}

.feature-item.single-feature .feature-image:hover {
    transform: none;
    box-shadow: none;
    border-color: none;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.8);
    transition: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.image-placeholder.agent-store-image {
    height: 550px;
}

.image-placeholder::before {
    display: none;
}

.image-placeholder:hover::before {
    display: none;
}

.image-placeholder:hover {
    transform: none;
    box-shadow: none;
    border-color: none;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.4s ease;
}

/* Enhanced Typography */
.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFE066, #FFD700);
    color: #000000;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 224, 102, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: none;
}

.feature-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 224, 102, 0.5);
}

.feature-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
    color: #FFE066;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-description {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-list {
    list-style: none;
    margin-bottom: 50px;
}

.feature-list li {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.feature-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #FFE066;
    filter: drop-shadow(0 0 5px rgba(255, 224, 102, 0.5));
}

/* Yellow Feature Icons */
.yellow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
}

.yellow-icon.sync-icon::before {
    content: '↻';
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.yellow-icon.chart-icon::before {
    content: '📊';
    font-size: 12px;
}

/* 调整列表项样式以适应图标 */
.feature-list li {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.feature-list li::before {
    display: none;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFE066, #FFD700);
    color: #000000;
    padding: 18px 50px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(255, 224, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 224, 102, 0.6);
    background: linear-gradient(135deg, #FFD700, #FFE066);
}

.feature-content {
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background-color: rgba(255, 224, 102, 0.1);
    color: #FFE066;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFE066;
    text-shadow: none;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-image {
    flex: 1;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.image-placeholder::before {
    display: none;
}

.feature-shiba {
    width: 150px;
    height: 150px;
    animation: float 4s ease-in-out infinite;
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 100px 0;
    background-color: rgba(26, 75, 64, 0.05);
    position: relative;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 60px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ecosystem-card {
    background-color: rgba(14, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 75, 64, 0.3);
    border-color: rgba(255, 224, 102, 0.3);
}

.ecosystem-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.ecosystem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.ecosystem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.quote-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.testimonial-slide:first-child {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    background-color: rgba(14, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 224, 102, 0.2);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.star {
    color: #FFE066;
    font-size: 20px;
    margin: 0 3px;
    text-shadow: 0 0 10px rgba(255, 224, 102, 0.5);
}

.testimonial-quote p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFE066;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #FFE066;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: #FFE066;
    transform: scale(1.2);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: rgba(26, 75, 64, 0.05);
    position: relative;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.toggle-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.save-label {
    background-color: rgba(255, 224, 102, 0.2);
    color: #FFE066;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #FFE066;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: rgba(14, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(26, 75, 64, 0.4);
    border-color: #FFE066;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #FFE066;
    color: #0E0E14;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-value {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    font-size: 16px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-btn.primary {
    background-color: #FFE066;
    color: #0E0E14;
    border-color: #FFE066;
}

.pricing-btn.primary:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 224, 102, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: rgba(14, 14, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 224, 102, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: rgba(255, 224, 102, 0.05);
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding: 0 20px 20px 40px;
    color: rgba(255, 255, 255, 0.7);
    margin: -10px 0 15px 0;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-image: url('images/shibooo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* 添加一个半透明的深色覆盖层，确保文本清晰可读 */
    background-blend-mode: overlay;
    background-color: rgba(14, 14, 20, 0.7);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #0A0A10;
    padding: 60px 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.link-column a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: #FFE066;
    transform: translateX(5px);
}

.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 10px 20px;
    background-color: #FFE066;
    color: #0E0E14;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 224, 102, 0.4);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .value-cards,
    .ecosystem-grid,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .hamburger-btn {
        display: block;
    }
    
    .marketing-hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .value-cards,
    .ecosystem-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: translateY(0);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .marketing-hero-container,
    .value-container,
    .features-container,
    .ecosystem-container,
    .testimonials-container,
    .pricing-container,
    .faq-container,
    .cta-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .anchor-nav {
        display: none;
    }
    
    .hero-animation {
        width: 300px;
        height: 300px;
    }
    
    .floating-agent {
        font-size: 30px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    background-color: rgba(255, 224, 102, 0.1);
    border: 1px solid #FFE066;
    color: #FFE066;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: #FFE066;
    color: #0A0A0F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 224, 102, 0.3);
}

/* Feature Demos Section */
.feature-demos-section {
    padding: 100px 0;
    background-color: #0A0A0F;
    position: relative;
}

.feature-demos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Individual Feature Demo */
.feature-demo {
    background-color: rgba(14, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none; /* Hide all demos by default */
}

.demo-header {
    text-align: center;
    margin-bottom: 40px;
}

.demo-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.demo-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.demo-screenshot {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.demo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.demo-features h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.demo-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.demo-features li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.demo-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: #FFE066;
    border-radius: 50%;
    opacity: 0.7;
}

.demo-actions {
    display: flex;
    gap: 15px;
}

.demo-btn {
    background-color: #FFE066;
    color: #0A0A0F;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background-color: #FFD43B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 224, 102, 0.3);
}

.demo-btn.secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.demo-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

/* Copyright styling */
.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #0A0A0F;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.copyright a {
    color: rgba(255, 224, 102, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #FFE066;
}

/* Agent Store Preview */
.agent-store-preview {
    text-align: center;
    padding: 40px 20px 10px 20px;
    margin: 10px 0 0 0;
}

.agent-store-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.agent-store-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFE066;
    border-radius: 2px;
}

.agent-store-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Simple category grid */
.category-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 224, 102, 0.3);
    transform: translateY(-2px);
}

.category-btn .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.category-btn .label {
    font-weight: 500;
}

.category-btn .count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}
}

/* Simple responsive */
@media (max-width: 768px) {
    .agent-store-title {
        font-size: 2rem;
    }
    
    .category-nav {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-btn {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .agent-store-title {
        font-size: 1.8rem;
    }
    
    .agent-store-subtitle {
        font-size: 1rem;
    }
    
    .category-nav {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* Interactive Carousel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.carousel-group.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-group.prev {
    transform: translateX(-100%);
}

/* Agent Cards */
.agent-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 224, 102, 0.2);
    border-color: rgba(255, 224, 102, 0.3);
}

.agent-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    background: rgba(255, 224, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.agent-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.agent-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.4;
}

.agent-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.rating {
    color: #FFE066;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFE066;
}

/* Carousel Controls */
.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255, 224, 102, 0.3);
    border-color: rgba(255, 224, 102, 0.5);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.9);
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFE066;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 224, 102, 0.5);
}

/* Unified Agent Showcase */
.agents-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.agents-showcase .agent-card {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.agents-showcase .agent-card:hover {
    transform: none;
    box-shadow: none;
    border-color: none;
}

.agents-showcase .agent-image.enhanced {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.agents-showcase .agent-card:hover .agent-image.enhanced {
    transform: none;
    border-color: none;
    box-shadow: none;
}

.agents-showcase .agent-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.agents-showcase .agent-card:hover .agent-icon {
    transform: none;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: none;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.agents-showcase .agent-card:hover .icon-glow {
    opacity: 0;
    animation: none;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

/* Category-specific icon colors */
.trading-icon {
    color: #00ff88;
    text-shadow: none;
}

.social-icon {
    color: #ff6b6b;
    text-shadow: none;
}

.productivity-icon {
    color: #4ecdc4;
    text-shadow: none;
}

.analytics-icon {
    color: #a8e6cf;
    text-shadow: none;
}

.creative-icon {
    color: #ffd93d;
    text-shadow: none;
}

.infrastructure-icon {
    color: #6c5ce7;
    text-shadow: none;
}

.agents-showcase .agent-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.agents-showcase .agent-card:hover .agent-info h4 {
    color: #FFE066;
}

.agents-showcase .agent-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.agents-showcase .agent-card:hover .agent-info p {
    color: rgba(255, 255, 255, 0.9);
}

.agents-showcase .agent-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
    border-top: none;
}

.agents-showcase .rating {
    color: #FFE066;
    font-size: 0.9rem;
    font-weight: 600;
}

.agents-showcase .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFE066;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-group {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .agent-store-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .carousel-group {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .carousel-wrapper {
        height: auto;
        min-height: 300px;
    }
    
    .agent-store-title {
        font-size: 2rem;
    }
    
    .category-nav {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .agent-store-title {
        font-size: 1.8rem;
    }
    
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-wrapper {
        border-radius: 15px;
    }
    
    .agent-card {
        padding: 20px;
    }
    
    .agent-image {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

.rotating-showcase {
    position: relative;
    width: 100%;
    margin: 40px 0;
    overflow-x: hidden;
}

.showcase-container {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.showcase-group {
    display: flex;
    gap: 25px;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.showcase-group.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

/* Agents Grid Horizontal Layout */
.agents-grid {
    display: flex;
    gap: 25px;
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 224, 102, 0.3) rgba(255, 255, 255, 0.1);
}

/* Agent Details Container */
.agent-details {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Agent Name Title - Much Larger Size with Yellow Color */
.agent-name {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #FFE066 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
}

/* Agent Description */
.agent-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Agent Price Style */
.agent-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFE066;
    margin-bottom: 0.8rem;
    margin-top: auto;
    position: relative;
}

/* Agent Meta (Category) Style - Fixed Position */
.agent-meta {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 24px;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 224, 102, 0.1);
    position: relative;
    z-index: 1;
    min-width: 80px;
    justify-content: center;
}

.category-text {
    font-size: 0.7rem;
    color: #FFE066;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Adjust agent details to accommodate fixed category position */
.agent-details {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 15px; /* Add padding to make room for the fixed category */
    position: relative;
}

/* Ensure agent name style is applied with higher specificity */
.agent-card .agent-details h4.agent-name {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #FFE066 !important;
    margin-bottom: 0.5rem !important;
}

/* Version 1.1 - Force browser refresh */
}

.agents-grid::-webkit-scrollbar {
    height: 6px;
}

.agents-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.agents-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 224, 102, 0.3);
    border-radius: 3px;
}

.agents-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 224, 102, 0.5);
}

.agent-card {
    min-width: 280px;
    background: rgba(30, 30, 40, 0.8);
    border: 1px solid rgba(255, 224, 102, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Responsive styles for enhanced feature sections */
@media (max-width: 1200px) {
    .feature-item,
    .feature-item.reverse {
        gap: 60px;
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-title {
        font-size: 42px;
    }
    
    .feature-description {
        font-size: 20px;
    }
    
    .feature-list li {
        font-size: 18px;
    }
    
    .image-placeholder {
        height: 400px;
    }
    
    .feature-item.single-feature .feature-content,
    .feature-item.single-feature .feature-image {
        padding: 40px;
    }
    
    .showcase-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .agents-grid {
        overflow-x: auto;
        padding: 15px 0;
    }
    
    .showcase-container {
        min-height: 600px;
    }
}

@media (max-width: 992px) {
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .feature-content {
        order: 2;
        padding: 0 10px;
    }
    
    .feature-image {
        order: 1;
        padding: 0 10px;
    }
    
    .feature-item.single-feature .feature-content,
    .feature-item.single-feature .feature-image {
        padding: 40px 30px;
    }
    
    .feature-title {
        font-size: 38px;
    }
    
    .feature-description {
        font-size: 19px;
    }
    
    .image-placeholder {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 44px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .feature-section {
        padding: 80px 0;
    }
    
    .feature-item,
    .feature-item.reverse {
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .feature-title {
        font-size: 34px;
    }
    
    .feature-description {
        font-size: 18px;
    }
    
    .feature-list li {
        font-size: 17px;
    }
    
    .feature-badge {
        font-size: 15px;
        padding: 10px 24px;
    }
    
    .learn-more-btn {
        font-size: 17px;
        padding: 16px 45px;
    }
    
    .image-placeholder {
        height: 320px;
        font-size: 60px;
    }
    
    .feature-item.single-feature .feature-content,
    .feature-item.single-feature .feature-image {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 19px;
    }
    
    .showcase-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .showcase-container {
        min-height: 800px;
    }
    
    .showcase-controls {
        gap: 30px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-item,
    .feature-item.reverse {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-title {
        font-size: 30px;
    }
    
    .feature-description {
        font-size: 17px;
    }
    
    .feature-list li {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .feature-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .learn-more-btn {
        font-size: 16px;
        padding: 15px 40px;
    }
    
    .image-placeholder {
        height: 280px;
        font-size: 48px;
        border-radius: 20px;
    }
    
    .feature-item.single-feature .feature-content,
    .feature-item.single-feature .feature-image {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .showcase-container {
        min-height: 700px;
    }
    
    .showcase-group {
        gap: 10px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .feature-section {
        padding: 50px 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .feature-list li {
        font-size: 15px;
    }
    
    .image-placeholder {
        height: 250px;
        font-size: 42px;
    }
    
    .feature-item.single-feature .feature-content,
    .feature-item.single-feature .feature-image {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
}

/* Enhanced Curved Workflow Styles */
.collaboration-showcase {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.collaboration-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 25px;
}

.showcase-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFE066;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 224, 102, 0.4);
}

.showcase-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.collaboration-network {
    position: relative;
    height: 180px;
    background: transparent;
    border: none;
    margin: 20px 0;
}

.workflow-agents {
    position: relative;
    width: 100%;
    height: 100%;
}

.workflow-agent {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: agentFloat 4s ease-in-out infinite;
}

.workflow-agent:nth-child(1) { animation-delay: 0s; }
.workflow-agent:nth-child(2) { animation-delay: 0.8s; }
.workflow-agent:nth-child(3) { animation-delay: 1.6s; }
.workflow-agent:nth-child(4) { animation-delay: 2.4s; }
.workflow-agent:nth-child(5) { animation-delay: 3.2s; }

@keyframes agentFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.workflow-agent:hover {
    transform: none;
    z-index: 20;
}

.workflow-agent .agent-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 15px;
    backdrop-filter: none;
    transition: all 0.4s ease;
    box-shadow: none;
}

.workflow-agent:hover .agent-node {
    border-color: none;
    box-shadow: none;
    background: transparent;
}

.workflow-agent .agent-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.workflow-agent:hover .agent-icon {
    transform: none;
    background: transparent;
}

.workflow-agent .agent-icon svg {
    transition: all 0.3s ease;
}

.workflow-agent:hover .agent-icon svg {
    filter: drop-shadow(0 0 8px currentColor);
}

.workflow-agent .agent-name {
    font-size: 12px;
    font-weight: 600;
    color: #FFE066;
    text-shadow: 0 0 5px rgba(255, 224, 102, 0.3);
}

/* Center Create node special styling */
.workflow-agent:nth-child(3) .agent-node {
    background: transparent;
    border-color: none;
    box-shadow: none;
}

.workflow-agent:nth-child(3) .agent-name {
    color: #fff;
    font-weight: 700;
}

/* Curved connection animations */
.workflow-agents svg path {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.workflow-agent:hover ~ svg path {
    opacity: 1;
}

.network-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.network-stats .stat-item {
    text-align: center;
    padding: 12px 18px;
    background: transparent;
    border: none;
    border-radius: 12px;
    backdrop-filter: none;
    transition: all 0.3s ease;
    min-width: 70px;
}

.network-stats .stat-item:hover {
    transform: translateY(-3px);
    box-shadow: none;
    border-color: none;
}

.network-stats .stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #FFE066;
    margin-bottom: 3px;
    text-shadow: 0 0 10px rgba(255, 224, 102, 0.3);
}

.network-stats .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .collaboration-showcase {
        padding: 20px;
        margin: 20px 0;
    }
    
    .collaboration-network {
        height: 150px;
    }
}

/* Revenue System Showcase */
.revenue-showcase {
    background: transparent;
    border: none;
    border-radius: 25px;
    padding: 40px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: none;
    box-shadow: none;
}

.revenue-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.revenue-showcase .showcase-header {
    text-align: center;
    margin-bottom: 35px;
}

.revenue-showcase .showcase-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revenue-showcase .showcase-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.revenue-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.revenue-card {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.revenue-card.primary {
    background: transparent;
    border-color: none;
    box-shadow: none;
}

.revenue-card:hover {
    transform: none;
    border-color: none;
    box-shadow: none;
    background: transparent;
}

.revenue-card.primary:hover {
    background: transparent;
    box-shadow: none;
}

.revenue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.15), transparent);
    transition: left 0.6s ease;
}

.revenue-card:hover::before {
    left: 100%;
}

.revenue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.revenue-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4));
    animation: pulse 2s infinite;
}

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

.revenue-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid rgba(76, 175, 80, 0.5);
    animation: statusPulse 2s infinite;
}

.revenue-status.active {
    background: #4CAF50;
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.revenue-status.auto {
    background: #2196F3;
    border-color: #2196F3;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.revenue-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.revenue-amount {
    color: #4CAF50;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
    letter-spacing: -0.5px;
}

.revenue-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.revenue-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 2px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.revenue-trend {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid;
    transition: all 0.3s ease;
}

.revenue-trend.positive {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
}

.revenue-trend.auto {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.4);
}

.revenue-dashboard {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.dashboard-header h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.last-updated {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dashboard-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.1);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.3));
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.stat-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-change {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .revenue-showcase {
        padding: 25px;
        margin: 25px 0;
    }
    
    .revenue-preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .revenue-card {
        padding: 25px 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-stat {
        padding: 15px;
    }
    
    .revenue-showcase .showcase-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .revenue-showcase {
        padding: 20px;
        margin: 20px 0;
    }
    
    .revenue-amount {
        font-size: 1.6rem;
    }
    
    .revenue-icon {
        font-size: 2.2rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Enhanced Collaboration Network */
.collaboration-network {
    position: relative;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 224, 102, 0.15);
    backdrop-filter: blur(15px);
    padding: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.collaboration-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 224, 102, 0.03) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .revenue-showcase,
    .collaboration-showcase {
        padding: 20px;
        margin: 20px 0;
    }
    
    .revenue-preview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .revenue-stats,
    .network-stats {
        gap: 20px;
    }
    
    .revenue-card,
    .revenue-stats .stat-item {
        padding: 20px;
    }
    
    .collaboration-network {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .revenue-amount {
        font-size: 1.4rem;
    }
    
    .revenue-icon {
        font-size: 2rem;
    }
}
    
    .showcase-header h3 {
        font-size: 20px;
    }
    
    .workflow-agent .agent-node {
        width: 70px !important;
        height: 70px !important;
        padding: 8px;
    }
    
    .workflow-agent .agent-icon {
        width: 35px;
        height: 35px;
    }
    
    .workflow-agent .agent-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .workflow-agent .agent-name {
        font-size: 10px;
    }
    
    .network-stats {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .network-stats .stat-item {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .network-stats .stat-number {
        font-size: 16px;
    }
    
    .network-stats .stat-label {
        font-size: 9px;
    }
}

.agent-info {
    text-align: center;
}

.agent-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #FFE066;
    margin-bottom: 2px;
}

.agent-role {
    font-size: 10px;
    color: #A0AEC0;
    opacity: 0.8;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFE066, transparent);
    animation: dataFlow 4s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
}

.connection-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FFE066, transparent);
    animation: pulseLine 2s ease-in-out infinite;
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulseLine {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.flow-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #FFE066, rgba(255,224,102,0.5));
    border-radius: 50%;
    animation: flowAnimation var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px rgba(255,224,102,0.5);
}

@keyframes flowAnimation {
    0% {
        transform: translate(300px, 300px) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translate(300px, 300px) scale(1);
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(300px + 180px * cos(var(--angle, 0deg))),
            calc(300px + 180px * sin(var(--angle, 0deg)))
        ) scale(0);
        opacity: 0;
    }
}

.flow-particle:nth-child(1) { --angle: 0deg; }
.flow-particle:nth-child(2) { --angle: 72deg; }
.flow-particle:nth-child(3) { --angle: 144deg; }
.flow-particle:nth-child(4) { --angle: 216deg; }
.flow-particle:nth-child(5) { --angle: 288deg; }

.network-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,224,102,0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,224,102,0.1);
    border-color: #FFE066;
    box-shadow: 0 5px 20px rgba(255,224,102,0.2);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFE066, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.stat-label {
    font-size: 14px;
    color: #A0AEC0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .collaboration-showcase {
        margin: 40px 0;
        padding: 40px 20px;
    }
    
    .collaboration-network {
        width: 400px;
        height: 400px;
    }
    
    .showcase-header h3 {
        font-size: 28px;
    }
    
    .network-agent {
        width: 90px;
        height: 90px;
    }
    
    .agent-node {
        width: 75px;
        height: 75px;
    }
    
    .agent-name {
        font-size: 11px;
    }
    
    .agent-role {
        font-size: 9px;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .collaboration-showcase {
        padding: 30px 15px;
    }
    
    .collaboration-network {
        width: 280px;
        height: 280px;
    }
    
    .showcase-header h3 {
        font-size: 24px;
    }
    
    .network-agent {
        width: 70px;
        height: 70px;
    }
    
    .agent-node {
        width: 60px;
        height: 60px;
    }
    
    .agent-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .agent-name {
        font-size: 9px;
    }
    
    .agent-role {
        display: none;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FFE066;
    border-radius: 50%;
    opacity: 0;
    animation: dataFlow var(--duration) linear infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 6px #FFE066;
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateX(-5px) translateY(-5px);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(805px) translateY(505px);
    }
}

@keyframes flowConnection {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 224, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 224, 102, 0.6);
    }
}

.collaboration-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 224, 102, 0.1);
    border: 1px solid rgba(255, 224, 102, 0.2);
    border-radius: 15px;
    min-width: 110px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 224, 102, 0.15);
    border-color: #FFE066;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 224, 102, 0.2);
}

.stat-number {
    font-size: 22px;
    font-weight: bold;
    color: #FFE066;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 224, 102, 0.8);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Collaboration */
@media (max-width: 1200px) {
    .collaboration-network {
        height: 400px;
        max-width: 600px;
    }
    
    .network-agent[data-agent="translator"] {
        top: 80%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .connection-line[data-from="translator"][data-to="master"] {
        top: 80%;
        left: 50%;
        width: 20%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@media (max-width: 768px) {
    .collaboration-network {
        height: 350px;
        max-width: 400px;
    }
    
    .collaboration-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .collaboration-showcase {
        padding: 20px 10px;
    }
    
    .collaboration-network {
        height: 300px;
        max-width: 320px;
    }
    
    .hub-node {
        width: 70px;
        height: 70px;
    }
    
    .hub-node span {
        font-size: 9px;
    }
    
    .agent-node {
        padding: 10px;
        min-width: 70px;
    }
    
    .agent-node span {
        font-size: 9px;
    }
    
    .connection-line {
        height: 1px;
    }
}