/* ============================================
   TORZON MARKET - CYBERPUNK NEON DESIGN
   ============================================ */

/* Google Fonts - UNIFIED across all pages */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

/* CSS Variables - Color Palette - UNIFIED DESIGN */
:root {
    --color-primary: #00d9ff;
    --color-secondary: #b74fff;
    --color-accent: #ff006e;
    --color-bg-dark: #0a0f1e;
    --color-bg-card: #0f1729;
    --color-bg-card-alt: #1a1f3a;
    --color-text-primary: #ffffff;
    --color-text-secondary: #c0c8d8;
    --color-text-light: #e0e6f0;
    --color-border: #1a1f2e;
    --color-glow: rgba(0, 217, 255, 0.3);
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --gradient-primary: linear-gradient(135deg, #00d9ff, #00b8d4);
    --gradient-bg: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 50%, #0f1729 100%);
    --gradient-card: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

h3 {
    font-size: 1.9rem;
    color: var(--color-text-primary);
}

h4 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 2;
    font-size: 1.25rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

a:hover {
    text-shadow: 0 0 10px var(--color-primary);
}

code {
    font-family: 'Fira Code', monospace;
    background-color: rgba(0, 217, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    color: var(--color-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9), rgba(15, 20, 31, 0.9));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0, 217, 255, 0.2)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0, 217, 255, 0.15)),
        radial-gradient(1px 1px at 50px 50px, #fff, rgba(0, 217, 255, 0.1)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0, 217, 255, 0.1));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particle-drift 20s linear infinite;
}

@keyframes particle-drift {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 217, 255, 0.4); }
    50% { text-shadow: 0 0 40px rgba(0, 217, 255, 0.8); }
}

.typing {
    display: inline-block;
    border-right: 3px solid var(--color-primary);
    animation: typing 3s steps(20, end), blink 0.7s infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--color-text-secondary);
    line-height: 2;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left var(--transition-normal);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    line-height: 2;
}

/* Security Section */
.security-section {
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.5), rgba(15, 20, 31, 0.5));
}

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

.security-card {
    background: rgba(15, 20, 31, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.security-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(183, 79, 255, 0.2));
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.security-card h3 {
    margin-bottom: 1rem;
}

.security-card p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.9;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

.card-link:hover {
    gap: 1rem;
}

/* Features Section */
.features-section {
    background: rgba(0, 217, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(15, 20, 31, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(183, 79, 255, 0.2);
    transform: translateY(-3px);
}

.feature-card h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* Mirrors Section */
.mirrors-section {
    background: linear-gradient(180deg, rgba(15, 20, 31, 0.5), rgba(10, 14, 26, 0.5));
}

.mirrors-info {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.mirrors-info p {
    margin-bottom: 1rem;
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mirror-card {
    background: rgba(15, 20, 31, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.mirror-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.mirror-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mirror-label {
    font-weight: 600;
    color: var(--color-text-primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-online {
    background: rgba(0, 217, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.badge-verified {
    background: rgba(0, 217, 255, 0.1);
    color: var(--color-primary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.mirror-link {
    display: block;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: 'Fira Code', monospace;
    font-size: 1.05rem;
    word-break: break-all;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.mirror-link:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--color-primary);
}

.mirror-meta {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
}

.mirror-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: rgba(0, 217, 255, 0.02);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 20, 31, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.05);
    color: var(--color-primary);
}

.faq-question svg {
    transition: transform var(--transition-normal);
    color: var(--color-primary);
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    background: rgba(0, 217, 255, 0.02);
    border-top: 1px solid var(--color-border);
}

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

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.5), rgba(15, 20, 31, 0.5));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(15, 20, 31, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.review-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.review-meta time {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.review-card p {
    margin-bottom: 1rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9), rgba(15, 20, 31, 0.9));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 2;
}

.about-content {
    padding: 4rem 0;
}

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

.about-section h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.about-section p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .security-grid,
    .features-grid,
    .mirrors-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
/* ============================================
   NEW SECTIONS STYLES
   ============================================ */

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9), rgba(15, 20, 31, 0.9));
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(183, 79, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.step-content {
    flex: 1;
    background: rgba(15, 20, 31, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.step-content:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    transform: translateX(10px);
}

.step-content h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Protocols Section */
.protocols-section {
    background: rgba(0, 217, 255, 0.03);
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.protocol-card {
    background: rgba(15, 20, 31, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.protocol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.protocol-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15);
    transform: translateY(-5px);
}

.protocol-card:hover::before {
    opacity: 1;
}

.protocol-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(183, 79, 255, 0.1));
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.protocol-card h3 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.protocol-card p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.protocol-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.protocol-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 1.15rem;
}

.protocol-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Enhanced FAQ Styles */
.faq-question {
    text-align: left;
    width: 100%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 217, 255, 0.02);
}

.faq-answer.show {
    max-height: 1000px; /* Increased to accommodate content */
}

.faq-answer p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-answer.show p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .process-steps::before {
        left: 30px;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
    }
    
    .protocol-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-content:hover {
        transform: translateY(-5px);
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95), rgba(15, 20, 31, 0.95));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(183, 79, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 2;
}

.about-content {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.about-section h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.about-section p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-section strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-section ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.about-section ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.about-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   GALLERY STYLES
   ============================================ */

.gallery-section {
    margin-top: 60px;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.gallery-intro p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.gallery-item {
    background: rgba(15, 20, 31, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.9), rgba(183, 79, 255, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
}

.gallery-label {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bg-dark);
}

.gallery-content {
    padding: 2rem;
}

.gallery-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.gallery-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* ============================================
   LIGHTBOX MODAL STYLES
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

.lightbox-caption {
    max-width: 800px;
    text-align: center;
    background: rgba(15, 20, 31, 0.9);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.lightbox-title {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.lightbox-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(0, 217, 255, 0.2);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   RESPONSIVE STYLES FOR ABOUT PAGE
   ============================================ */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 60px 20px;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.5rem;
    }
    
    .about-section p {
        font-size: 1rem;
        text-align: left;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        gap: 1.5rem;
    }
    
    .lightbox-caption {
        padding: 1.5rem;
    }
    
    .lightbox-title {
        font-size: 1.4rem;
    }
    
    .lightbox-description {
        font-size: 1.15rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.6rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .about-section h3 {
        font-size: 1.3rem;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .gallery-description {
        font-size: 1.15rem;
    }
    
    .lightbox-image {
        max-height: 50vh;
    }
}

/* ============================================
   SEO CONTENT SECTION STYLES
   ============================================ */

.seo-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text-secondary);
}

.seo-article h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.seo-article h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.seo-article h4 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-article p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-article ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.seo-article ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.seo-article ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.seo-article strong {
    color: var(--color-primary);
    font-weight: 600;
}

.seo-article em {
    color: var(--color-secondary);
    font-style: italic;
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 60px 20px;
    }
    
    .seo-article h2 {
        font-size: 2rem;
    }
    
    .seo-article h3 {
        font-size: 1.5rem;
    }
    
    .seo-article h4 {
        font-size: 1.2rem;
    }
    
    .seo-article p {
        font-size: 1rem;
        text-align: left;
    }
}
.sync-status {
    text-align: center;
    margin-bottom: 2rem;
}

.sync-status-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 1.1rem;
}

.badge-primary {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 1.15rem;
    margin-left: 0.5rem;
}

/* ============================================
   ENHANCED GLOW EFFECTS & ANIMATIONS
   ============================================ */

/* Enhanced Card Hover Glow */
.security-card:hover,
.feature-card:hover,
.mirror-card:hover,
.review-card:hover,
.service-card:hover {
    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.3),
        0 0 40px rgba(0, 217, 255, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Neon Border Animation */
@keyframes neon-border {
    0%, 100% { border-color: rgba(0, 217, 255, 0.3); }
    50% { border-color: rgba(0, 217, 255, 0.8); }
}

.security-card:hover,
.feature-card:hover {
    animation: neon-border 2s ease-in-out infinite;
}

/* Enhanced Button Glow */
.btn-primary {
    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.4),
        0 0 30px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.6),
        0 0 50px rgba(0, 217, 255, 0.4),
        0 0 75px rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.5),
        0 0 40px rgba(0, 217, 255, 0.3);
}

/* Logo Glow Enhancement */
.logo-text {
    text-shadow:
        0 0 10px rgba(0, 217, 255, 0.8),
        0 0 20px rgba(0, 217, 255, 0.5),
        0 0 30px rgba(0, 217, 255, 0.3);
}

/* Section Title Glow */
.section-title {
    text-shadow:
        0 0 15px rgba(0, 217, 255, 0.4),
        0 0 30px rgba(0, 217, 255, 0.2);
}

/* Icon Pulse Animation */
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-icon:hover {
    animation: icon-pulse 1s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
}

/* Mirror Link Glow */
.mirror-link:hover {
    box-shadow:
        0 0 10px rgba(0, 217, 255, 0.3),
        inset 0 0 10px rgba(0, 217, 255, 0.1);
}

/* Enhanced FAQ Hover */
.faq-question:hover {
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), transparent);
    padding-left: 1.75rem;
}

/* Footer Link Hover Effect */
.footer-section a:hover {
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
    padding-left: 5px;
}

/* Stat Number Glow */
.stat-number {
    text-shadow:
        0 0 15px var(--color-primary),
        0 0 30px rgba(0, 217, 255, 0.4);
}

/* Badge Glow */
.badge-online {
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.badge-verified {
    box-shadow: 0 0 8px rgba(0, 217, 255, 0.2);
}

/* Navigation Link Hover Glow */
.nav-link:hover {
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.nav-link.active {
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
}

/* Smooth Scroll Indicator Animation */
@keyframes scroll-indicator {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(10px); }
}

/* Enhanced Hero Stats */
.hero-stats {
    box-shadow:
        0 0 30px rgba(0, 217, 255, 0.1),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
}

/* Card Icon Gradient Enhancement */
.card-icon {
    background: linear-gradient(135deg,
        rgba(0, 217, 255, 0.25),
        rgba(183, 79, 255, 0.25));
    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.2),
        inset 0 0 15px rgba(0, 217, 255, 0.1);
}

/* Process Step Number Enhancement */
.step-number {
    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.5),
        0 0 40px rgba(0, 217, 255, 0.2);
}

/* Protocol Card Top Border Glow */
.protocol-card::before {
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

/* ============================================
   UNIFIED BEAUTIFUL COMPONENTS
   ============================================ */

/* Info Boxes with Icons */
.info-box {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.info-box.warning::before {
    background: linear-gradient(90deg, var(--color-warning), #fbbf24);
}

.info-box.success::before {
    background: linear-gradient(90deg, var(--color-success), #34d399);
}

.info-box.danger::before {
    background: linear-gradient(90deg, var(--color-danger), #f87171);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.info-box.warning .info-box-header {
    color: var(--color-warning);
}

.info-box.success .info-box-header {
    color: var(--color-success);
}

.info-box.danger .info-box-header {
    color: var(--color-danger);
}

.info-box-icon {
    font-size: 1.5rem;
}

.info-box-content {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Beautiful Feature Cards */
.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card-v2 {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0, 217, 255, 0.2);
}

.feature-card-v2 .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(183, 79, 255, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.feature-card-v2 h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card-v2 p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Beautiful Styled Lists */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.styled-list li {
    position: relative;
    padding: 15px 15px 15px 50px;
    margin-bottom: 12px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--color-primary);
    color: var(--color-text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.styled-list li:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateX(5px);
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.styled-list.numbered li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
}

.styled-list.numbered {
    counter-reset: list-counter;
}

/* Icon List Style */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--gradient-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.icon-list li:hover {
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
}

.icon-list li .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(183, 79, 255, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.icon-list li .text {
    flex: 1;
}

.icon-list li .text strong {
    display: block;
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 3px;
}

.icon-list li .text span {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Crypto Widget Styles */
.crypto-widget {
    background: var(--gradient-bg);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

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

.crypto-widget-header h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.crypto-widget-header p {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    margin: 0;
}

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

.crypto-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.crypto-card .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.crypto-card .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.crypto-card .symbol {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.crypto-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.crypto-card .change {
    font-size: 1.1rem;
    margin-top: 5px;
}

.crypto-card .change.positive {
    color: var(--color-success);
}

.crypto-card .change.negative {
    color: var(--color-danger);
}

/* News Feed Styles */
.news-feed {
    margin: 40px 0;
}

.news-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.news-feed-header h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 14px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-item:hover {
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateX(5px);
}

.news-item .date {
    min-width: 80px;
    text-align: center;
    padding: 10px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 8px;
}

.news-item .date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.news-item .date .month {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.news-item .content {
    flex: 1;
}

.news-item .content h4 {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.news-item .content p {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-badge.online {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-badge.online .dot {
    background: var(--color-success);
}

.status-badge.offline .dot {
    background: var(--color-danger);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    margin: 60px 0;
}

/* Highlight Text */
.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

.highlight-secondary {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Quote Box */
.quote-box {
    background: var(--gradient-card);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.4);
}

.stat-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.stat-card .label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-top: 5px;
}

/* Animated Background Elements */
.bg-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.bg-decoration.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.bg-decoration.circle-secondary {
    background: radial-gradient(circle, rgba(183, 79, 255, 0.1) 0%, transparent 70%);
}

/* Hero Page Styles */
.page-hero {
    background: var(--gradient-bg);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(183, 79, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.content-section.alt {
    background: rgba(0, 217, 255, 0.02);
}

/* Responsive for new components */
@media (max-width: 768px) {
    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .icon-list {
        grid-template-columns: 1fr;
    }

    .crypto-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-item {
        flex-direction: column;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 480px) {
    .crypto-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}