:root {
    --neon-blue: #00d4ff;
    --neon-purple: #7e5bff;
    --neon-pink: #ff0078;
    --neon-green: #00ff88;
    --dark-bg: #0f0f1a;
    --darker-bg: #0a0a12;
    --card-bg: rgba(30, 30, 50, 0.5);
    --text-primary: #e0e0ff;
    --text-secondary: #a0a0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    background-image: radial-gradient(circle at 20% 30%, rgba(126, 91, 255, 0.15) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 30%);
    overflow-x: hidden;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* Navigation Bar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(15, 15, 30, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 100, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

.nav-links a.active {
    color: var(--neon-green);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.cta-button {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(126, 91, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(126, 91, 255, 0.8);
}

.download-btn {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    margin-left: 15px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Page Header */

.page-header {
    text-align: center;
    padding: 150px 5% 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Steps Container */

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-green));
}

.step-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    filter: saturate(1.2) contrast(1.1);
}

.step:hover .step-image {
    transform: scale(1.03);
}

.step-content {
    flex: 1;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(126, 91, 255, 0.5);
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.network-badges {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.network-badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--neon-blue);
}


/* FAQ Section */

.faq {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--neon-green);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 100, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-blue);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* Footer */

footer {
    background: var(--darker-bg);
    padding: 70px 5% 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    border-top: 1px solid rgba(100, 100, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(100, 100, 255, 0.1);
    color: var(--text-secondary);
}


/* Responsive Design */

@media (max-width: 992px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    .step-image {
        width: 100%;
        max-width: 400px;
    }
    .step-number {
        margin: 0 auto 20px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .step h3 {
        font-size: 1.5rem;
    }
}


/* Animations */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}


/* Hero Section */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #00d4ff, #7e5bff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.hero-image {
    width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    filter: saturate(1.2) contrast(1.1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(126, 91, 255, 0.2), rgba(0, 212, 255, 0.2));
    z-index: 2;
    border-radius: 20px;
}


/* Features Section */

.features {
    padding: 100px 5%;
    background: rgba(15, 15, 30, 0.7);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.glow-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glowy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 91, 255, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(126, 91, 255, 0.1), transparent 70%);
    z-index: -1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 30, 50, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    animation: pulse 3s infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
    text-align: center;
}

.feature-card p {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.card-accent-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    margin: 20px auto 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}


/* Pricing Section */

.pricing {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.pricing-subtext {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.rate-display {
    font-size: 4rem;
    font-weight: 700;
    margin: 30px auto;
    position: relative;
    display: inline-block;
    color: var(--neon-green);
}

.rate-value {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.rate-label {
    font-size: 1.2rem;
    display: block;
    color: var(--text-secondary);
    margin-top: 10px;
}

.rate-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2), transparent 70%);
    z-index: -1;
    border-radius: 50%;
}


/* Rate Comparison Section */

.rate-comparison {
    padding: 100px 5%;
    background: rgba(15, 15, 30, 0.7);
    backdrop-filter: blur(10px);
    display: none;
}

.comparison-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(100, 100, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--neon-blue);
    font-size: 2rem;
}

.comparison-table {
    width: 100%;
    margin-bottom: 30px;
}

.table-row {
    display: flex;
    border-bottom: 1px solid rgba(100, 100, 255, 0.1);
}

.table-row.header {
    font-weight: 600;
    color: var(--neon-blue);
    border-bottom: 2px solid var(--neon-blue);
}

.table-cell {
    flex: 1;
    padding: 15px;
    text-align: left;
}

.table-row:nth-child(even) {
    background: rgba(30, 30, 50, 0.3);
}

.table-row:last-child {
    border-bottom: none;
}

.market-avg {
    background: rgba(30, 30, 50, 0.5) !important;
    font-weight: 600;
}

.coin9x-highlight {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue)) !important;
    color: white;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
}

.refresh-text {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
}


/* Live Trades Section */

.coin9x-live-trades {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}


/* Testimonials Section */

.testimonials {
    padding: 100px 5%;
    background: rgba(15, 15, 30, 0.7);
    backdrop-filter: blur(10px);
}


/* CTA Buttons */

.cta-button {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(126, 91, 255, 0.5);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(126, 91, 255, 0.8);
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

.secondary-glow {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
}


/* Animations */

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(126, 91, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(126, 91, 255, 0.8);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}


/* Responsive Design */

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 5% 60px;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-image {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .rate-display {
        font-size: 3rem;
    }
}


/* live tradescss */

.live-trades {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 100, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.live-trades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88 0%, #7e5bff 50%, #ff0078 100%);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.trades-container {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: rgba(15, 15, 30, 0.7);
    border: 1px solid rgba(100, 100, 255, 0.1);
}

.trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(100, 100, 255, 0.05);
    font-family: 'Courier New', monospace;
    color: #e0e0ff;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.trade-item:hover {
    background: rgba(100, 100, 255, 0.05);
}

.trade-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #00ff88;
}

.trade-amount {
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.trade-rate {
    font-weight: bold;
    color: #7e5bff;
}

.trade-time {
    font-size: 0.8em;
    color: #a0a0ff;
    opacity: 0.8;
}

.trade-user {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    background: linear-gradient(135deg, #7e5bff 0%, #00d4ff 100%);
}


/* Futuristic Crypto Dashboard Styles */

.crypto-rates-dashboard {
    max-width: 1200px;
    margin: 2rem auto;
    background: #0a0e17;
    border-radius: 12px;
    border: 1px solid #1e2a3a;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    overflow: hidden;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    position: relative;
}

.crypto-rates-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #7e5bff 50%, #ff0078 100%);
    animation: rainbow 8s linear infinite;
    z-index: 2;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(10, 20, 30, 0.7);
    border-bottom: 1px solid #1e2a3a;
}

.dashboard-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glow {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

.network-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.status-indicator.active {
    background: #00ff88;
    animation: pulse 1.5s infinite;
}

.rates-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.exchange-rate-card {
    background: linear-gradient(145deg, #121e2d, #0e1722);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #1e2a3a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exchange-rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.exchange-rate-card.featured {
    border: 1px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.exchange-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.exchange-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.binance {
    background-image: url('https://cryptologos.cc/logos/binance-coin-bnb-logo.png');
}

.wazirx {
    background-image: url('https://cryptologos.cc/logos/wazirx-wrx-logo.png');
}

.coindcx {
    background-image: url('https://cryptologos.cc/logos/coindcx-dcx-logo.png');
}

.coin9x {
    background-image: url('https://via.placeholder.com/30');
}


/* Replace with your logo */

.exchange-name {
    font-weight: 600;
    color: #e0e0e0;
    flex-grow: 1;
    font-size: 1.1rem;
}

.api-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.api-status[data-status="inactive"] {
    background: #ff5555;
    box-shadow: 0 0 8px #ff5555;
}

.rate-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.currency-symbol {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.rate-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    flex-grow: 1;
}

.rate-value.loading {
    color: #4a5568;
    background: linear-gradient(90deg, #4a5568 25%, #5a677d 50%, #4a5568 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    width: 120px;
    height: 40px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.trend-indicator {
    width: 24px;
    height: 24px;
    background-size: contain;
}

.trend-indicator.up {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300ff88'%3E%3Cpath d='M5 15l7-7 7 7'/%3E%3C/svg%3E");
}

.trend-indicator.down {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff5555'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

.trend-indicator.neutral {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0a0a0'%3E%3Cpath d='M8 10h8v4H8z'/%3E%3C/svg%3E");
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: #1e2a3a;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.action-button:hover {
    background: #2d3b4f;
    transform: translateY(-2px);
}

.action-button.primary {
    background: linear-gradient(90deg, #00d4ff, #7e5bff);
    color: #0a0e17;
    font-weight: 700;
}

.action-button.primary:hover {
    background: linear-gradient(90deg, #00e4ff, #8e6bff);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.action-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.action-button:hover .action-arrow {
    transform: translateX(3px);
}

.dashboard-footer {
    padding: 1rem 2rem;
    background: rgba(10, 20, 30, 0.7);
    border-top: 1px solid #1e2a3a;
    position: relative;
}

.refresh-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 212, 255, 0.3);
    animation: scan 3s linear infinite;
    opacity: 0;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 1;
    }
}

.countdown {
    font-family: 'Roboto Mono', monospace;
    color: #00d4ff;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .rates-display {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 1rem;
    }
    .dashboard-title {
        font-size: 1.2rem;
    }
    .rate-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .rate-value {
        font-size: 1.8rem;
    }
}

.change-value {
    font-size: 0.9em;
    margin-left: 8px;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.3s ease;
}

.change-value.up {
    color: #00ff88;
}

.change-value.down {
    color: #ff5555;
}

.change-value.neutral {
    color: #a0a0a0;
}

.trend-indicator {
    margin-left: 5px;
}


/* Tooltip styles */

[title] {
    position: relative;
}

[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    z-index: 10;
}


/* Crypto Rate Section Styles */

.crypto-rate {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.rate-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 100, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.rate-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(126, 91, 255, 0.1), transparent 70%);
    z-index: -1;
}

.rate-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.rate-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 30, 50, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.rate-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.rate-header h3 {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin: 0;
}

.live-badge {
    margin-left: auto;
    background: rgba(255, 0, 120, 0.2);
    color: var(--neon-pink);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

.rate-value-container {
    text-align: center;
    margin-bottom: 25px;
}

.rate-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-right: 5px;
}

.value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.rate-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    background: rgba(30, 30, 50, 0.5);
    border-radius: 8px;
}

.comparison-item.positive {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
}

.exchange {
    font-weight: 500;
}

.rate {
    font-weight: 600;
}

.rate-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.update-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.update-time i {
    margin-right: 5px;
    color: var(--neon-blue);
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}


/* Testimonials Section Styles */

.tech-testimonials {
    padding: 100px 5%;
    background: rgba(15, 15, 30, 0.7);
    backdrop-filter: blur(10px);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(100, 100, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(126, 91, 255, 0.1), transparent 70%);
    z-index: -1;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 15px;
    position: relative;
}

.avatar::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    animation: pulse 3s infinite;
}

.user-details {
    flex: 1;
}

.user-details h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.user-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 3px;
}

.user-location i {
    margin-right: 5px;
    color: var(--neon-pink);
}

.rating {
    color: var(--neon-green);
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--neon-blue);
    opacity: 0.3;
}

.trade-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    background: rgba(30, 30, 50, 0.5);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    display: block;
    font-weight: 600;
    color: var(--neon-blue);
    font-size: 1.1rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 3px;
}


/* Animations */

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(126, 91, 255, 0.8);
}


/* Responsive Design */

@media (max-width: 768px) {
    .rate-main {
        flex-direction: column;
        align-items: center;
    }
    .currency {
        margin-right: 0;
        margin-bottom: -10px;
    }
    .rate-footer {
        flex-direction: column;
        gap: 15px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


/* Updated styles for the live badge */

.live-badge.always-green {
    background: rgba(0, 255, 136, 0.2) !important;
    color: var(--neon-green) !important;
}

.live-badge.always-green .pulse-dot {
    background: var(--neon-green) !important;
    box-shadow: 0 0 10px var(--neon-green);
}

.live-badge.error-mode {
    /* background: rgba(255, 0, 120, 0.2) !important; */
    /* color: var(--neon-pink) !important; */
}

.live-badge.error-mode .pulse-dot {
    background: var(--neon-pink) !important;
    box-shadow: 0 0 10px var(--neon-pink);
    animation: none;
}


/* Remove compare button styles */

.rate-footer .cta-button {
    display: none;
}


/* Enhanced number display */

#coin9x-rate {
    font-size: 3.8rem;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

#market-avg {
    font-weight: 600;
    color: var(--text-primary);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    #coin9x-rate {
        font-size: 3rem;
    }
    .rate-comparison {
        flex-direction: column;
        gap: 8px;
    }
}