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

body {
background-color: #0a0c15;
background-image: 
radial-gradient(circle at 25% 30%, rgba(39, 67, 114, 0.12) 0%, transparent 40%),
radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 35%),
linear-gradient(rgba(39, 67, 114, 0.08) 1px, transparent 1px),
linear-gradient(90deg, rgba(39, 67, 114, 0.08) 1px, transparent 1px);
background-size: 100% 100%, 100% 100%, 52px 52px, 52px 52px;
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Courier New', monospace;
color: #f2f6ff;
line-height: 1.5;
min-height: 100vh;
padding: 16px;
font-weight: 400;
text-rendering: optimizeSpeed;
-webkit-font-smoothing: antialiased;
}

.container {
max-width: 1440px;
margin: 0 auto;
background: rgba(8, 12, 22, 0.92);
backdrop-filter: blur(2px);
border: 1px solid #274372;
box-shadow: 0 20px 35px -15px #000000, 0 0 0 1px rgba(39, 67, 114, 0.4) inset;
padding: 24px;
position: relative;
z-index: 2;
}

.site-header {
border-bottom: 2px solid #274372;
margin-bottom: 28px;
padding-bottom: 18px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.header-glitch {
position: relative;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
letter-spacing: -0.02em;
text-transform: uppercase;
line-height: 1.1;
font-family: 'Inter', 'Courier New', monospace;
}

.glitch-text {
color: #ffffff;
text-shadow: 3px 3px 0 #274372, 6px 6px 0 #16263f;
display: block;
}

.glitch-shadow {
position: absolute;
top: 3px;
left: 3px;
color: #274372;
opacity: 0.25;
clip-path: polygon(0 15%, 100% 20%, 100% 70%, 0 65%);
pointer-events: none;
width: 100%;
}

.header-sub {
font-size: 0.95rem;
color: #adc6ff;
border-left: 3px solid #274372;
padding-left: 16px;
text-transform: uppercase;
letter-spacing: 1.2px;
font-weight: 500;
}

.blink {
animation: softBlink 2.4s infinite;
}

@keyframes softBlink {
0%, 50% { opacity: 1; }
50.1%, 100% { opacity: 0.4; }
}

.header-stats {
display: flex;
flex-wrap: wrap;
gap: 12px 24px;
margin-top: 20px;
background: rgba(12, 20, 35, 0.8);
border: 1px solid #274372;
padding: 14px 22px;
width: 100%;
font-size: 0.9rem;
}

.stat-item {
color: #d2e0ff;
font-weight: 500;
display: inline-flex;
align-items: center;
white-space: nowrap;
}

.stat-item::before {
content: '▶';
color: #274372;
font-size: 0.7rem;
margin-right: 8px;
}

.info-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
background: rgba(0, 0, 0, 0.4);
border: 1px solid #274372;
padding: 16px 24px;
margin-bottom: 32px;
}

.info-tagline {
font-size: 1.5rem;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px 20px;
font-weight: 500;
}

.prompt {
color: #274372;
font-weight: 700;
font-size: 1.8rem;
margin-right: 4px;
}

.cursor {
animation: pulse 1.2s infinite;
background: #274372;
width: 12px;
height: 28px;
display: inline-block;
margin-left: 2px;
}

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

.tagline-ext {
font-size: 1rem;
color: #8aa9e6;
border-left: 2px solid #274372;
padding-left: 18px;
font-weight: 400;
}

.info-stats {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.badge {
background: #274372;
color: white;
padding: 5px 14px;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.3px;
clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
white-space: nowrap;
}

.announcement-bar {
background: #0f1a2b;
border: 1px solid #274372;
padding: 12px 20px;
margin-bottom: 30px;
font-size: 0.95rem;
color: #ffd9a3;
text-align: center;
word-break: break-word;
border-left: 4px solid #ffaa33;
}

.content-grid {
display: grid;
grid-template-columns: 1fr 360px;
gap: 32px;
margin-bottom: 42px;
}

.section-block {
border: 1px solid #274372;
background: rgba(10, 16, 28, 0.8);
margin-bottom: 28px;
box-shadow: 4px 4px 0 rgba(39, 67, 114, 0.2);
transition: box-shadow 0.15s;
}

.section-block:hover {
box-shadow: 6px 6px 0 rgba(39, 67, 114, 0.3);
}

.section-title {
background: #274372;
color: white;
padding: 12px 20px;
font-size: 1.4rem;
letter-spacing: 1px;
text-transform: uppercase;
font-weight: 600;
display: flex;
align-items: center;
border-bottom: 1px solid #ffffff30;
}

.title-decoration {
font-size: 1.2rem;
margin: 0 10px;
color: #bfd2ff;
opacity: 0.9;
}

.mirror-list {
padding: 20px;
}

.mirror-item {
margin-bottom: 16px;
font-size: 1rem;
display: flex;
align-items: center;
border-left: 3px solid #274372;
padding: 12px 16px;
background: rgba(18, 28, 45, 0.7);
word-break: break-all;
gap: 10px;
}

.mirror-item.primary {
border-left-color: #4a9eff;
background: rgba(39, 67, 114, 0.3);
}

.mirror-bullet {
color: #274372;
font-size: 1.2rem;
flex-shrink: 0;
}

.mirror-link {
color: #c4d6ff;
text-decoration: none;
word-break: break-all;
font-family: 'SF Mono', 'Courier New', monospace;
font-size: 0.95rem;
border-bottom: 1px dotted #274372;
flex: 1;
transition: color 0.1s;
}

.mirror-link:hover {
color: white;
border-bottom-color: white;
}

.mirror-status {
background: #1a3a2a;
color: #bcffd2;
padding: 3px 12px;
font-size: 0.8rem;
font-weight: 500;
clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
flex-shrink: 0;
white-space: nowrap;
}

.mirror-info {
padding: 6px 20px 16px;
color: #a5bde8;
font-size: 0.9rem;
border-top: 1px dashed #27437260;
}

.verification-box {
display: flex;
padding: 20px;
gap: 12px;
flex-wrap: wrap;
}

.verif-input {
flex: 1;
min-width: 240px;
background: #02040c;
border: 1px solid #274372;
padding: 14px 18px;
font-family: 'SF Mono', 'Courier New', monospace;
font-size: 0.95rem;
color: white;
outline: none;
transition: border 0.1s, box-shadow 0.1s;
}

.verif-input:focus {
border-color: #8aaeff;
box-shadow: 0 0 0 2px rgba(39, 67, 114, 0.6);
}

.verif-btn {
background: #274372;
color: white;
border: 1px solid white;
padding: 14px 26px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
font-family: 'Inter', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.1s;
white-space: nowrap;
}

.verif-btn:hover {
background: #1f3a63;
border-color: #c4d6ff;
}

.verif-result {
margin: 0 20px 20px;
padding: 16px 20px;
border: 1px solid #274372;
background: #0c1425;
font-size: 1rem;
word-break: break-word;
min-height: 70px;
font-weight: 400;
}

.verif-result.valid {
border-color: #2e8b5e;
background: #0c241c;
color: #d0ffd0;
}

.verif-result.invalid {
border-color: #b35f5f;
background: #241414;
color: #ffcfcf;
}

.hint {
margin: 0 20px 20px;
color: #7b9cd9;
font-size: 0.9rem;
}

.content-article {
padding: 22px 26px;
}

.content-article h2 {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 18px;
border-bottom: 2px solid #274372;
padding-bottom: 12px;
letter-spacing: -0.01em;
}

.content-article h3 {
font-size: 1.4rem;
font-weight: 500;
margin: 28px 0 16px;
border-left: 5px solid #274372;
padding-left: 18px;
color: #d4e2ff;
}

.content-article p {
margin-bottom: 18px;
font-size: 1rem;
color: #e6ecf8;
line-height: 1.6;
}

.spec-list {
list-style: none;
margin: 22px 0;
}

.spec-list li {
margin-bottom: 14px;
padding-left: 28px;
position: relative;
font-size: 1rem;
border-bottom: 1px dotted #27437260;
padding-bottom: 10px;
}

.spec-list li::before {
content: '●';
color: #274372;
position: absolute;
left: 0;
font-size: 1.1rem;
top: -1px;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
margin: 28px 0;
}

.feature-item {
border: 1px solid #274372;
padding: 20px 16px;
background: rgba(18, 28, 45, 0.7);
text-align: center;
transition: transform 0.1s;
}

.feature-item:hover {
transform: translateY(-2px);
background: rgba(28, 42, 65, 0.8);
}

.feature-icon {
font-size: 2.2rem;
display: block;
margin-bottom: 10px;
}

.feature-item h4 {
font-size: 1.3rem;
margin-bottom: 8px;
color: #c4d6ff;
font-weight: 500;
}

.feature-item p {
font-size: 0.9rem;
margin: 0;
color: #c0d1f0;
line-height: 1.5;
}

.stats-box {
background: rgba(0, 0, 0, 0.3);
border: 1px solid #274372;
padding: 20px;
margin: 28px 0;
}

.stat-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px dotted #27437280;
font-size: 1rem;
}

.stat-row:last-child {
border-bottom: none;
}

.stat-label {
color: #b8cef5;
}

.stat-value {
color: white;
font-weight: 600;
}

.keyword-strip {
background: rgba(16, 26, 45, 0.8);
border: 1px solid #274372;
padding: 16px 24px;
font-size: 1rem;
color: #d2e2ff;
display: flex;
flex-wrap: wrap;
gap: 10px 20px;
margin-bottom: 30px;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 0.2px;
}

.sep {
color: #274372;
font-weight: bold;
}

.faq-list {
padding: 18px 22px;
}

.faq-item {
margin-bottom: 18px;
border: 1px solid #274372;
background: rgba(8, 16, 30, 0.7);
}

.faq-q {
background: #1d2b48;
padding: 14px 22px;
font-size: 1.1rem;
font-weight: 600;
color: white;
border-bottom: 1px solid #274372;
}

.faq-a {
padding: 16px 22px;
font-size: 1rem;
color: #dee9ff;
line-height: 1.5;
}

.ad-panel {
display: flex;
flex-direction: column;
gap: 22px;
}

.ad-container {
width: 100%;
border: 2px solid #274372;
background: #02050c;
}

.prime-gif {
max-width: 100%;
height: auto;
display: block;
image-rendering: crisp-edges;
}

.gif-placeholder {
width: 100%;
height: 128px;
background: #0d1a30;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: #274372;
border: 1px dashed #274372;
font-weight: 500;
letter-spacing: 1px;
}

.info-panel {
border: 1px solid #274372;
background: rgba(10, 18, 30, 0.85);
margin-bottom: 0;
}

.panel-title {
background: #1d2b48;
padding: 12px 18px;
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 0.3px;
border-bottom: 1px solid #274372;
}

.stats-list, .announce-list {
padding: 16px 18px;
}

.stat-line {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px dotted #27437270;
font-size: 0.95rem;
}

.announce-list {
list-style: none;
}

.announce-list li {
padding: 8px 0;
border-bottom: 1px dotted #27437270;
font-size: 0.9rem;
color: #cedbff;
}

.pgp-key {
padding: 18px;
font-family: 'SF Mono', 'Courier New', monospace;
font-size: 0.9rem;
line-height: 1.6;
background: #0b1325;
letter-spacing: 1px;
word-break: break-all;
color: #c3d5ff;
}

.warning-text {
padding: 18px;
color: #ffcfb0;
font-size: 0.95rem;
line-height: 1.6;
background: rgba(40, 18, 18, 0.4);
border-left: 3px solid #b35f5f;
}

.counter {
border: 1px solid #274372;
background: #0e1a2c;
padding: 14px 20px;
display: flex;
justify-content: space-between;
font-size: 1rem;
}

.counter-digits {
background: #274372;
color: white;
padding: 4px 14px;
letter-spacing: 2px;
font-weight: 600;
}

.seo-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
margin: 35px 0 30px;
border-top: 2px solid #274372;
padding-top: 28px;
}

.seo-block h2 {
font-size: 1.2rem;
color: #c4d6ff;
margin-bottom: 12px;
font-weight: 600;
}

.seo-block p {
font-size: 0.92rem;
color: #cedbff;
line-height: 1.6;
}

.site-footer {
margin-top: 30px;
border-top: 2px solid #274372;
padding-top: 22px;
}

.footer-marquee {
background: #0f1a2e;
border: 1px solid #274372;
padding: 10px;
font-size: 0.95rem;
color: #c4d6ff;
margin-bottom: 20px;
white-space: nowrap;
overflow: hidden;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
align-items: center;
font-size: 0.95rem;
margin-bottom: 14px;
}

.footer-links a {
color: white;
text-decoration: none;
border-bottom: 1px dotted #274372;
padding-bottom: 2px;
transition: border 0.1s;
}

.footer-links a:hover {
border-bottom-color: white;
}

.dot {
color: #274372;
font-size: 1.1rem;
}

.copy {
margin-left: auto;
color: #5f7db0;
font-size: 0.85rem;
}

.footer-disclaimer {
color: #7f9ed0;
font-size: 0.8rem;
text-align: center;
padding: 12px;
border-top: 1px dashed #27437260;
}

@media screen and (max-width: 1000px) {
.content-grid {
grid-template-columns: 1fr;
}
.feature-grid {
grid-template-columns: 1fr;
}
.seo-content {
grid-template-columns: 1fr;
}
.footer-links {
flex-direction: column;
align-items: flex-start;
}
.copy {
margin-left: 0;
margin-top: 6px;
}
.header-glitch {
font-size: 2.4rem;
}
}

@media screen and (max-width: 600px) {
body {
padding: 8px;
}
.container {
padding: 14px;
}
.header-glitch {
font-size: 1.8rem;
}
.info-tagline {
font-size: 1.2rem;
}
.section-title {
font-size: 1.2rem;
padding: 10px 16px;
}
.verification-box {
flex-direction: column;
}
.verif-btn {
width: 100%;
}
.mirror-item {
flex-wrap: wrap;
}
.mirror-status {
margin-left: 28px;
}
.badge {
font-size: 0.75rem;
padding: 4px 10px;
}
}

::-webkit-scrollbar {
width: 6px;
height: 6px;
}

::-webkit-scrollbar-track {
background: #0b1322;
}

::-webkit-scrollbar-thumb {
background: #274372;
border: 1px solid #345691;
}

::-webkit-scrollbar-thumb:hover {
background: #2f4c82;
}

::selection {
background: #274372;
color: white;
}