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

body {
    font-family: 'Courier New', monospace;
    background-color: #303948;
    color: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    width: 165px;
    height: 60px;
    filter: brightness(0) invert(1);
}

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

.review-section {
    text-align: center;
    padding: 2rem;
    border: 1px solid #3cbef2;
}

.rating-display {
    margin-bottom: 1.5rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #3cbef2;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.5rem;
    color: #3cbef2;
    letter-spacing: 0.2rem;
}

.review-text {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.article-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-block {
    padding: 2rem;
    border-left: 2px solid #3cbef2;
    background-color: rgba(255, 255, 255, 0.05);
}

.article-block h1 {
    color: #3cbef2;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.article-block h2 {
    color: #3cbef2;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.article-block p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1rem;
}

.article-block p:last-child {
    margin-bottom: 0;
}

.links-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.links-grid {
    display: grid;
    gap: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.link-item {
    padding: 1.2rem;
    border: 1px solid #FFFFFF;
    text-align: center;
    transition: all 0.3s ease;
}

.link-item:hover {
    border-color: #3cbef2;
    background-color: rgba(60, 190, 242, 0.1);
}

.link-url {
    word-break: break-all;
    font-family: 'Courier New', monospace;
    color: #3cbef2;
    font-size: 1rem;
}

.features-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    color: #3cbef2;
    font-weight: bold;
    font-size: 1.3rem;
}

.feature-text {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06rem;
}

.conclusion-section {
    padding: 2.5rem;
    border-top: 1px solid #3cbef2;
    border-bottom: 1px solid #3cbef2;
    background-color: rgba(255, 255, 255, 0.03);
}

.conclusion-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #3cbef2;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
}

.conclusion-section p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.05rem;
}

.conclusion-section p:last-child {
    margin-bottom: 0;
}

.technical-section {
    padding: 2rem;
    border: 1px solid #3cbef2;
}

.technical-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #3cbef2;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.spec-label {
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
}

.spec-value {
    color: #3cbef2;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 0;
    }
    
    .content {
        gap: 2rem;
    }
    
    .features-section {
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .feature {
        padding: 0.7rem 1rem;
    }
    
    .article-block {
        padding: 1.5rem;
    }
    
    .review-section {
        padding: 1.5rem;
    }
    
    .conclusion-section {
        padding: 2rem 1.5rem;
    }
    
    .technical-section {
        padding: 1.5rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-block h1 {
        font-size: 1.5rem;
    }
    
    .article-block h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .article-block {
        padding: 1rem;
    }
    
    .feature {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .links-grid {
        gap: 1rem;
    }
    
    .link-item {
        padding: 1rem;
    }
}

.faq-section {
    padding: 2rem;
    border: 1px solid #3cbef2;
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #3cbef2;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    color: #3cbef2;
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.faq-answer {
    color: #FFFFFF;
    line-height: 1.6;
    text-align: justify;
}

.performance-metrics {
    padding: 2rem;
    background-color: rgba(60, 190, 242, 0.05);
    border: 1px solid #3cbef2;
}

.performance-metrics h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #3cbef2;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.metric-value {
    color: #3cbef2;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.metric-label {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.badge {
    padding: 0.8rem 1.5rem;
    border: 1px solid #3cbef2;
    color: #3cbef2;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    background-color: rgba(60, 190, 242, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.comparison-table th {
    background-color: rgba(60, 190, 242, 0.2);
    color: #3cbef2;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-align: left;
    border: 1px solid #3cbef2;
}

.comparison-table td {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #3cbef2;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-date {
    color: #3cbef2;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.timeline-content {
    padding: 1rem;
    border: 1px solid #3cbef2;
    background-color: rgba(255, 255, 255, 0.05);
}

.content-highlight {
    background-color: rgba(60, 190, 242, 0.1);
    border-left: 3px solid #3cbef2;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.content-highlight h3 {
    color: #3cbef2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.keyword-tag {
    padding: 0.4rem 0.8rem;
    background-color: rgba(60, 190, 242, 0.2);
    color: #3cbef2;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border: 1px solid #3cbef2;
}

.navigation-anchors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-anchor {
    color: #3cbef2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid #3cbef2;
    transition: all 0.3s ease;
}

.nav-anchor:hover {
    background-color: rgba(60, 190, 242, 0.1);
}

.content-warning {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4444;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.content-warning h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.content-warning p {
    color: #FFFFFF;
    margin-bottom: 0;
}

.rating-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.rating-category {
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-category-value {
    color: #3cbef2;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.rating-category-label {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
    }
    
    .performance-metrics {
        padding: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        left: 40px !important;
    }
    
    .navigation-anchors {
        gap: 0.5rem;
    }
    
    .nav-anchor {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .rating-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        gap: 0.5rem;
    }
    
    .badge {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    
    .keyword-tags {
        gap: 0.3rem;
    }
    
    .keyword-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .navigation-anchors {
        flex-direction: column;
        align-items: center;
    }
    
    .rating-breakdown {
        grid-template-columns: 1fr;
    }
}