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

body {
    font-family: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
    background-color: #303948;
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
    isolation: isolate;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(60, 190, 242, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 190, 242, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -3;
}

.grid-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(60, 190, 242, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(60, 190, 242, 0.02) 0%, transparent 50%);
}

.hexagon {
    position: fixed;
    width: 140px;
    height: 80px;
    background: transparent;
    border: 1px solid rgba(60, 190, 242, 0.15);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -2;
    pointer-events: none;
    opacity: 0.5;
}

.hex-1 {
    top: 15%;
    left: 8%;
    transform: rotate(15deg);
}

.hex-2 {
    bottom: 20%;
    right: 10%;
    transform: rotate(-10deg);
    width: 100px;
    height: 57px;
}

.hex-3 {
    top: 60%;
    left: 92%;
    width: 70px;
    height: 40px;
    transform: rotate(30deg);
}

.pulse-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: #3cbef2;
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    filter: blur(0.5px);
}

.dot-1 {
    top: 25%;
    right: 18%;
    animation: pulseSoft 4s infinite ease-in-out;
}

.dot-2 {
    bottom: 30%;
    left: 12%;
    animation: pulseSoft 4s infinite 2s ease-in-out;
}

.dot-3 {
    top: 70%;
    right: 25%;
    animation: pulseSoft 4s infinite 1s ease-in-out;
}

@keyframes pulseSoft {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(60, 190, 242, 0.3);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(60, 190, 242, 0);
    }
}

.circular-nav {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

.nav-item {
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px;
    background: linear-gradient(145deg, rgba(48, 57, 72, 0.9), rgba(40, 48, 60, 0.9));
    border-radius: 12px;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    border: 1px solid rgba(60, 190, 242, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-item:hover {
    background: linear-gradient(145deg, rgba(60, 190, 242, 0.15), rgba(48, 140, 200, 0.1));
    border-color: #3cbef2;
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 6px 25px rgba(60, 190, 242, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-item i {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: #3cbef2;
}

.main-content {
    margin-right: 120px;
    position: relative;
}

.logo-container {
    text-align: center;
    margin: 60px 0 80px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 165px;
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(60, 190, 242, 0.4))
           drop-shadow(0 0 40px rgba(60, 190, 242, 0.1));
    position: relative;
    z-index: 10;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 90px;
    background: radial-gradient(ellipse at center, 
                rgba(60, 190, 242, 0.25) 0%, 
                rgba(60, 190, 242, 0.1) 40%, 
                transparent 70%);
    z-index: 1;
    filter: blur(8px);
}

.card {
    background: linear-gradient(145deg, 
                rgba(255, 255, 255, 0.03), 
                rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 0;
    margin-bottom: 50px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.4), 
                transparent);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(60, 190, 242, 0.1);
}

.floating-card {
    transform: perspective(1000px) rotateX(1deg) rotateY(-1deg);
    border-top: 1px solid rgba(60, 190, 242, 0.3);
}

.floating-card:hover {
    transform: perspective(1000px) rotateX(1deg) rotateY(-1deg) translateY(-4px);
}

.diagonal-card {
    transform: skewY(-0.5deg) translateX(20px);
    margin-left: 40px;
    border-left: 3px solid #3cbef2;
    border-right: 1px solid rgba(60, 190, 242, 0.1);
}

.diagonal-card:hover {
    transform: skewY(-0.5deg) translateX(20px) translateY(-2px);
}

.info-card {
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.95), 
                rgba(40, 48, 60, 0.95));
    border: none;
    border-top: 2px solid rgba(60, 190, 242, 0.5);
    border-bottom: 2px solid rgba(60, 190, 242, 0.5);
}

.security-card {
    background: linear-gradient(135deg, 
                rgba(48, 57, 72, 0.92) 0%, 
                rgba(28, 35, 45, 0.92) 100%);
    border: 1px solid rgba(60, 190, 242, 0.25);
    border-radius: 2px;
}

.special-features {
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.05), 
                rgba(60, 190, 242, 0.02));
    border: 1px dashed rgba(60, 190, 242, 0.3);
    border-radius: 1px;
}

.card-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #3cbef2;
    opacity: 0.7;
}

.corner-tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3cbef2, transparent);
}

.accent-text {
    color: #3cbef2;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(60, 190, 242, 0.3);
}

.status-display {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 12px 24px;
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.12), 
                rgba(60, 190, 242, 0.08));
    border: 1px solid rgba(60, 190, 242, 0.3);
    width: fit-content;
    position: relative;
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.status-pulse {
    width: 14px;
    height: 14px;
    background-color: #3cbef2;
    border-radius: 50%;
    animation: pulseSoft 2s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(60, 190, 242, 0.5);
}

.status-text {
    font-weight: 500;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(60, 190, 242, 0.3);
}

.status-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.data-row:hover {
    border-bottom-color: rgba(60, 190, 242, 0.2);
}

.data-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

.data-value {
    color: #3cbef2;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.analysis-content {
    margin-top: 40px;
}

.analysis-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
    padding: 20px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.2), 
                rgba(0, 0, 0, 0.15));
    border-left: 3px solid #3cbef2;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.analysis-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.03), 
                transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.analysis-text:hover::before {
    transform: translateX(100%);
}

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

.spec-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.7), 
                rgba(40, 48, 60, 0.7));
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(60, 190, 242, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.spec-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.12), 
                rgba(60, 190, 242, 0.08));
    border: 1px solid rgba(60, 190, 242, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
}

.spec-icon i {
    color: #3cbef2;
    font-size: 1.3rem;
}

.spec-content h3 {
    color: #3cbef2;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.spec-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.arch-panel {
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.2), 
                rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.arch-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
                #3cbef2, 
                transparent);
    opacity: 0.5;
}

.arch-title {
    color: #3cbef2;
    font-size: 1.2rem;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
    padding-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.arch-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.arch-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.06), 
                rgba(60, 190, 242, 0.03));
    border-left: 2px solid #3cbef2;
}

.detail-label {
    color: #3cbef2;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.detail-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.note-item {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.7), 
                rgba(40, 48, 60, 0.7));
    border-left: 3px solid #3cbef2;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.note-item:hover {
    transform: translateX(5px);
    border-left-color: rgba(60, 190, 242, 0.8);
}

.note-icon {
    color: #3cbef2;
    font-size: 1.6rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.note-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mirrors-section {
    margin: 70px 0;
    padding: 45px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.25), 
                rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(60, 190, 242, 0.2);
    position: relative;
    border-radius: 2px;
}

.mirrors-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                #3cbef2, 
                transparent);
    opacity: 0.5;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.network-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(145deg, 
                rgba(255, 0, 0, 0.12), 
                rgba(200, 0, 0, 0.08));
    border: 1px solid rgba(255, 0, 0, 0.25);
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.network-notice i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.mirrors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    position: relative;
}

.node-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, 
                rgba(60, 190, 242, 0.15) 0%, 
                rgba(60, 190, 242, 0.05) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(60, 190, 242, 0.4);
    z-index: 2;
    box-shadow: 0 0 30px rgba(60, 190, 242, 0.2),
                inset 0 0 20px rgba(60, 190, 242, 0.1);
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(60, 190, 242, 0.3);
    animation: pulseSoft 3s infinite ease-in-out;
}

.node-icon {
    font-size: 2.2rem;
    color: #3cbef2;
    z-index: 3;
    filter: drop-shadow(0 0 5px rgba(60, 190, 242, 0.5));
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.4), 
                transparent);
    z-index: 1;
    pointer-events: none;
}

.line-1 {
    width: 28%;
    left: 12%;
    top: 50%;
    transform: rotate(20deg);
}

.line-2 {
    width: 28%;
    right: 12%;
    top: 50%;
    transform: rotate(-20deg);
}

.line-3 {
    width: 22%;
    left: 39%;
    bottom: 22%;
    transform: rotate(90deg);
}

.mirror-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 3;
    gap: 20px;
}

.mirror-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.85), 
                rgba(40, 48, 60, 0.85));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 320px;
}

.mirror-item:hover {
    border-color: rgba(60, 190, 242, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mirror-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.95), 
                rgba(40, 48, 60, 0.95));
    border: 2px solid #3cbef2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 15px rgba(60, 190, 242, 0.3);
}

.node-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, 
                rgba(60, 190, 242, 0.4) 0%, 
                rgba(60, 190, 242, 0.1) 50%, 
                transparent 70%);
    animation: pulseSoft 2s infinite alternate;
}

.node-number {
    color: #3cbef2;
    font-weight: 600;
    font-size: 1.3rem;
    z-index: 2;
    text-shadow: 0 0 5px rgba(60, 190, 242, 0.5);
}

.mirror-link {
    color: #3cbef2;
    text-decoration: none;
    padding: 12px 18px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.9), 
                rgba(40, 48, 60, 0.9));
    border: 1px solid rgba(60, 190, 242, 0.3);
    max-width: 280px;
    width: 100%;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 2px;
    text-align: center;
}

.mirror-link:hover {
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.2), 
                rgba(48, 140, 200, 0.15));
    border-color: #3cbef2;
    box-shadow: 0 0 15px rgba(60, 190, 242, 0.2);
}

.node-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: linear-gradient(145deg, #2ecc71, #27ae60);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
    animation: pulseSoft 2s infinite;
}

.status-indicator.offline {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.5);
}

.status-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.mirror-footnote {
    margin-top: 35px;
    padding: 25px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.3), 
                rgba(0, 0, 0, 0.25));
    border-top: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 2px;
}

.mirror-footnote p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footnote-small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.transaction-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.flow-step {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.2), 
                rgba(0, 0, 0, 0.15));
    border-left: 3px solid #3cbef2;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flow-step:hover {
    border-left-color: rgba(60, 190, 242, 0.8);
    transform: translateX(5px);
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.05), 
                transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.flow-step:hover::before {
    transform: translateX(100%);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, 
                #3cbef2, 
                rgba(48, 140, 200, 0.9));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.3rem;
    flex-shrink: 0;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(60, 190, 242, 0.3);
}

.step-content h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.note-box {
    padding: 25px;
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.08), 
                rgba(60, 190, 242, 0.04));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.note-box:hover {
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.note-box h4 {
    color: #3cbef2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 400;
}

.note-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.security-layer {
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.2), 
                rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.security-layer:hover {
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
}

.layer-header i {
    color: #3cbef2;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(60, 190, 242, 0.3));
}

.layer-header h3 {
    color: #3cbef2;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

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

.layer-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.5;
}

.layer-features li:before {
    content: '›';
    color: #3cbef2;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(60, 190, 242, 0.5);
}

.security-assessment {
    padding: 35px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.3), 
                rgba(0, 0, 0, 0.25));
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.security-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.5), 
                transparent);
}

.assessment-title {
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.assessment-content {
    margin-bottom: 30px;
}

.assessment-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.assessment-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.12), 
                rgba(60, 190, 242, 0.08));
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.rating-label {
    color: #3cbef2;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.rating-stars {
    display: flex;
    gap: 8px;
}

.rating-stars i {
    color: #3cbef2;
    font-size: 1.4rem;
    text-shadow: 0 0 8px rgba(60, 190, 242, 0.5);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-column {
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.7), 
                rgba(40, 48, 60, 0.7));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.feature-column:hover {
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

.feature-header i {
    color: #3cbef2;
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(60, 190, 242, 0.4));
}

.feature-header h3 {
    color: #3cbef2;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px dashed rgba(60, 190, 242, 0.3);
}

.feature-meta span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.feature-meta i {
    color: #3cbef2;
    font-size: 0.9rem;
}

.footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(60, 190, 242, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.4), 
                transparent);
}

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

.footer-item {
    padding: 20px;
}

.footer-label {
    color: #3cbef2;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.footer-item p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-signature {
    text-align: center;
    padding: 25px;
    position: relative;
}

.footer-signature span {
    color: #3cbef2;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    position: relative;
    padding: 0 25px;
    background-color: #303948;
    font-weight: 300;
    text-transform: uppercase;
}

.footer-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(60, 190, 242, 0.3), 
                transparent);
    z-index: -1;
}

@media (max-width: 1200px) {
    .container {
        padding: 20px 30px;
    }
    
    .circular-nav {
        right: 30px;
    }
    
    .main-content {
        margin-right: 100px;
    }
}

@media (max-width: 1024px) {
    .circular-nav {
        position: static;
        flex-direction: row;
        justify-content: center;
        transform: none;
        margin-bottom: 50px;
        flex-wrap: wrap;
        right: auto;
    }
    
    .main-content {
        margin-right: 0;
    }
    
    .mirrors-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .connection-line {
        display: none;
    }
    
    .mirror-links {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    
    .mirror-item {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px 20px;
    }
    
    .floating-card, .diagonal-card {
        transform: none;
        margin-left: 0;
    }
    
    .diagonal-card {
        transform: none;
        margin-left: 0;
    }
    
    .spec-grid, 
    .architecture-grid, 
    .security-grid, 
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .mirrors-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px 15px;
    }
    
    .card {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .logo-container {
        margin: 40px 0 60px;
    }
    
    .logo {
        width: 140px;
        height: 50px;
    }
    
    .logo-glow {
        width: 180px;
        height: 70px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.8), 
                rgba(40, 48, 60, 0.8));
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(60, 190, 242, 0.05) 50%, 
                transparent 70%);
}

.main-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3cbef2;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.meta-item i {
    font-size: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    margin: 40px 0 25px;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
}

.performance-metrics {
    margin-top: 40px;
}

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

.metric-card {
    padding: 25px 20px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.7), 
                rgba(40, 48, 60, 0.7));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: rgba(60, 190, 242, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 600;
    color: #3cbef2;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(60, 190, 242, 0.3);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    font-weight: 400;
}

.metric-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.usability-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.15), 
                rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(60, 190, 242, 0.1);
    border-radius: 2px;
}

.usability-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.infrastructure-description {
    margin-bottom: 40px;
}

.infrastructure-description p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.network-features {
    margin-top: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.7), 
                rgba(40, 48, 60, 0.7));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: #3cbef2;
    font-size: 1.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #3cbef2;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.crypto-analysis {
    margin-top: 40px;
}

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

.crypto-option {
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.7), 
                rgba(40, 48, 60, 0.7));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.crypto-option:hover {
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.crypto-option h4 {
    color: #3cbef2;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.crypto-option ul {
    list-style: none;
}

.crypto-option li {
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.crypto-option li:before {
    content: '•';
    color: #3cbef2;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.rating-score {
    color: #3cbef2;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 10px;
}

.vulnerability-analysis {
    margin-top: 40px;
}

.vulnerability-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.vuln-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.15), 
                rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    align-items: flex-start;
}

.vuln-severity {
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.vuln-severity.high {
    background: linear-gradient(145deg, 
                rgba(231, 76, 60, 0.2), 
                rgba(192, 57, 43, 0.15));
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.vuln-severity.medium {
    background: linear-gradient(145deg, 
                rgba(241, 196, 15, 0.2), 
                rgba(243, 156, 18, 0.15));
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.vuln-severity.low {
    background: linear-gradient(145deg, 
                rgba(46, 204, 113, 0.2), 
                rgba(39, 174, 96, 0.15));
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.vuln-content h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.vuln-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-evolution {
    margin-top: 40px;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
                rgba(60, 190, 242, 0.3), 
                transparent);
}

.timeline-item {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.6), 
                rgba(40, 48, 60, 0.6));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateX(5px);
}

.timeline-date {
    width: 100px;
    flex-shrink: 0;
    color: #3cbef2;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.timeline-content h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-card {
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.9), 
                rgba(40, 48, 60, 0.9));
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.comparison-table {
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 40px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.1), 
                rgba(48, 140, 200, 0.08));
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(60, 190, 242, 0.1);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(60, 190, 242, 0.03);
}

.table-cell {
    padding: 18px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.feature-col {
    font-weight: 500;
    color: #FFFFFF;
}

.table-cell i.fa-check {
    color: #2ecc71;
}

.table-cell i.fa-times {
    color: #e74c3c;
}

.market-positioning {
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.15), 
                rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(60, 190, 242, 0.1);
    border-radius: 2px;
}

.market-positioning p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.faq-card {
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.85), 
                rgba(40, 48, 60, 0.85));
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(60, 190, 242, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.1), 
                rgba(0, 0, 0, 0.05));
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(145deg, 
                rgba(60, 190, 242, 0.08), 
                rgba(48, 140, 200, 0.06));
}

.faq-question i {
    color: #3cbef2;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

.conclusion-section {
    margin: 70px 0;
    padding: 50px;
    background: linear-gradient(145deg, 
                rgba(0, 0, 0, 0.25), 
                rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 2px;
    position: relative;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                #3cbef2, 
                transparent);
}

.conclusion-content {
    margin-bottom: 40px;
}

.conclusion-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.conclusion-rating {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(145deg, 
                rgba(48, 57, 72, 0.8), 
                rgba(40, 48, 60, 0.8));
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
}

.rating-category {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-label {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
    min-width: 150px;
    letter-spacing: 0.05em;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, 
                #3cbef2, 
                rgba(48, 140, 200, 0.8));
    border-radius: 4px;
    transition: width 1s ease;
}

.rating-value {
    color: #3cbef2;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: right;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(60, 190, 242, 0.1);
}

.footer-links a {
    color: #3cbef2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(60, 190, 242, 0.1);
    border-color: #3cbef2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .header-meta {
        gap: 15px;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .crypto-comparison {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .feature-col {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-date {
        width: auto;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .rating-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rating-bar {
        width: 100%;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 30px 15px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .conclusion-section {
        padding: 30px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}