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

:root {
    --primary-bg: #0a0e14;
    --secondary-bg: #303948;
    --accent: #3cbef2;
    --text: #FFFFFF;
    --text-secondary: #a0c3d9;
    --border: rgba(60, 190, 242, 0.2);
    --card-bg: rgba(48, 57, 72, 0.7);
    --glow: rgba(60, 190, 242, 0.15);
}

body {
    background-color: var(--primary-bg);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
    background-image: 
        linear-gradient(135deg, transparent 0%, rgba(26, 35, 50, 0.1) 100%);
}

.hologram-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 25px;
    padding: 30px;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

.hologram-grid::before {
    content: '';
    position: fixed;
    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%);
    pointer-events: none;
    z-index: -2;
}

.logo-panel {
    grid-column: 1 / span 3;
    grid-row: 1;
    align-self: start;
    transform: rotate(-1deg) translateY(10px);
}

.main-title {
    grid-column: 4 / span 6;
    grid-row: 1;
    text-align: center;
    align-self: center;
    transform: rotate(0.5deg);
}

.stats-panel {
    grid-column: 10 / span 3;
    grid-row: 1;
    align-self: start;
    transform: rotate(1deg);
}

.description-panel {
    grid-column: 1 / span 5;
    grid-row: 2 / span 2;
    transform: rotate(-0.5deg);
}

.features-panel {
    grid-column: 6 / span 7;
    grid-row: 2;
    transform: rotate(0.3deg);
}

.links-panel {
    grid-column: 6 / span 4;
    grid-row: 3;
    transform: rotate(-0.8deg);
}

.procedure-panel {
    grid-column: 10 / span 3;
    grid-row: 3;
    transform: rotate(0.7deg);
}

.analysis-panel {
    grid-column: 1 / span 6;
    grid-row: 4;
    transform: rotate(-0.3deg);
}

.warning-panel {
    grid-column: 7 / span 3;
    grid-row: 4;
    transform: rotate(0.9deg);
}

.conclusion-panel {
    grid-column: 10 / span 3;
    grid-row: 4;
    transform: rotate(-0.6deg);
}

.panel-base {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.panel-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.panel-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.03), 
        transparent);
    transition: left 0.6s ease;
}

.panel-base:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 30px var(--glow),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.panel-base:hover::after {
    left: 100%;
}

.logo {
    width: 165px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

.main-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.main-title h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent), 
        transparent);
}

.flicker {
    background: linear-gradient(90deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flicker 8s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    padding: 18px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(60, 190, 242, 0.1);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 5px;
    font-weight: 600;
}

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

.panel-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.panel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.scroll-content {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 15px;
}

.scroll-content::-webkit-scrollbar {
    width: 3px;
}

.scroll-content::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.feature {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(60, 190, 242, 0.08);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 400;
}

.feature h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
}

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

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    border-left: 2px solid var(--accent);
    transition: all 0.2s ease;
}

.link-item:hover {
    background: rgba(60, 190, 242, 0.1);
    transform: translateX(3px);
}

.link-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    position: relative;
}

.link-bullet::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.3;
}

.holo-link {
    color: var(--text);
    text-decoration: none;
    font-family: 'Exo 2', monospace;
    font-size: 1rem;
    word-break: break-all;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.holo-link:hover {
    color: var(--accent);
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(60, 190, 242, 0.08);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--accent);
}

.pulse-small {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}

.pulse-small::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    animation: pulse 2s infinite;
}

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

.procedure-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 2px solid var(--accent);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
    min-width: 45px;
    text-align: center;
    font-weight: 600;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.analysis-positive,
.analysis-negative {
    padding: 22px;
    border-radius: 8px;
}

.analysis-positive {
    background: rgba(60, 190, 242, 0.08);
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.analysis-negative {
    background: rgba(255, 100, 100, 0.08);
    border: 1px solid rgba(255, 100, 100, 0.2);
}

.analysis-positive h3,
.analysis-negative h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.analysis-positive h3 {
    color: var(--accent);
}

.analysis-negative h3 {
    color: #ff6464;
}

.analysis-positive ul,
.analysis-negative ul {
    list-style: none;
    padding-left: 0;
}

.analysis-positive li,
.analysis-negative li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.analysis-positive li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.analysis-negative li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6464;
    font-weight: bold;
}

.warning-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2.2rem;
    color: #ffcc00;
    flex-shrink: 0;
    margin-top: 5px;
}

.warning-text h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    color: #ffcc00;
    font-size: 1.2rem;
    font-weight: 500;
}

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

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

.data-stream {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-point {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: stream 1.2s infinite;
}

.stream-point:nth-child(2) { animation-delay: 0.4s; }
.stream-point:nth-child(3) { animation-delay: 0.8s; }

@keyframes stream {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@media (max-width: 1400px) {
    .hologram-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
        padding: 25px;
    }
    
    .logo-panel { grid-column: 1 / span 2; }
    .main-title { grid-column: 3 / span 4; }
    .stats-panel { grid-column: 7 / span 2; }
    .description-panel { grid-column: 1 / span 4; grid-row: 2 / span 2; }
    .features-panel { grid-column: 5 / span 4; grid-row: 2; }
    .links-panel { grid-column: 5 / span 2; grid-row: 3; }
    .procedure-panel { grid-column: 7 / span 2; grid-row: 3; }
    .analysis-panel { grid-column: 1 / span 4; grid-row: 4; }
    .warning-panel { grid-column: 5 / span 2; grid-row: 4; }
    .conclusion-panel { grid-column: 7 / span 2; grid-row: 4; }
}

@media (max-width: 1024px) {
    .hologram-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
        padding: 20px;
    }
    
    .logo-panel { grid-column: 1 / span 2; }
    .main-title { grid-column: 3 / span 4; grid-row: 1; }
    .stats-panel { grid-column: 1 / span 3; grid-row: 2; }
    .description-panel { grid-column: 4 / span 3; grid-row: 2 / span 2; }
    .features-panel { grid-column: 1 / span 6; grid-row: 3; }
    .links-panel { grid-column: 1 / span 3; grid-row: 4; }
    .procedure-panel { grid-column: 4 / span 3; grid-row: 4; }
    .analysis-panel { grid-column: 1 / span 6; grid-row: 5; }
    .warning-panel { grid-column: 1 / span 3; grid-row: 6; }
    .conclusion-panel { grid-column: 4 / span 3; grid-row: 6; }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hologram-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .logo-panel,
    .main-title,
    .stats-panel,
    .description-panel,
    .features-panel,
    .links-panel,
    .procedure-panel,
    .analysis-panel,
    .warning-panel,
    .conclusion-panel {
        grid-column: 1 !important;
        grid-row: auto !important;
        transform: none !important;
        margin-bottom: 15px;
    }
    
    .panel-base {
        padding: 22px;
    }
    
    .main-title h1 {
        font-size: 2.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .panel-base:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .hologram-grid {
        padding: 12px;
        gap: 12px;
    }
    
    .panel-base {
        padding: 18px;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .panel-title {
        font-size: 1.4rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .scroll-content {
        max-height: 220px;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .link-item {
        padding: 14px;
    }
}

.logo-panel,
.main-title,
.stats-panel,
.description-panel,
.features-panel,
.links-panel,
.procedure-panel,
.analysis-panel,
.warning-panel,
.conclusion-panel {
    composes: panel-base;
}

.header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(60, 190, 242, 0.1);
}

.security-badge {
    background: rgba(60, 190, 242, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.last-update {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.title-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(60, 190, 242, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.product-categories-panel {
    grid-column: 1 / span 4;
    grid-row: 5;
    transform: rotate(0.2deg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.category {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.category:hover {
    background: rgba(60, 190, 242, 0.08);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.category h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
}

.registration-guide-panel {
    grid-column: 5 / span 4;
    grid-row: 5;
    transform: rotate(-0.4deg);
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.guide-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 2px solid var(--accent);
}

.payment-methods-panel {
    grid-column: 9 / span 4;
    grid-row: 5;
    transform: rotate(0.3deg);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-method h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 500;
}

.vendor-guide-panel {
    grid-column: 1 / span 6;
    grid-row: 6;
    transform: rotate(-0.2deg);
}

.vendor-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin: 20px 0 12px 0;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
}

.vendor-content h3:first-child {
    margin-top: 0;
}

.faq-panel {
    grid-column: 7 / span 6;
    grid-row: 6;
    transform: rotate(0.4deg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.faq-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 500;
}

.site-footer {
    grid-column: 1 / span 12;
    grid-row: 7;
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.scroll-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin: 25px 0 15px 0;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
    padding-bottom: 8px;
}

.product-categories-panel,
.registration-guide-panel,
.payment-methods-panel,
.vendor-guide-panel,
.faq-panel,
.site-footer {
    composes: panel-base;
}

@media (max-width: 1400px) {
    .product-categories-panel { grid-column: 1 / span 4; grid-row: 5; }
    .registration-guide-panel { grid-column: 5 / span 4; grid-row: 5; }
    .payment-methods-panel { grid-column: 1 / span 4; grid-row: 6; }
    .vendor-guide-panel { grid-column: 5 / span 4; grid-row: 6; }
    .faq-panel { grid-column: 1 / span 8; grid-row: 7; }
    .site-footer { grid-column: 1 / span 8; grid-row: 8; }
    
    .categories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .product-categories-panel { grid-column: 1 / span 6; grid-row: 7; }
    .registration-guide-panel { grid-column: 1 / span 6; grid-row: 8; }
    .payment-methods-panel { grid-column: 1 / span 6; grid-row: 9; }
    .vendor-guide-panel { grid-column: 1 / span 6; grid-row: 10; }
    .faq-panel { grid-column: 1 / span 6; grid-row: 11; }
    .site-footer { grid-column: 1 / span 6; grid-row: 12; }
}

@media (max-width: 768px) {
    .product-categories-panel,
    .registration-guide-panel,
    .payment-methods-panel,
    .vendor-guide-panel,
    .faq-panel,
    .site-footer {
        grid-column: 1 !important;
        grid-row: auto !important;
        transform: none !important;
        margin-bottom: 15px;
    }
    
    .categories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .title-tags {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .header-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .categories-grid,
    .faq-grid {
        gap: 12px;
    }
    
    .category,
    .faq-item {
        padding: 15px;
    }
}