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

:root {
    --primary-red: #ff3c3c;
    --secondary-red: #ff6666;
    --dark-red: #cc0000;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #dddddd;
    --text-muted: #999999;
    --border-color: #333333;
    --shadow-primary: rgba(255, 60, 60, 0.3);
    --shadow-secondary: rgba(255, 60, 60, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    --gradient-dark: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Particle Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-red);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px var(--shadow-primary);
}

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

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

.logo-img {
    width: 140px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px var(--shadow-primary);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--shadow-primary);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { text-shadow: 0 0 20px var(--shadow-primary); }
    to { text-shadow: 0 0 40px var(--primary-red); }
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--shadow-secondary), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--shadow-primary);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0.8;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="10" fill="%23ff3c3c" opacity="0.1">01010101</text></svg>') repeat;
    animation: matrixFall 20s linear infinite;
}

@keyframes matrixFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 25px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 0 0 50px var(--primary-red);
    margin-bottom: 30px;
    animation: titlePulse 4s ease-in-out infinite alternate;
}

.title-line {
    display: block;
    line-height: 0.9;
}

@keyframes titlePulse {
    from { 
        text-shadow: 0 0 50px var(--primary-red);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 80px var(--primary-red), 0 0 120px var(--primary-red);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 60, 60, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-primary);
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: 2px solid transparent;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-button::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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-primary);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

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

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(10, 10, 10, 0.5);
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--shadow-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    from { box-shadow: 0 0 10px var(--shadow-primary); }
    to { box-shadow: 0 0 20px var(--primary-red); }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--shadow-secondary), transparent);
    transition: left 0.8s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px var(--shadow-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 60, 0.1);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(7471%) hue-rotate(356deg) brightness(91%) contrast(135%);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
}

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

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-stats .stat {
    padding: 5px 12px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-red);
}

/* Security Section */
.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.security-visual {
    position: relative;
    height: 400px;
}

.security-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    background: rgba(255, 60, 60, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.layer[data-layer="1"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.layer[data-layer="2"] {
    top: 20%;
    right: 10%;
    z-index: 2;
}

.layer[data-layer="3"] {
    bottom: 20%;
    left: 10%;
    z-index: 1;
}

.layer:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--shadow-primary);
}

.layer img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(7471%) hue-rotate(356deg) brightness(91%) contrast(135%);
    margin-bottom: 10px;
}

.layer-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
    text-align: center;
}

.security-details {
    position: relative;
}

.security-item {
    display: none;
    animation: fadeInLeft 0.5s ease-out;
}

.security-item.active {
    display: block;
}

.security-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.security-item p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.security-item ul {
    list-style: none;
}

.security-item li {
    padding: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.security-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Mirror Links Section */
.mirrors-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mirror-warning {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid #8b0000;
    border-radius: 15px;
    margin-bottom: 40px;
}

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

.warning-content h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

.mirrors-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.mirror-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mirror-card.primary {
    border-color: var(--primary-red);
    background: rgba(255, 60, 60, 0.05);
}

.mirror-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--shadow-secondary), transparent);
    transition: left 0.5s ease;
}

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

.mirror-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow-primary);
    transform: translateX(5px);
}

.mirror-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

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

.mirror-info {
    flex: 1;
}

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

.mirror-link {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 10px;
}

.mirror-stats {
    display: flex;
    gap: 15px;
}

.mirror-stats .stat {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    color: var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.copy-btn:hover {
    background: var(--primary-red);
    color: var(--bg-primary);
    transform: scale(1.05);
}

.pgp-verification {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
}

.pgp-verification h3 {
    color: var(--primary-red);
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.pgp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pgp-key h4,
.pgp-instructions h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.pgp-fingerprint {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    word-break: break-all;
}

.pgp-instructions ol {
    color: var(--text-secondary);
    padding-left: 20px;
}

.pgp-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Gallery Section */
.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    box-shadow: 0 20px 60px var(--shadow-primary);
}

.gallery-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: var(--text-primary);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail.active {
    border-color: var(--primary-red);
    opacity: 1;
    box-shadow: 0 0 20px var(--shadow-primary);
}

.thumbnail:hover {
    border-color: var(--primary-red);
    opacity: 1;
    transform: scale(1.05);
}

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

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--shadow-secondary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px var(--shadow-primary);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

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

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

.stat-trend {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 15px;
    display: inline-block;
}

.stat-trend.positive {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.stat-trend.neutral {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    border: 1px solid #ffff00;
}

.performance-chart {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.performance-chart h3 {
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(139, 0, 0, 0.2);
    border-top: 4px solid #8b0000;
    border-bottom: 4px solid #8b0000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.1), transparent);
    animation: disclaimerPulse 6s ease-in-out infinite;
}

@keyframes disclaimerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.disclaimer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.disclaimer-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
}

.disclaimer-content h2 {
    color: #ff6b6b;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
}

.disclaimer-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
}

.disclaimer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.disclaimer-link {
    color: #ff6b6b;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.disclaimer-link:hover {
    background: #ff6b6b;
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--primary-red);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

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

.footer-warning {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pgp-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .mirror-card {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-thumbnails {
        gap: 10px;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
}

