@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(30, 30, 60, 0.1) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(30, 30, 60, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.main-header {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(80, 80, 120, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-logo {
    height: 60px;
    width: auto;
}

.logo-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #b0b0d0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #667eea;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #b0b0d0;
    font-size: 1.5rem;
    cursor: pointer;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #b0b0d0;
    margin-bottom: 2rem;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8a8ac4;
    font-size: 0.9rem;
}

.stat-item i {
    color: #667eea;
}

.hero-visual {
    position: relative;
    height: 300px;
}

.visual-element {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.visual-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.2), transparent 50%);
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title i {
    color: #667eea;
}

.highlight {
    color: #667eea;
}

.section-description {
    color: #b0b0d0;
    font-size: 1.05rem;
}

.mirror-status {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.status-update {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8a8ac4;
    font-size: 0.9rem;
}

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

.mirror-card {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.mirror-card:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.5);
}

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

.mirror-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mirror-badge-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mirror-badge-stable {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.mirror-badge-fast {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.mirror-id {
    color: #8a8ac4;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.mirror-body {
    margin-bottom: 1.5rem;
}

.mirror-url-container {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
}

.mirror-url {
    font-family: 'JetBrains Mono', monospace;
    color: #8a8ac4;
    font-size: 0.9rem;
    word-break: break-all;
}

.mirror-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    background: rgba(10, 10, 20, 0.5);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.metric i {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: #8a8ac4;
    margin-bottom: 0.25rem;
}

.metric-value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.mirror-footer {
    display: flex;
    gap: 1rem;
}

.mirror-copy-btn,
.mirror-access-btn,
.validator-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mirror-copy-btn {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.mirror-copy-btn:hover {
    background: rgba(102, 126, 234, 0.3);
}

.mirror-access-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
}

.mirror-access-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.no-mirrors {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: rgba(20, 20, 40, 0.5);
    border: 2px dashed rgba(80, 80, 120, 0.5);
    border-radius: 12px;
    color: #8a8ac4;
}

.mirror-advisory {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 4rem;
}

.advisory-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #f87171;
}

.advisory-header i {
    font-size: 1.5rem;
}

.advisory-content p {
    margin-bottom: 1rem;
    color: #fca5a5;
}

.advisory-list {
    list-style: none;
    padding-left: 1rem;
}

.advisory-list li {
    margin-bottom: 0.5rem;
    color: #fca5a5;
    position: relative;
    padding-left: 1.5rem;
}

.advisory-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #f87171;
}

.validator-container {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.validator-input-group {
    margin-bottom: 2rem;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #b0b0d0;
    font-weight: 500;
}

.input-label i {
    color: #667eea;
}

.validator-input {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.5);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.validator-input:focus {
    outline: none;
    border-color: #667eea;
}

.validator-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.validator-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.validation-result {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.validation-result.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    display: block;
}

.validation-result.error {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #f87171;
    display: block;
}

.validator-explanation {
    background: rgba(10, 10, 20, 0.5);
    border-radius: 12px;
    padding: 2rem;
}

.validator-explanation h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.validator-explanation h3 i {
    color: #667eea;
}

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

.method {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #667eea;
    font-size: 1.5rem;
}

.method h4 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.method p {
    color: #b0b0d0;
    font-size: 0.9rem;
}

.analysis-container {
    margin-bottom: 4rem;
}

.analysis-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.analysis-card {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.analysis-header i {
    font-size: 1.5rem;
}

.architecture-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.arch-component {
    background: rgba(10, 10, 20, 0.5);
    border-left: 3px solid #667eea;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

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

.crypto-column {
    background: rgba(10, 10, 20, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
}

.crypto-column h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.crypto-column ul {
    list-style: none;
    padding-left: 0;
}

.crypto-column li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0d0;
}

.crypto-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.2rem;
}

.security-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.layer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(10, 10, 20, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
}

.layer-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.layer-content h5 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.positioning-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.matrix-factor {
    background: rgba(10, 10, 20, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
}

.factor-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.protocol-card {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.protocol-card.critical {
    border-left: 4px solid #dc2626;
}

.protocol-card.operational {
    border-left: 4px solid #3b82f6;
}

.protocol-card.technical {
    border-left: 4px solid #8b5cf6;
}

.protocol-card.verification {
    border-left: 4px solid #10b981;
}

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

.protocol-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
}

.protocol-header h3 {
    flex: 1;
    color: #ffffff;
}

.protocol-level {
    background: rgba(80, 80, 120, 0.3);
    color: #b0b0d0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.protocol-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.protocol-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0d0;
}

.protocol-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
}

.protocol-steps {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    counter-reset: step-counter;
}

.protocol-steps li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    color: #b0b0d0;
}

.protocol-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #667eea;
}

.phishing-analysis {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.phishing-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #f87171;
}

.phishing-header i {
    font-size: 1.5rem;
}

.phishing-tactics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tactic {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.tactic h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #fca5a5;
}

.guide-container {
    margin-bottom: 4rem;
}

.guide-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-phase {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

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

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.phase-header h3 {
    color: #ffffff;
}

.phase-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 10, 20, 0.5);
    border-radius: 8px;
    padding: 1rem;
}

.step i {
    color: #667eea;
}

.quick-reference {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.quick-reference h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-reference h3 i {
    color: #667eea;
}

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

.reference-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reference-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reference-content h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.faq-container {
    margin-bottom: 4rem;
}

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

.faq-item {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: #667eea;
    font-size: 0.9rem;
}

.faq-item p {
    color: #b0b0d0;
}

.update-notice {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(80, 80, 120, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.verification-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: rgba(10, 10, 20, 0.5);
    border-radius: 8px;
    padding: 1rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #b0b0d0;
}

.main-footer {
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid rgba(80, 80, 120, 0.3);
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-keywords span {
    background: rgba(80, 80, 120, 0.2);
    color: #8a8ac4;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.footer-disclaimer {
    background: rgba(20, 20, 40, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    color: #b0b0d0;
}

.footer-disclaimer i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8a8ac4;
    font-size: 0.9rem;
}

.meta-item i {
    color: #667eea;
}

.footer-copyright {
    text-align: center;
    color: #666699;
    font-size: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(80, 80, 120, 0.3);
}

.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 10000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .mirror-footer {
        flex-direction: column;
    }
    
    .crypto-comparison {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mirror-metrics {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
    }
    
    .positioning-matrix {
        grid-template-columns: 1fr;
    }
    
    .reference-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}