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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #303948;
    color: #FFFFFF;
    font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    overflow-x: hidden;
    position: relative;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.01) 100%);
    z-index: -2;
    pointer-events: none;
}

.hologram-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(60, 190, 242, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 190, 242, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    transform: perspective(800px) rotateX(70deg) translateY(-10%) scale(1.8);
    opacity: 0.4;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
    position: relative;
}

header.tilt-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 6px;
    transform: rotate(-0.7deg);
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

header.tilt-card:hover {
    transform: rotate(-0.5deg) translateY(-2px);
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(60, 190, 242, 0.2);
}

header.tilt-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(60, 190, 242, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

header.tilt-card:hover::after {
    opacity: 1;
}

.logo-container {
    margin-right: 40px;
    position: relative;
    z-index: 1;
}

.logo {
    width: 165px;
    height: 60px;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 12px rgba(60, 190, 242, 0.5))
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: 
        drop-shadow(0 0 16px rgba(60, 190, 242, 0.7))
        drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.header-title h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    font-weight: 300;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.header-title .accent {
    background: linear-gradient(135deg, #3cbef2 0%, #2a8db8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.subtitle {
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-top: 8px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

.subtitle::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #3cbef2;
    font-size: 0.7rem;
}

.main-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
}

.nav-panel {
    flex: 0 0 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(60, 190, 242, 0.1);
    padding: 30px 20px;
    position: sticky;
    top: 40px;
    height: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transform: skewY(-1deg);
}

.nav-panel ul {
    list-style: none;
}

.nav-panel li {
    margin-bottom: 16px;
    position: relative;
}

.nav-panel a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 10px 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.nav-panel a:hover {
    color: #FFFFFF;
    border-left-color: #3cbef2;
    background: rgba(60, 190, 242, 0.05);
}

.nav-panel a:hover::before {
    transform: translateX(0);
}

.nav-panel a:hover::after {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3cbef2;
    opacity: 0.8;
}

.nav-decoration {
    position: absolute;
    bottom: 25px;
    right: 20px;
    left: 20px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.3) 20%, 
        rgba(60, 190, 242, 0.6) 50%, 
        rgba(60, 190, 242, 0.3) 80%, 
        transparent);
}

main {
    flex: 1;
    min-width: 300px;
}

.content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.content-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(60, 190, 242, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.content-card:hover::after {
    opacity: 1;
}

.skew-left {
    transform: rotate(0.8deg) translateX(-10px);
}

.skew-right {
    transform: rotate(-0.8deg) translateX(10px);
}

.skew-left:hover,
.skew-right:hover {
    transform: rotate(0deg) translateX(0) translateY(-5px);
}

.content-card h2 {
    color: #3cbef2;
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 1.2px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
    font-weight: 500;
}

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

.content-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 25px;
}

.content-card li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-card li::before {
    content: '◈';
    position: absolute;
    left: 0;
    top: 2px;
    color: #3cbef2;
    font-size: 0.9rem;
    opacity: 0.7;
}

.content-card strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, #3cbef2 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 2px;
}

.links-section {
    border: 1px solid rgba(60, 190, 242, 0.2);
    background: rgba(60, 190, 242, 0.03);
    position: relative;
}

.links-section::before {
    content: 'NETWORK GATEWAYS';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #303948;
    color: #3cbef2;
    font-size: 0.8rem;
    padding: 0 15px;
    letter-spacing: 1px;
}

.links-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.link-item {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-left: 3px solid #3cbef2;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.link-item:hover {
    transform: translateX(8px);
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(60, 190, 242, 0.3);
    box-shadow: 0 5px 20px rgba(60, 190, 242, 0.1);
}

.link-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(60, 190, 242, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-item:hover::before {
    opacity: 1;
}

.link-bullet {
    color: #3cbef2;
    margin-right: 20px;
    font-size: 1.3rem;
    min-width: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mirror-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    word-break: break-all;
    flex: 1;
}

.mirror-link:hover {
    color: #3cbef2;
    text-shadow: 0 0 10px rgba(60, 190, 242, 0.3);
}

.no-links {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding: 30px;
    text-align: center;
    border: 2px dashed rgba(60, 190, 242, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.01);
}

.access-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 25px;
    line-height: 1.6;
    font-style: italic;
}

.verdict-card {
    border: 1px solid rgba(60, 190, 242, 0.4);
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.08) 0%, transparent 100%);
    position: relative;
    overflow: visible;
}

.verdict-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3cbef2, transparent, #3cbef2);
    border-radius: 6px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.verdict-card:hover::before {
    opacity: 0.3;
}

.rating {
    display: inline-block;
    font-size: 2.2rem;
    color: #3cbef2;
    margin-right: 20px;
    vertical-align: middle;
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(60, 190, 242, 0.5),
        0 0 5px rgba(255, 255, 255, 0.1);
    min-width: 80px;
}

.verdict-text {
    display: inline;
    vertical-align: middle;
    font-size: 1.1rem;
}

footer.tilt-card {
    text-align: center;
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(60, 190, 242, 0.2);
    transform: rotate(0.4deg);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    position: relative;
}

footer.tilt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3cbef2, transparent);
}

.footer-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .container {
        padding: 30px 20px;
    }
    
    .main-layout {
        gap: 30px;
    }
    
    .nav-panel {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }
    
    .nav-panel {
        position: static;
        transform: none;
        order: -1;
        width: 100%;
    }
    
    header.tilt-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .logo-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .header-title h1 {
        font-size: 2.2rem;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .skew-left,
    .skew-right {
        transform: none;
    }
    
    .rating {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .verdict-text {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .content-card h2 {
        font-size: 1.4rem;
    }
    
    .link-item {
        padding: 12px 15px;
    }
    
    .mirror-link {
        font-size: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .content-card,
    .link-item,
    header.tilt-card {
        transform: none !important;
        transition: none !important;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #303948;
    color: #FFFFFF;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hologram-grid {
    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;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 25px;
    position: relative;
}

header.tilt-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(60, 190, 242, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

.logo-container {
    margin-right: 30px;
    position: relative;
}

.logo {
    width: 165px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.header-title h1 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    font-weight: 300;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.header-title .accent {
    font-weight: 600;
    color: #3cbef2;
    -webkit-text-fill-color: initial;
    background: none;
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.nav-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 25px 15px;
    position: sticky;
    top: 30px;
    height: fit-content;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.nav-panel ul {
    list-style: none;
}

.nav-panel li {
    margin-bottom: 12px;
}

.nav-panel a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 10px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-panel a:hover {
    color: #FFFFFF;
    background: rgba(60, 190, 242, 0.08);
    border-left-color: #3cbef2;
}

.nav-decoration {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.3) 20%, 
        rgba(60, 190, 242, 0.6) 50%, 
        rgba(60, 190, 242, 0.3) 80%, 
        transparent);
    margin-top: 20px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.skew-left {
    transform: translateX(-5px);
}

.skew-right {
    transform: translateX(5px);
}

.content-card h2 {
    color: #3cbef2;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

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

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 20px;
}

.content-card li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.content-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #3cbef2;
    font-size: 0.9rem;
}

.content-card strong {
    color: #FFFFFF;
    font-weight: 600;
}

.links-section {
    border: 1px solid rgba(60, 190, 242, 0.2);
    background: rgba(60, 190, 242, 0.03);
}

.links-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.link-item:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(60, 190, 242, 0.25);
}

.link-bullet {
    color: #3cbef2;
    margin-right: 15px;
    font-size: 1.1rem;
}

.mirror-index {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-right: 10px;
    min-width: 90px;
}

.mirror-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
    transition: color 0.2s ease;
}

.mirror-link:hover {
    color: #3cbef2;
}

.no-links {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.access-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    line-height: 1.6;
}

.verdict-card {
    border: 1px solid rgba(60, 190, 242, 0.3);
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.05) 0%, transparent 100%);
}

.rating {
    display: inline-block;
    font-size: 2.2rem;
    color: #3cbef2;
    margin-right: 20px;
    vertical-align: middle;
    font-weight: 700;
}

.verdict-text {
    display: inline;
    vertical-align: middle;
    font-size: 1.1rem;
}

footer.tilt-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 25px 30px;
    text-align: center;
    margin-top: 40px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

@media (max-width: 1100px) {
    .main-layout {
        grid-template-columns: 220px 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-panel {
        position: static;
        max-height: none;
    }
    
    header.tilt-card {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    header.tilt-card {
        padding: 20px;
    }
    
    .header-title h1 {
        font-size: 2.2rem;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .content-card h2 {
        font-size: 1.3rem;
    }
    
    .skew-left,
    .skew-right {
        transform: none;
    }
}

@media (max-width: 480px) {
    .header-title h1 {
        font-size: 1.8rem;
    }
    
    .content-card {
        padding: 18px;
    }
    
    .mirror-index {
        display: none;
    }
    
    .link-item {
        padding: 12px 15px;
    }
    
    .rating {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .verdict-text {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .content-card,
    .link-item {
        transform: none !important;
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .nav-panel,
    header.tilt-card,
    .content-card {
        background: rgba(255, 255, 255, 0.03);
    }
}