/* Updated: 1757454944.891296 */

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-preview-image {
    object-fit: cover;
    object-position: center;
    will-change: transform;
}


/* Medium mobile screens (481px to 640px) */
@media (max-width: 640px) and (min-width: 481px) {
    .nav-logo h1,
    .nav-logo .logo-text {
        font-size: 1.3rem; /* Intermediate size for medium mobile */
    }
}

/* CSS Variables - Dark Theme */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #31cafd;
    --border: #2a2a2a;
    --card-bg: #1a1a1a;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    
    /* Common */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    /* Glow effects */
    --glow-primary: 0 0 18px rgba(49, 202, 253, 0.18);
    --glow-secondary: 0 0 25px rgba(49, 202, 253, 0.12);
    --glow-hover: 0 0 30px rgba(49, 202, 253, 0.25);
    --glow-accent: 0 0 22px rgba(49, 202, 253, 0.22);
    
    /* Blue color variations for smooth transitions */
    --blue-light: rgba(49, 202, 253, 0.08);
    --blue-medium: rgba(49, 202, 253, 0.15);
    --blue-strong: rgba(49, 202, 253, 0.25);
    
    /* Smooth section transitions */
    --section-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme class - ensures dark theme is applied */
.dark-theme {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #31cafd;
    --border: #2a2a2a;
    --card-bg: #1a1a1a;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* Reset and base styles - Optimized for performance */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Use contain property for better performance */
* {
    contain: layout style;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    /* Optimized transition - only animate necessary properties */
    transition: background-color 0.3s ease, color 0.3s ease;
    scroll-padding-top: 70px;
    /* Improve text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Enable hardware acceleration */
    transform: translateZ(0);
    will-change: auto;
}


html {
    scroll-behavior: smooth;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




.slider {
    background: var(--bg-secondary);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.slider:before {
    background: var(--accent);
    bottom: 2px;
    content: "";
    height: 32px;
    left: 2px;
    position: absolute;
    transition: all 0.3s ease;
    width: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked + .slider {
    background: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(18px);
    background: white;
}

.slider .sun,
.slider .moon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 2;
    color: white;
}

.slider .sun {
    left: 6px;
    opacity: 0;
}

.slider .moon {
    right: 6px;
    opacity: 1;
}

input:checked + .slider .sun {
    opacity: 1;
}

input:checked + .slider .moon {
    opacity: 0;
}


/* Header and Navigation */
.header {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1005; /* Higher than mobile menu and logo */
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -20px; /* Move logo further left on desktop */
}

.nav-logo h1,
.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0; /* Make Torzon text solid without spaces */
}

/* Logo image styles */
.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.nav-logo .drug {
    color: var(--text-primary);
}

.nav-logo .hub,
.hub {
    color: var(--text-primary);
}

/* White Torzon color for blue background sections */
.cta-section .hub,
.access-cta .hub {
    color: white;
}


.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.status-indicator.online {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-indicator.online::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.8s ease;
}

.status-indicator.online:hover::before {
    left: 100%;
}

.status-indicator.online:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4), 0 0 25px rgba(0, 255, 136, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    position: relative;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: statusRipple 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes statusRipple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content - New Structure */
.main-content {
    position: relative;
    width: 100%;
}

/* Hero Section - Fixed Design */
.hero-section {
    position: relative;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    height: 100vh;
    width: 100%;
    margin-top: 0;
    box-sizing: border-box;
    transform: none !important;
    will-change: auto;
    scroll-margin-top: 70px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 0 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 6s ease-in-out infinite;
}

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

/* Performance-optimized animations using transform3d for hardware acceleration */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Slight right shift of hero image on large screens for visual symmetry */
@media (min-width: 1200px) {
    .hero-image {
        margin-left: 40px;
    }
}

/* Hero animations */
.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #31cafd, #5dd3fd, #7dd8fd, #31cafd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(49, 202, 253, 0.5);
}

.hero-title .drug {
    color: var(--text-primary);
}

.hero-title .hub {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 202, 253, 0.15), rgba(255, 255, 255, 0.08));
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(49, 202, 253, 0.3), 0 0 25px rgba(49, 202, 253, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.stat:hover::before {
    background: linear-gradient(135deg, rgba(49, 202, 253, 0.25), rgba(255, 255, 255, 0.12));
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #2bb8e6 50%, #5dd3fd 100%);
    background-size: 300% 300%;
    color: white;
    box-shadow: 0 4px 15px rgba(49, 202, 253, 0.3), 0 0 18px rgba(49, 202, 253, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.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: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2bb8e6 0%, var(--accent) 50%, #5dd3fd 100%);
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 202, 253, 0.4), 0 0 25px rgba(49, 202, 253, 0.22);
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--border);
}

/* Market Preview */
.market-preview {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 500px;
}

.preview-header {
    background-color: var(--bg-secondary);
    padding: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot.red { background-color: #dc3545; }
.preview-dot.yellow { background-color: #7dd8fd; }
.preview-dot.green { background-color: #28a745; }

.preview-content {
    padding: 30px;
}


.photo-placeholder {
    text-align: center;
    color: var(--text-secondary);
}

.photo-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.photo-placeholder p {
    font-size: 0.9rem;
    margin: 0;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: 50%;
}

.preview-text h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.preview-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

/* Section titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Features Section - New Design */
.features-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 0;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite reverse;
}

.features-section .container {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* For large screens make 3x2 grid for Core Features */
@media (min-width: 1200px) {
    .features-grid.core-features {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

/* Feature cards - Performance optimized */
.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 15px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    /* Optimized transition - only animate transform and box-shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    /* Enable hardware acceleration */
    transform: translateZ(0);
    will-change: transform;
    /* Improve rendering performance */
    contain: layout style paint;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(49, 202, 253, 0.18);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Blue gradient style for all icons in "Why Choose Torzon?" */
.features-section .feature-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.features-section .feature-card:hover .feature-icon {
    background-position: 100% 100%;
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

/* Blue gradient style for Core Features icons */
.core-features .feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.core-features .feature-card:hover .feature-icon {
    background-position: 100% 100%;
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

/* Animation delays for core features */
.core-features .feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.core-features .feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.core-features .feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.core-features .feature-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.core-features .feature-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.core-features .feature-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* Blue gradient style for all page icons */
.value-icon,
.team-avatar,
.achievement-icon,
.tech-icon,
.advanced-icon,
.security-feature-icon,
.ux-icon,
.link-status,
.warning-icon,
.issue-icon,
.security-icon,
.trouble-icon,
.safety-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon,
.team-card:hover .team-avatar,
.achievement-card:hover .achievement-icon,
.tech-item:hover .tech-icon,
.advanced-card:hover .advanced-icon,
.security-feature:hover .security-feature-icon,
.ux-card:hover .ux-icon,
.warning-card:hover .warning-icon,
.issue-card:hover .issue-icon,
.security-item:hover .security-icon,
.trouble-card:hover .trouble-icon,
.safety-card:hover .safety-icon {
    background-position: 100% 100%;
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Special styles for new cards */
.feature-card:nth-child(5) .feature-icon,
.feature-card:nth-child(6) .feature-icon,
.feature-card:nth-child(7) .feature-icon,
.feature-card:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:nth-child(5):hover,
.feature-card:nth-child(6):hover,
.feature-card:nth-child(7):hover,
.feature-card:nth-child(8):hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(49, 202, 253, 0.25), 0 0 25px rgba(49, 202, 253, 0.2);
}

.feature-card:nth-child(5):hover .feature-icon,
.feature-card:nth-child(6):hover .feature-icon,
.feature-card:nth-child(7):hover .feature-icon,
.feature-card:nth-child(8):hover .feature-icon {
    background-position: 100% 100%;
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

/* Testimonials Section - New Design */
.testimonials-section {
    position: relative;
    background: var(--bg-primary);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow), 0 0 15px rgba(49, 202, 253, 0.12);
    border: 1px solid var(--border);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center;
}

.testimonial-rating .star {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(49, 202, 253, 0.5);
    filter: drop-shadow(0 0 8px rgba(49, 202, 253, 0.4));
    transition: all 0.3s ease;
}

.testimonial-rating .star:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(49, 202, 253, 0.8);
    filter: drop-shadow(0 0 12px rgba(49, 202, 253, 0.6));
}

.testimonial-rating .star.empty {
    color: rgba(255, 255, 255, 0.3);
    text-shadow: none;
    filter: none;
}

.testimonial-rating .star.empty:hover {
    color: rgba(49, 202, 253, 0.6);
    text-shadow: 0 0 8px rgba(49, 202, 253, 0.4);
    filter: drop-shadow(0 0 6px rgba(49, 202, 253, 0.3));
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(49, 202, 253, 0.3), 0 0 25px rgba(49, 202, 253, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(49, 202, 253, 0.3), rgba(49, 202, 253, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.author-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(49, 202, 253, 0.5), 0 0 35px rgba(49, 202, 253, 0.2);
}

.author-avatar:hover::before {
    opacity: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-status {
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Crypto Section - New Design */
.crypto-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 100px 0;
    overflow: hidden;
}

.crypto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite reverse;
}

.crypto-section .container {
    position: relative;
    z-index: 2;
}

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

.crypto-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow), 0 0 18px rgba(49, 202, 253, 0.12);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.crypto-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--accent) transparent transparent;
    opacity: 0.3;
}

.crypto-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 0 25px rgba(49, 202, 253, 0.2);
}

.crypto-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.crypto-card.featured .crypto-icon {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.crypto-card.featured .crypto-icon:hover {
    transform: scale(1.1);
}

.crypto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.crypto-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.crypto-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card-bg) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.price-change.positive {
    background-color: #28a745;
    color: white;
}

.price-change.negative {
    background-color: #dc3545;
    color: white;
}

.crypto-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crypto-features span {
    background-color: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #2bb8e6 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #2bb8e6 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(49, 202, 253, 0.5), 0 0 30px rgba(49, 202, 253, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 35px;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    animation: ctaButtonPulse 2s ease-in-out infinite;
}

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

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

@keyframes ctaButtonPulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(49, 202, 253, 0.5), 0 0 30px rgba(49, 202, 253, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(49, 202, 253, 0.7), 0 0 40px rgba(49, 202, 253, 0.5);
    }
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #2bb8e6 0%, var(--accent) 50%, #5dd3fd 100%);
    background-position: 100% 100%;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 35px rgba(49, 202, 253, 0.6), 0 0 40px rgba(49, 202, 253, 0.4);
    border-color: rgba(255, 255, 255, 1);
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
    border-width: 2px;
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 0 4px rgba(49, 202, 253, 0.3);
    transition: all 0.3s ease;
}

.cta-section .btn-outline:hover {
    background-color: white;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
    position: relative;
    transition: var(--section-transition);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* This section is now handled by the improved mobile styles at the end of the file */
    /* Old hamburger display rule - now handled in the improved section */
    
    /* Old nav-menu styles - now handled in the improved section */
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    /* Old hero styles - now handled by improved mobile styles at end of file */
    
    .features-grid {
        padding: 80px 20px;
    }
    
    .preview-photo {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .testimonials-grid,
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Old hero styles - now handled by improved mobile styles at end of file */
    
    .features-grid {
        padding: 60px 20px;
    }
    
    .preview-photo {
        height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .testimonial-card,
    .crypto-card {
        padding: 20px;
    }
}

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

.feature-card,
.testimonial-card,
.crypto-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Animation delays for main page feature cards */
.features-section .feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.features-section .feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.features-section .feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.features-section .feature-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.features-section .feature-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.features-section .feature-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }
.features-section .feature-card:nth-child(7) { animation: fadeInUp 0.6s ease-out 0.7s both; }
.features-section .feature-card:nth-child(8) { animation: fadeInUp 0.6s ease-out 0.8s both; }

/* Animation delays for testimonial cards */
.testimonials-section .testimonial-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.testimonials-section .testimonial-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.testimonials-section .testimonial-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }

/* Animation delays for crypto cards */
.crypto-section .crypto-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.crypto-section .crypto-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Page Hero */
.page-hero {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 6s ease-in-out infinite;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Warning Card - Modern Design */
.access-warning {
    padding: 60px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.access-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.access-warning .container {
    position: relative;
    z-index: 2;
}

.modern-warning-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(49, 202, 253, 0.15);
    position: relative;
    overflow: hidden;
}

.modern-warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.warning-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.warning-icon-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 3s ease-in-out infinite;
}

.warning-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.warning-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.warning-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card-bg) 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.req-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirement-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Modern Warning Card Styles */
.modern-warning-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(49, 202, 253, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-warning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 40px rgba(49, 202, 253, 0.2);
}

.modern-warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.warning-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.warning-icon-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shield-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorFlow 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.warning-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.warning-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.security-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(49, 202, 253, 0.1), rgba(49, 202, 253, 0.05));
    border: 1px solid rgba(49, 202, 253, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.security-badge:hover {
    background: linear-gradient(135deg, rgba(49, 202, 253, 0.2), rgba(49, 202, 253, 0.1));
    border-color: var(--accent);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.2rem;
    filter: grayscale(0);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive Design for Modern Warning Card */
@media (max-width: 768px) {
    .modern-warning-card {
        padding: 20px;
        margin: 0 15px;
    }
    
    .warning-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .warning-content h2 {
        font-size: 1.5rem;
    }
    
    .warning-content p {
        font-size: 0.95rem;
    }
    
    .security-badges {
        gap: 10px;
    }
    
    .security-badge {
        padding: 6px 12px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .shield-icon {
        font-size: 3rem;
    }
    
    .pulse-ring {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .modern-warning-card {
        padding: 15px;
        margin: 0 10px;
    }
    
    .warning-content h2 {
        font-size: 1.3rem;
    }
    
    .warning-content p {
        font-size: 0.9rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .security-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Legacy warning card styles for compatibility */
.warning-card {
    background: linear-gradient(135deg, #31cafd 0%, #2bb8e6 100%);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.warning-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.warning-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Steps Grid */
.access-steps {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    gap: 30px;
}

.step-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 0 22px rgba(49, 202, 253, 0.18);
}

.step-number {
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    background-position: 100% 100%;
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite;
}

/* Animation delays for step cards */
.step-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.step-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.step-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.step-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.step-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.step-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* Animation delays for checklist items */
.checklist-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.checklist-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.checklist-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.checklist-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.checklist-item:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.checklist-item:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }
.checklist-item:nth-child(7) { animation: fadeInUp 0.6s ease-out 0.7s both; }
.checklist-item:nth-child(8) { animation: fadeInUp 0.6s ease-out 0.8s both; }

/* Animation delays for issue cards */
.issue-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.issue-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.issue-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.issue-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.issue-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.issue-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* Animation delays for security items */
.security-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.security-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.security-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.security-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

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

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.step-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.step-content ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.step-tip {
    background-color: var(--bg-secondary);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
}

.step-tip strong {
    color: var(--accent);
}

/* Security Checklist */
.security-checklist {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.checklist-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow), 0 0 15px rgba(49, 202, 253, 0.12);
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.checklist-item label {
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
}

/* Issues Grid */
.common-issues {
    padding: 80px 0;
}

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

.issue-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 0 22px rgba(49, 202, 253, 0.18);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.issue-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.issue-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Grid */
.additional-security {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.security-item {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 0 22px rgba(49, 202, 253, 0.18);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Access CTA */
.access-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #2bb8e6 100%);
    color: white;
    text-align: center;
}

.access-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.access-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.access-cta .btn-primary {
    background-color: transparent !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

.access-cta .btn-primary:hover {
    background-color: white !important;
    color: #d84315 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid white;
    transform: translateY(-3px);
    font-weight: 700;
    text-shadow: none;
    font-size: 1.1rem;
}

.access-cta .btn-secondary {
    background-color: transparent;
    color: white !important;
    border: 3px solid white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.access-cta .btn-secondary:hover {
    background-color: white !important;
    color: #d84315 !important;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    font-weight: 700;
    text-shadow: none;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.story-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.story-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--card-bg);
}

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

.timeline-content p {
    color: var(--text-secondary);
}

/* Mission Values */
.mission-values {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* For large screens make 4x2 grid for better symmetry */
@media (min-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(49, 202, 253, 0.18);
}

/* Value icon styles are handled by the general icon styles above */

/* Animation delays for all value cards */
.mission-values .value-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.mission-values .value-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.mission-values .value-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.mission-values .value-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.mission-values .value-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.mission-values .value-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }
.mission-values .value-card:nth-child(7) { animation: fadeInUp 0.6s ease-out 0.7s both; }
.mission-values .value-card:nth-child(8) { animation: fadeInUp 0.6s ease-out 0.8s both; }

/* Animation delays for story stats */
.story-stat:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.story-stat:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.story-stat:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }

/* Animation delays for timeline items */
.timeline-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.timeline-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.timeline-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.timeline-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

/* Animation delays for story content sections */
.story-content { animation: fadeInUp 0.6s ease-out 0.1s both; }
.story-image { animation: fadeInUp 0.6s ease-out 0.2s both; }

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(49, 202, 253, 0.18);
}

/* Team avatar styles are handled by the general icon styles above */

/* Animation delays for team cards */
.team-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.team-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.team-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.team-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.team-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-expertise span {
    background-color: var(--bg-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.achievement-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(49, 202, 253, 0.18);
}

/* Achievement icon styles are handled by the general icon styles above */

/* Animation delays for achievement cards */
.achievement-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.achievement-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.achievement-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.achievement-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

.achievement-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technology */
.technology {
    padding: 80px 0;
}

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

.tech-item {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 22px rgba(49, 202, 253, 0.18);
}

/* Tech icon styles are handled by the general icon styles above */

/* Animation delays for tech items */
.tech-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.tech-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.tech-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.tech-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

.tech-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tech-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .access-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Features Page Styles - Updated 2025-01-27 */
.features-overview {
    padding: 20px 0;
}

/* Make Core Features more compact */
.features-overview .core-features .feature-card {
    padding: 12px 12px;
}

.features-overview .core-features .feature-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.features-overview .core-features .feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.features-overview .core-features .feature-card p {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.features-overview .core-features .feature-list li {
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.feature-list {
    list-style: none;
    margin-top: 5px;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 3px;
    padding-left: 20px;
    position: relative;
    font-size: 0.8rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Advanced Features */
.advanced-features {
    padding: 20px 0;
    background-color: var(--bg-secondary);
}

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

/* For large screens make 2x2 grid for Advanced Features */
@media (min-width: 900px) {
    .advanced-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

.advanced-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.18), transparent);
    transition: left 0.5s ease;
}

.advanced-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 0 22px rgba(49, 202, 253, 0.18);
}

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

/* Advanced icon styles are handled by the general icon styles above */

/* Animation delays for advanced cards */
.advanced-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.advanced-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.advanced-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.advanced-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

.advanced-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.advanced-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Security Features */
.security-features {
    padding: 20px 0;
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-feature {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.18), transparent);
    transition: left 0.5s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

/* Security feature icon styles are handled by the general icon styles above */

/* Animation delays for security features */
.security-feature:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.security-feature:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.security-feature:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.security-feature:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.security-feature:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.security-feature:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

.security-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.security-feature p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.security-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-benefits span {
    background-color: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* User Experience */
.user-experience {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.ux-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ux-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.ux-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.18), transparent);
    transition: left 0.5s ease;
}

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

.ux-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ux-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.ux-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ux-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ux-features span {
    background-color: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
}

.comparison-table {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.comparison-cell.positive {
    color: #28a745;
    font-weight: 600;
}

.comparison-cell.negative {
    color: #dc3545;
    font-weight: 600;
}

/* Style for icons in comparison table */
.comparison-cell.positive {
    font-size: 1.1rem;
}

.comparison-cell.negative {
    font-size: 1.1rem;
}

/* Blue gradient icon utility */
.blue-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.blue-icon.small {
    font-size: 1rem;
}

/* Comparison row hover */
.comparison-row:hover {
    background-color: var(--bg-secondary);
}

/* Mobile Responsive for Features */
@media (max-width: 768px) {
    .advanced-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ux-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-cell {
        padding: 15px;
        border-bottom: 1px solid var(--border);
    }
    
    .comparison-cell:last-child {
        border-bottom: none;
    }
}

/* Links Page Styles */
.links-warning {
    padding: 40px 0;
}

.official-links {
    padding: 80px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.link-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.link-card.primary {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.link-icon {
    font-size: 2rem;
}

.link-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.link-status.online {
    background-color: #28a745;
    color: white;
}

.link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.link-url {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.link-url code {
    background-color: var(--bg-secondary);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-family: 'Courier New', monospace;
    color: var(--accent);
    font-weight: 600;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.copy-btn:hover {
    background-color: #2bb8e6;
    transform: translateY(-2px);
}

.link-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.info-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-item strong {
    color: var(--text-primary);
}

.pgp-signature {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.pgp-signature h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.signature-content {
    background-color: var(--bg-secondary);
    padding: 15px;
    border-radius: var(--border-radius);
    overflow-x: auto;
}

.signature-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

/* PGP Verification */
.pgp-verification {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.pgp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pgp-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pgp-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pgp-steps {
    list-style: decimal;
    padding-left: 20px;
}

.pgp-steps li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.pgp-key h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.key-content {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    overflow-x: auto;
}

.key-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

/* Link Safety */
.link-safety {
    padding: 80px 0;
}

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

.safety-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.safety-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.safety-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Access Instructions */
.access-instructions {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.instruction-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.instruction-step .step-number {
    background-color: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.instruction-step .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.instruction-step .step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Troubleshooting */
.troubleshooting {
    padding: 80px 0;
}

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

.trouble-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.trouble-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.trouble-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trouble-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.trouble-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive for Links */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .pgp-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .link-url {
        flex-direction: column;
        align-items: stretch;
    }
    
    .link-url code {
        min-width: auto;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
    }
    
    .instruction-step {
        flex-direction: column;
        text-align: center;
    }
    
    .instruction-step .step-number {
        align-self: center;
    }
}

/* Security Page Styles */
.security-overview {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-stat {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.security-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

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

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-content .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Encryption Section */
.encryption-section {
    padding: 80px 0;
}

.encryption-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.encryption-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.encryption-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.encryption-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.encryption-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Encryption Diagram */
.encryption-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.diagram-step {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    min-width: 120px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.step-icon svg,
.flow-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    stroke: var(--accent);
    stroke-width: 1.5;
}

.step-text {
    color: var(--text-primary);
    font-weight: 500;
}

.diagram-arrow {
    font-size: 1.5rem;
    color: var(--accent);
}

/* Escrow System */
.escrow-system {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.escrow-flow {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.flow-step {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    min-width: 200px;
}

.flow-step.escrow {
    border: 2px solid var(--accent);
    background-color: var(--accent);
    color: white;
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.flow-text {
    font-weight: 500;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--accent);
}

.escrow-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.escrow-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* Authentication */
.authentication {
    padding: 80px 0;
}

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

.auth-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.auth-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.auth-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.auth-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.auth-features {
    list-style: none;
}

.auth-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.auth-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Data Protection */
.data-protection {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.protection-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.protection-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.protection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.protection-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.protection-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.protection-details span {
    background-color: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Security Best Practices */
.security-best-practices {
    padding: 80px 0;
}

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

.practice-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.practice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.practice-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.practice-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.practice-tips span {
    background-color: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Security Audit */
.security-audit {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.audit-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.audit-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.audit-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.result-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.result-value {
    color: var(--text-primary);
    font-weight: 600;
}

.result-value.positive {
    color: #28a745;
}

.audit-certificate {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
}

.certificate-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.audit-certificate h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.audit-certificate p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.certificate-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    background-color: var(--bg-secondary);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Mobile Responsive for Security */
@media (max-width: 768px) {
    .security-stats {
        grid-template-columns: 1fr;
    }
    
    .encryption-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .escrow-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auth-grid {
        grid-template-columns: 1fr;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .audit-result {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* FAQ Page Styles */
.faq-search {
    padding: 40px 0;
    background-color: var(--bg-secondary);
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-btn {
    padding: 15px 20px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #2bb8e6;
}

.faq-categories {
    padding: 40px 0;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
}

.faq-content {
    padding: 60px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out both;
}

/* Animation delays for FAQ items */
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-secondary);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-contact {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }
    
    .categories-grid {
        justify-content: center;
    }
    
    .category-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
}

/* Print styles */
@media print {
    .hamburger,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }
}

/* Animations for new cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth blue color transitions */
@keyframes blueFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced color flow animation */
@keyframes colorFlow {
    0% {
        filter: hue-rotate(0deg) saturate(1);
    }
    25% {
        filter: hue-rotate(5deg) saturate(1.1);
    }
    50% {
        filter: hue-rotate(0deg) saturate(1);
    }
    75% {
        filter: hue-rotate(-5deg) saturate(0.9);
    }
    100% {
        filter: hue-rotate(0deg) saturate(1);
    }
}

/* Smooth section background transition */
@keyframes sectionGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Subtle glow breathing effect */
@keyframes glowBreath {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.feature-card:nth-child(5),
.feature-card:nth-child(6),
.feature-card:nth-child(7),
.feature-card:nth-child(8) {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(5) { animation-delay: 0.1s; }
.feature-card:nth-child(6) { animation-delay: 0.2s; }
.feature-card:nth-child(7) { animation-delay: 0.3s; }
.feature-card:nth-child(8) { animation-delay: 0.4s; }

/* Global Glow Effects for all pages */

/* Unified glow effect for all sections */
.about-story,
.mission-values,
.team-section,
.achievements,
.technology,
.features-overview,
.advanced-features,
.security-features,
.user-experience,
.comparison-section,
.access-warning,
.access-steps,
.security-checklist,
.common-issues,
.additional-security,
.access-cta,
.links-warning,
.official-links,
.pgp-verification,
.link-safety,
.access-instructions,
.troubleshooting {
    position: relative;
    overflow: hidden;
}

/* Uniform backgrounds for all sections */

.about-story {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite;
}

.mission-values {
    background: var(--bg-primary);
    padding: 100px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite reverse;
}

.team-section {
    background: var(--bg-secondary);
    padding: 60px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite;
}

.achievements {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite reverse;
}

.technology {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 8s ease-in-out infinite;
}

.features-overview {
    background: var(--bg-secondary);
    padding: 20px 0;
}

.advanced-features {
    background: var(--bg-primary);
    padding: 20px 0;
}

.security-features {
    background: var(--bg-secondary);
    padding: 20px 0;
}

.user-experience {
    background: var(--bg-primary);
    padding: 100px 0;
}

.comparison-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

/* Access page sections */
.access-warning {
    background: var(--bg-primary);
    padding: 100px 0;
}

.access-steps {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.security-checklist {
    background: var(--bg-primary);
    padding: 100px 0;
}

.common-issues {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.additional-security {
    background: var(--bg-primary);
    padding: 100px 0;
}

.access-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #2bb8e6 100%);
    padding: 100px 0;
    color: white;
}

/* Simple Security Alert Styles */
.links-warning {
    background: var(--bg-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.simple-security-alert {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(49, 202, 253, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
}

.simple-security-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 202, 253, 0.1), transparent);
    transition: left 0.6s ease;
}

.simple-security-alert:hover::before {
    left: 100%;
}

.alert-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper .icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 3s ease-in-out infinite;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(49, 202, 253, 0.3), transparent);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.alert-content {
    flex: 1;
}

.alert-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.alert-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.security-tips {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card-bg) 100%);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.tip-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 3s ease-in-out infinite;
}

.tip-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-security-alert {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .security-tips {
        justify-content: center;
    }
    
    .alert-content h2 {
        font-size: 1.6rem;
    }
}

/* Official Links Section */
.official-links {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.links-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.link-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(49, 202, 253, 0.1);
    border-color: var(--accent);
}

.link-card.primary {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(49, 202, 253, 0.2);
}

.link-card.primary:hover {
    box-shadow: 0 25px 50px rgba(49, 202, 253, 0.3), 0 0 40px rgba(49, 202, 253, 0.3);
}



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

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.link-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.link-icon .icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 3s ease-in-out infinite;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(49, 202, 253, 0.2), transparent);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.link-info {
    flex: 1;
}

.link-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.link-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator.online {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: statusPulse 2s ease-in-out infinite;
}


.onion-address-section {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.address-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.address-container:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(49, 202, 253, 0.1);
}

.onion-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    word-break: break-all;
}

.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #2bb8e6);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 202, 253, 0.3);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.copy-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copy-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    animation: copySuccess 0.6s ease;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.copy-success .copy-icon {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.copy-error {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    animation: shake 0.6s ease;
    transform: scale(0.95);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

.copy-error .copy-icon {
    transform: scale(0.9);
    filter: brightness(1.2);
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.link-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--bg-primary), var(--card-bg));
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(49, 202, 253, 0.1);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.security-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--bg-primary), var(--card-bg));
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(49, 202, 253, 0.1);
}

.badge-icon {
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent), #2bb8e6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blueFlow 3s ease-in-out infinite;
}

.copy-success-indicator {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.copy-success-indicator.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.copy-success-indicator.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .address-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .onion-address {
        text-align: center;
    }
    
    .link-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .security-badges {
        justify-content: center;
    }
}

/* PGP Verification Section */
.pgp-verification {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pgp-key-container {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pgp-key-container:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(49, 202, 253, 0.1);
}

.pgp-key-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.pgp-key-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.key-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.key-strength, .key-id {
    background: linear-gradient(135deg, var(--accent), #2bb8e6);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}


.pgp-key-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--card-bg));
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
}

.key-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.key-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.key-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.validity-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expiry-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pgp-key-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.pgp-key-text {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 20px;
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 250px;
    overflow-y: auto;
    border: none;
    outline: none;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

.pgp-key-text::-webkit-scrollbar {
    width: 6px;
}

.pgp-key-text::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.pgp-key-text::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.pgp-key-text::-webkit-scrollbar-thumb:hover {
    background: #2bb8e6;
}

.pgp-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.copy-key-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--accent), #2bb8e6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(49, 202, 253, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.copy-key-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 202, 253, 0.4);
    background: linear-gradient(135deg, #31cafd, #5dd3fd);
}

.copy-key-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 202, 253, 0.3);
}

.verify-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--bg-primary), var(--card-bg));
    color: var(--text-primary);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.verify-btn:hover {
    background: linear-gradient(135deg, var(--accent), #2bb8e6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 202, 253, 0.4);
    border-color: #31cafd;
}

.verify-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 202, 253, 0.3);
}

.btn-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.copy-icon, .verify-icon {
    font-size: 0.9rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.copy-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: iconGlow 2s ease-in-out infinite;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    pointer-events: none;
}

.copy-key-btn:hover .icon-glow,
.verify-btn:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.copy-key-btn:active .btn-ripple,
.verify-btn:active .btn-ripple {
    width: 200px;
    height: 200px;
    opacity: 0;
}

.copy-key-btn:hover .copy-icon,
.verify-btn:hover .verify-icon {
    transform: scale(1.1);
}

.copy-text, .verify-text {
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.copy-key-btn:hover .copy-text,
.verify-btn:hover .verify-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for PGP Section */
@media (max-width: 768px) {
    .key-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .key-actions {
        justify-content: center;
    }
}

.verify-btn.verifying {
    background: linear-gradient(135deg, #7dd8fd, #2bb8e6);
    animation: verifyPulse 1s ease-in-out infinite;
}

.copy-key-btn.copied {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation: copySuccess 0.6s ease-in-out;
}

.copy-key-btn.copied .copy-icon {
    content: "✓";
    animation: copySuccess 0.6s ease-in-out;
}

.copy-key-btn.copied .copy-text {
    content: "Copied!";
}

.verify-btn.verifying .verify-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.verify-btn.verified {
    background: linear-gradient(135deg, #28a745, #20c997);
}

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

.link-safety {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.access-instructions {
    background: var(--bg-primary);
    padding: 100px 0;
}

.troubleshooting {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.about-story .container,
.mission-values .container,
.team-section .container,
.achievements .container,
.technology .container,
.features-overview .container,
.advanced-features .container,
.security-features .container,
.user-experience .container,
.comparison-section .container,
.access-warning .container,
.access-steps .container,
.security-checklist .container,
.common-issues .container,
.additional-security .container,
.access-cta .container,
.links-warning .container,
.official-links .container,
.pgp-verification .container,
.link-safety .container,
.access-instructions .container,
.troubleshooting .container {
    position: relative;
    z-index: 2;
}

.about-story::before,
.mission-values::before,
.team-section::before,
.achievements::before,
.technology::before,
.features-overview::before,
.advanced-features::before,
.security-features::before,
.user-experience::before,
.comparison-section::before,
.access-warning::before,
.access-steps::before,
.security-checklist::before,
.common-issues::before,
.additional-security::before,
.access-cta::before,
.links-warning::before,
.official-links::before,
.pgp-verification::before,
.link-safety::before,
.access-instructions::before,
.troubleshooting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 202, 253, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(49, 202, 253, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    transition: var(--section-transition);
}

.section-title {
    position: relative;
}

/* New structure ensures no gaps between sections */

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(49, 202, 253, 0.4);
}

/* Enhanced glow for all interactive elements */
.btn:hover {
    box-shadow: var(--glow-hover);
}

.feature-card:hover,
.testimonial-card:hover,
.crypto-card:hover {
    box-shadow: var(--shadow), var(--glow-accent);
}

/* Glow effect for navigation */
.nav-link:hover {
    text-shadow: 0 0 10px rgba(49, 202, 253, 0.5);
    transition: text-shadow 0.3s ease;
}

/* Smooth blue color transitions for links */
.nav-link:hover,
.footer-section ul li a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--blue-medium);
}

.slider:hover {
    box-shadow: 0 0 15px rgba(49, 202, 253, 0.3);
}

/* Icon Glow Animation */
@keyframes iconGlow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Security Page Icon Styles */
.security-stat .stat-icon,
.encryption-feature .feature-icon,
.benefit-item .benefit-icon,
.auth-card .auth-icon,
.protection-card .protection-icon,
.practice-card .practice-icon,
.audit-certificate .certificate-icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 20px !important;
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    transition: all 0.4s ease !important;
}

.security-stat .stat-icon .icon,
.encryption-feature .feature-icon .icon,
.benefit-item .benefit-icon .icon,
.auth-card .auth-icon .icon,
.protection-card .protection-icon .icon,
.practice-card .practice-icon .icon,
.audit-certificate .certificate-icon .icon {
    font-size: 1.5rem !important;
    color: white !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
}

.security-stat .stat-icon .icon-glow,
.encryption-feature .feature-icon .icon-glow,
.benefit-item .benefit-icon .icon-glow,
.auth-card .auth-icon .icon-glow,
.protection-card .protection-icon .icon-glow,
.practice-card .practice-icon .icon-glow,
.audit-certificate .certificate-icon .icon-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: radial-gradient(circle, rgba(49, 202, 253, 0.3) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    animation: iconGlow 3s ease-in-out infinite !important;
    z-index: 1 !important;
}

.security-stat .stat-icon:hover,
.encryption-feature .feature-icon:hover,
.benefit-item .benefit-icon:hover,
.auth-card .auth-icon:hover,
.protection-card .protection-icon:hover,
.practice-card .practice-icon:hover,
.audit-certificate .certificate-icon:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(49, 202, 253, 0.4) !important;
}

.security-stat .stat-icon:hover .icon-glow,
.encryption-feature .feature-icon:hover .icon-glow,
.benefit-item .benefit-icon:hover .icon-glow,
.auth-card .auth-icon:hover .icon-glow,
.protection-card .protection-icon:hover .icon-glow,
.practice-card .practice-icon:hover .icon-glow,
.audit-certificate .certificate-icon:hover .icon-glow {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
}

.security-stat .stat-icon:hover .icon,
.encryption-feature .feature-icon:hover .icon,
.benefit-item .benefit-icon:hover .icon,
.auth-card .auth-icon:hover .icon,
.protection-card .protection-icon:hover .icon,
.practice-card .practice-icon:hover .icon,
.audit-certificate .certificate-icon:hover .icon {
    transform: scale(1.1) !important;
}

/* Override existing icon styles for Security page */
.security-overview .stat-icon,
.encryption-section .feature-icon,
.escrow-system .benefit-icon,
.authentication .auth-icon,
.data-protection .protection-icon,
.security-best-practices .practice-icon,
.security-audit .certificate-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
}

/* Security Page Grid Symmetry */
.security-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

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

.escrow-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

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

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

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

/* Responsive Design for Security Page */
@media (max-width: 1200px) {
    .security-stats,
    .protection-grid,
    .practices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .escrow-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .security-stats,
    .encryption-features,
    .escrow-benefits,
    .auth-grid,
    .protection-grid,
    .practices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Glow effect for scroll to top button */
.scroll-to-top:hover {
    box-shadow: 0 0 22px rgba(49, 202, 253, 0.35);
}

/* Force Security Page Icon Styles - Override all existing rules */
.security-overview .security-stat .stat-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

.encryption-section .encryption-feature .feature-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

.escrow-system .benefit-item .benefit-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

.authentication .auth-card .auth-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

.data-protection .protection-card .protection-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

.security-best-practices .practice-card .practice-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

.security-audit .audit-certificate .certificate-icon {
    background: linear-gradient(135deg, var(--accent), #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
}

/* Icon text styles */
.security-overview .security-stat .stat-icon .icon,
.encryption-section .encryption-feature .feature-icon .icon,
.escrow-system .benefit-item .benefit-icon .icon,
.authentication .auth-card .auth-icon .icon,
.data-protection .protection-card .protection-icon .icon,
.security-best-practices .practice-card .practice-icon .icon,
.security-audit .audit-certificate .certificate-icon .icon {
    font-size: 1.5rem !important;
    color: white !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
}

/* Icon glow effects */
.security-overview .security-stat .stat-icon .icon-glow,
.encryption-section .encryption-feature .feature-icon .icon-glow,
.escrow-system .benefit-item .benefit-icon .icon-glow,
.authentication .auth-card .auth-icon .icon-glow,
.data-protection .protection-card .protection-icon .icon-glow,
.security-best-practices .practice-card .practice-icon .icon-glow,
.security-audit .audit-certificate .certificate-icon .icon-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: radial-gradient(circle, rgba(49, 202, 253, 0.3) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    animation: iconGlow 3s ease-in-out infinite !important;
    z-index: 1 !important;
}

/* Hover effects */
.security-overview .security-stat .stat-icon:hover,
.encryption-section .encryption-feature .feature-icon:hover,
.escrow-system .benefit-item .benefit-icon:hover,
.authentication .auth-card .auth-icon:hover,
.data-protection .protection-card .protection-icon:hover,
.security-best-practices .practice-card .practice-icon:hover,
.security-audit .audit-certificate .certificate-icon:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(49, 202, 253, 0.4) !important;
}

.security-overview .security-stat .stat-icon:hover .icon-glow,
.encryption-section .encryption-feature .feature-icon:hover .icon-glow,
.escrow-system .benefit-item .benefit-icon:hover .icon-glow,
.authentication .auth-card .auth-icon:hover .icon-glow,
.data-protection .protection-card .protection-icon:hover .icon-glow,
.security-best-practices .practice-card .practice-icon:hover .icon-glow,
.security-audit .audit-certificate .certificate-icon:hover .icon-glow {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
}

.security-overview .security-stat .stat-icon:hover .icon,
.encryption-section .encryption-feature .feature-icon:hover .icon,
.escrow-system .benefit-item .benefit-icon:hover .icon,
.authentication .auth-card .auth-icon:hover .icon,
.data-protection .protection-card .protection-icon:hover .icon,
.security-best-practices .practice-card .practice-icon:hover .icon,
.security-audit .audit-certificate .certificate-icon:hover .icon {
    transform: scale(1.1) !important;
}

/* ULTIMATE OVERRIDE - Force all Security page icons to blue style */
body .security-overview .security-stat .stat-icon,
body .encryption-section .encryption-feature .feature-icon,
body .escrow-system .benefit-item .benefit-icon,
body .authentication .auth-card .auth-icon,
body .data-protection .protection-card .protection-icon,
body .security-best-practices .practice-card .practice-icon,
body .security-audit .audit-certificate .certificate-icon {
    background: linear-gradient(135deg, #31cafd, #2bb8e6) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(49, 202, 253, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    font-size: 0 !important;
    border: none !important;
    padding: 0 !important;
    text-align: center !important;
    line-height: 1 !important;
}

body .security-overview .security-stat .stat-icon .icon,
body .encryption-section .encryption-feature .feature-icon .icon,
body .escrow-system .benefit-item .benefit-icon .icon,
body .authentication .auth-card .auth-icon .icon,
body .data-protection .protection-card .protection-icon .icon,
body .security-best-practices .practice-card .practice-icon .icon,
body .security-audit .audit-certificate .certificate-icon .icon {
    font-size: 1.5rem !important;
    color: white !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

body .security-overview .security-stat .stat-icon .icon-glow,
body .encryption-section .encryption-feature .feature-icon .icon-glow,
body .escrow-system .benefit-item .benefit-icon .icon-glow,
body .authentication .auth-card .auth-icon .icon-glow,
body .data-protection .protection-card .protection-icon .icon-glow,
body .security-best-practices .practice-card .practice-icon .icon-glow,
body .security-audit .audit-certificate .certificate-icon .icon-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: radial-gradient(circle, rgba(49, 202, 253, 0.3) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    animation: iconGlow 3s ease-in-out infinite !important;
    z-index: 1 !important;
}

body .security-overview .security-stat .stat-icon:hover,
body .encryption-section .encryption-feature .feature-icon:hover,
body .escrow-system .benefit-item .benefit-icon:hover,
body .authentication .auth-card .auth-icon:hover,
body .data-protection .protection-card .protection-icon:hover,
body .security-best-practices .practice-card .practice-icon:hover,
body .security-audit .audit-certificate .certificate-icon:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(49, 202, 253, 0.4) !important;
}

body .security-overview .security-stat .stat-icon:hover .icon-glow,
body .encryption-section .encryption-feature .feature-icon:hover .icon-glow,
body .escrow-system .benefit-item .benefit-icon:hover .icon-glow,
body .authentication .auth-card .auth-icon:hover .icon-glow,
body .data-protection .protection-card .protection-icon:hover .icon-glow,
body .security-best-practices .practice-card .practice-icon:hover .icon-glow,
body .security-audit .audit-certificate .certificate-icon:hover .icon-glow {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
}

body .security-overview .security-stat .stat-icon:hover .icon,
body .encryption-section .encryption-feature .feature-icon:hover .icon,
body .escrow-system .benefit-item .benefit-icon:hover .icon,
body .authentication .auth-card .auth-icon:hover .icon,
body .data-protection .protection-card .protection-icon:hover .icon,
body .security-best-practices .practice-card .practice-icon:hover .icon,
body .security-audit .audit-certificate .certificate-icon:hover .icon {
    transform: scale(1.1) !important;
}

/* MAIN PAGE STYLE - Security page icons in gradient text style */
html body .security-overview .security-stat .stat-icon,
html body .encryption-section .encryption-feature .feature-icon,
html body .escrow-system .benefit-item .benefit-icon,
html body .authentication .auth-card .auth-icon,
html body .data-protection .protection-card .protection-icon,
html body .security-best-practices .practice-card .practice-icon,
html body .security-audit .audit-certificate .certificate-icon {
    font-size: 3rem !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, var(--accent), #2bb8e6, #5dd3fd) !important;
    background-size: 300% 300% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transition: all 0.4s ease !important;
    display: block !important;
    text-align: center !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto 20px !important;
    line-height: 1 !important;
}

/* Hover effects for Security page icons */
html body .security-overview .security-stat:hover .stat-icon,
html body .encryption-section .encryption-feature:hover .feature-icon,
html body .escrow-system .benefit-item:hover .benefit-icon,
html body .authentication .auth-card:hover .auth-icon,
html body .data-protection .protection-card:hover .protection-icon,
html body .security-best-practices .practice-card:hover .practice-icon,
html body .security-audit .audit-certificate:hover .certificate-icon {
    background-position: 100% 100% !important;
    animation: blueFlow 1.5s ease-in-out infinite, colorFlow 3s ease-in-out infinite !important;
}

/* Remove nested icon styles - not needed for main page style */
html body .security-overview .security-stat .stat-icon .icon,
html body .encryption-section .encryption-feature .feature-icon .icon,
html body .escrow-system .benefit-item .benefit-icon .icon,
html body .authentication .auth-card .auth-icon .icon,
html body .data-protection .protection-card .protection-icon .icon,
html body .security-best-practices .practice-card .practice-icon .icon,
html body .security-audit .audit-certificate .certificate-icon .icon {
    display: none !important;
}

/* ============================================================================
   MOBILE OPTIMIZATION - Enhanced for better performance and usability
   ============================================================================ */

/* Mobile-first approach with improved touch targets */
@media (max-width: 768px) {
    /* Improve touch targets - minimum 44px as per Apple guidelines */
    .btn, .nav-link, .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile navigation container adjustments */
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "logo hamburger";
        align-items: center;
        gap: 8px;
        padding: 0 12px;
        height: 70px;
        overflow: visible; /* Ensure content is not clipped */
    }
    
    @media (max-width: 768px) {
        body .-wrapper,
        html body .-wrapper {
            position: fixed !important;
            top: 20px !important;
            right: 50px !important;
            z-index: 1006 !important;
            padding: 0 !important;
            box-shadow: none !important;
            min-width: 18px !important;
            min-height: 10px !important;
            border-radius: 0 !important;
            background: transparent !important;
            border: none !important;
        }
    }
    
    .nav-logo {
        grid-area: logo;
        justify-self: start; /* Align to left */
        z-index: 1003; /* Higher than mobile menu to ensure visibility */
        position: relative;
        margin-left: 0; /* Reset desktop negative margin */
        padding-left: 10px; /* Add some padding to ensure visibility */
        min-width: 120px; /* Ensure enough space for Torzon */
    }
    
    /* Mobile logo adjustments */
    .nav-logo h1,
    .nav-logo .logo-text {
        font-size: 1.4rem; /* Slightly smaller for better fit */
        gap: 0; /* Make text solid without spaces */
        white-space: nowrap; /* Prevent text wrapping */
        overflow: visible; /* Ensure text is not cut off */
    }
    
    .logo-image {
        height: 60px; /* Larger logo for mobile */
    }
    
    .footer-logo {
        height: 80px; /* Larger footer logo for mobile */
    }
    
    
    .hamburger {
        grid-area: hamburger;
    }
    
    /* Mobile menu overlay - Modern Design */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        z-index: 9999; /* Higher z-index to ensure it's on top */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 20px;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        box-sizing: border-box;
        overflow-y: auto; /* Allow scrolling if needed */
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 90%;
        max-width: 320px;
        margin: 6px 0;
        transform: translateY(30px);
        opacity: 0;
    }
    
    .nav-menu.active li {
        animation: slideInUp 0.6s ease forwards;
    }
    
    .menu-close-container {
        position: absolute;
        top: 30px;
        right: 30px;
        width: auto !important;
        margin: 0 !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .menu-close-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        color: white;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .menu-close-btn:hover {
        background: rgba(49, 202, 253, 0.3);
        border-color: var(--accent);
        transform: scale(1.1) rotate(90deg);
    }
    
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.35s; }
    .nav-menu.active li:nth-child(8) { animation-delay: 0.4s; }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 24px;
        border-radius: 16px;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        background: linear-gradient(135deg, rgba(49, 202, 253, 0.2), rgba(49, 202, 253, 0.1));
        border: 2px solid rgba(49, 202, 253, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        width: 100%;
        box-sizing: border-box;
        min-height: 56px;
    }
    
    .nav-link::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: left 0.6s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(49, 202, 253, 0.4), rgba(49, 202, 253, 0.2));
        border-color: var(--accent);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 40px rgba(49, 202, 253, 0.4);
        color: white;
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, var(--accent), #2bb8e6);
        border-color: var(--accent);
        color: white;
        box-shadow: 0 12px 40px rgba(49, 202, 253, 0.5);
        transform: scale(1.05);
    }
    
    /* Mobile hamburger menu improvements */
    .hamburger {
        display: flex !important;
        position: relative;
        width: 44px;
        height: 44px;
        background: rgba(49, 202, 253, 0.1);
        border: 2px solid rgba(49, 202, 253, 0.3);
        border-radius: 12px;
        cursor: pointer;
        padding: 0;
        z-index: 10000; /* Higher than menu to ensure visibility */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }
    
    .hamburger:hover {
        background: rgba(49, 202, 253, 0.2);
        border-color: var(--accent);
        transform: scale(1.05);
    }
    
    .hamburger .bar {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--accent);
        margin: 2px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .hamburger.active {
        background: rgba(49, 202, 253, 0.3);
        border-color: var(--accent);
        transform: scale(1.1);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 5px);
        background: white;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
        background: white;
    }
    
    .-wrapper {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        z-index: 997; /* Lower than mobile menu and hamburger */
        padding: 2px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        min-width: 36px;
        min-height: 36px;
        border-radius: 18px;
    }
    
    @media (max-width: 768px) {
        .scrollbar,
        body .scrollbar,
        html body .scrollbar {
            height: 10px !important;
            width: 18px !important;
            border-radius: 5px !important;
            overflow: hidden !important;
        }
        
        .slider:before,
        body .slider:before,
        html body .slider:before {
            height: 8px !important;
            width: 8px !important;
            top: 1px !important;
            left: 1px !important;
            border-radius: 50% !important;
            background: white !important;
            box-shadow: 0 0.5px 1.5px rgba(0, 0, 0, 0.2) !important;
        }
        
        input:checked + .slider:before,
        body input:checked + .slider:before,
        html body input:checked + .slider:before {
            transform: translateX(8px) !important;
        }
        
        /* Clean mobile slider design */
        .slider,
        body .slider,
        html body .slider {
            background: var(--bg-secondary) !important;
            border-radius: 5px !important;
            border: 0.5px solid var(--border) !important;
        }
        
        input:checked + .slider,
        body input:checked + .slider,
        html body input:checked + .slider {
            background: var(--accent) !important;
        }
    }
    
    /* Hide sun and moon icons for cleaner look */
    .slider .sun,
    .slider .moon {
        display: none !important;
    }
    
    /* Show all navigation links in new mobile menu design */
    
    /* Mobile button improvements */
    .btn {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
        border-radius: 8px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 250px;
        margin: 6px auto;
    }
    
    /* Mobile hero buttons container */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        align-items: center;
    }
    
    /* Mobile card improvements */
    .feature-card,
    .testimonial-card,
    .crypto-card {
        padding: 24px;
        margin-bottom: 20px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile section spacing */
    .hero-section,
    .features-section,
    .testimonials-section,
    .crypto-section {
        padding: 60px 0;
    }
    
    /* Mobile text improvements */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    /* Mobile grid improvements */
    .features-grid, .testimonials-grid, .crypto-grid, .advanced-grid, .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    /* Mobile hero section - fixed positioning */
    .hero-section {
        padding: 80px 20px 40px; /* Reduced top padding to account for header */
        min-height: calc(100vh - 70px); /* Subtract header height */
        height: auto; /* Allow height to adjust */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        order: 1; /* Content first */
        max-width: 100%;
        width: 100%;
    }
    
    /* Hide hero image in mobile to save space */
    .hero-image {
        display: none;
    }
    
    .preview-photo {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    /* Mobile typography - optimized for small screens */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    /* Mobile stats spacing */
    .hero-stats {
        margin: 20px 0;
        gap: 15px;
    }
    
    .stat {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Mobile footer */
    .footer {
        padding: 40px 20px 20px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        width: 100%;
    }
    
    /* Mobile scroll to top button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Mobile performance optimizations */
    .feature-card:hover, .testimonial-card:hover, .crypto-card:hover, 
    .advanced-card:hover, .security-feature:hover, .ux-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-section {
        padding: 70px 15px 30px; /* Even less padding for small screens */
        min-height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 15px 0;
    }
    
    .stat {
        flex: 0 1 calc(50% - 5px);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        max-width: 200px;
        font-size: 14px;
        padding: 10px 16px;
        min-height: 44px;
    }
    
    /* Extra small screen logo adjustments */
    .nav-logo {
        padding-left: 5px; /* Reduce padding on very small screens */
        min-width: 100px; /* Reduce minimum width for very small screens */
    }
    
    .nav-logo h1,
    .nav-logo .logo-text {
        font-size: 1.2rem; /* Even smaller font for very small screens */
        letter-spacing: 0; /* Remove letter spacing to save space */
    }
    
    .logo-image {
        height: 50px; /* Larger logo for very small screens */
    }
    
    .footer-logo {
        height: 70px; /* Larger footer logo for very small screens */
    }
}

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    .nav-logo {
        padding-left: 3px;
        min-width: 90px;
    }
    
    .nav-logo h1,
    .nav-logo .logo-text {
        font-size: 1.1rem; /* Very small font for ultra-small screens */
        font-weight: 600; /* Slightly lighter weight to appear less bold */
    }
    
    .logo-image {
        height: 40px; /* Larger logo for ultra-small screens */
    }
    
    .footer-logo {
        height: 60px; /* Larger footer logo for ultra-small screens */
    }
    
    /* Adjust header container for ultra-small screens */
    .nav-container {
        padding: 0 8px; /* Reduce container padding */
        gap: 8px; /* Reduce gap between elements */
    }
    
    .-container {
        right: 5px;
        top: 8px;
    }
    
    .-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .feature-card, .testimonial-card, .crypto-card, .advanced-card, .security-feature, .ux-card {
        padding: 15px;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .nav-menu li {
        margin: 4px 0;
    }
    
    .nav-menu {
        padding: 15px;
    }
}


.hero-preview-image:hover {
    transform: scale(1.02);
}




.hero-preview-image:hover {
    transform: scale(1.05);
}

/* Remove any borders or frames */
.market-preview {
    border: none;
    background: transparent;
    box-shadow: none;
}

.preview-header {
    display: none;
}

/* Mobile improvements */
@media (max-width: 768px) {
    .hero-image {
        display: flex;
        padding: 10px;
    }
    
    .preview-photo {
        height: 300px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .preview-photo {
        height: 350px;
    }
}

/* FIXED HERO IMAGE - SHOW FULL CONTENT */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    padding: 20px;
}


.hero-preview-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.hero-preview-image:hover {
    transform: scale(1.02);
}

/* Mobile adjustments for full image display */
@media (max-width: 768px) {
    .hero-image {
        display: flex;
        padding: 10px;
    }
    
    .preview-photo {
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    .hero-preview-image {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .preview-photo {
        min-height: 350px;
    }
    
    .hero-preview-image {
        max-height: 350px;
    }
}

/* Attractive Official Links Styles */
.links-grid-attractive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.link-card-attractive {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.link-card-attractive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 184, 230, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card-attractive:hover::before {
    opacity: 1;
}

.link-card-attractive:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 184, 230, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(43, 184, 230, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.primary-card {
    background: linear-gradient(135deg, rgba(43, 184, 230, 0.15), rgba(43, 184, 230, 0.05));
    border-color: rgba(43, 184, 230, 0.3);
    box-shadow: 0 8px 32px rgba(43, 184, 230, 0.1);
}

.primary-card:hover {
    box-shadow: 
        0 25px 50px rgba(43, 184, 230, 0.2),
        0 0 0 1px rgba(43, 184, 230, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 184, 230, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.link-card-attractive:hover .card-glow {
    opacity: 1;
}

.card-header-attractive {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.link-icon-attractive {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 184, 230, 0.2), rgba(43, 184, 230, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(43, 184, 230, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-svg-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(43, 184, 230, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.link-svg-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(43, 184, 230, 0.5));
}

.link-card-attractive:hover .icon-bg {
    background: linear-gradient(135deg, rgba(43, 184, 230, 0.3), rgba(43, 184, 230, 0.2));
    border-color: rgba(43, 184, 230, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(43, 184, 230, 0.3);
}

.link-card-attractive:hover .link-svg-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(43, 184, 230, 0.6));
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(43, 184, 230, 0.2);
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.3; 
    }
}

.link-info-attractive {
    flex: 1;
}

.link-info-attractive h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-info-attractive p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.status-indicator-attractive {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2); 
    }
}

.address-section-attractive {
    margin-bottom: 20px;
}

.address-label-attractive {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.address-container-attractive {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.link-card-attractive:hover .address-container-attractive {
    border-color: rgba(43, 184, 230, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.onion-address-attractive {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: var(--text-primary);
    background: none;
    border: none;
    outline: none;
    word-break: break-all;
    line-height: 1.5;
    font-weight: 500;
}

.copy-button-attractive {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), #2bb8e6);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex-shrink: 0;
}

.copy-button-attractive:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(43, 184, 230, 0.4);
}

.copy-button-attractive:active {
    transform: translateY(0) scale(1);
}

.copy-icon-bg {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.copy-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copy-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.copy-button-attractive:hover .copy-ripple {
    width: 100px;
    height: 100px;
    opacity: 1;
}

.security-badges-attractive {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-attractive {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(43, 184, 230, 0.1);
    border: 1px solid rgba(43, 184, 230, 0.2);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(43, 184, 230, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .links-grid-attractive {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .link-card-attractive {
        padding: 32px;
    }
    
    .link-info-attractive h3 {
        font-size: 22px;
    }
    
    .onion-address-attractive {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .links-grid-attractive {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .link-card-attractive {
        padding: 36px;
    }
    
    .link-info-attractive h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .link-card-attractive {
        padding: 20px;
    }
    
    .card-header-attractive {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .link-icon-attractive {
        width: 40px;
        height: 40px;
    }
    
    .icon-bg {
        font-size: 16px;
    }
}
