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

body {
    font-family: 'Courier New', monospace;
    background-color: #303948;
    color: #FFFFFF;
    line-height: 1.4;
    overflow-x: hidden;
}

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

.header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.logo-container {
    width: 165px;
    height: 60px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

.title-section {
    margin-left: 40px;
    position: relative;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 0.9;
    text-transform: uppercase;
}

.accent-line {
    width: 120px;
    height: 6px;
    background-color: #3cbef2;
    margin-top: 15px;
    position: relative;
    transform: skewX(-15deg);
}

.main-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.content-block {
    flex: 1;
    position: relative;
}

.left-block {
    padding-right: 20px;
}

.right-block {
    padding-left: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3cbef2;
}

.subsection-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    color: #3cbef2;
    position: relative;
}

.subsection-title::before {
    content: '▶';
    position: absolute;
    left: -20px;
    color: #3cbef2;
    font-size: 12px;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.warning-box {
    background-color: rgba(60, 190, 242, 0.1);
    border-left: 3px solid #3cbef2;
    padding: 20px;
    margin: 25px 0;
}

.warning-box h3 {
    color: #3cbef2;
    margin-bottom: 10px;
    font-size: 16px;
}

.warning-box p {
    font-size: 13px;
    line-height: 1.5;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-weight: 700;
    font-size: 13px;
}

.detail-value {
    color: #3cbef2;
    font-size: 13px;
    text-align: right;
}

.link-section {
    margin-top: 50px;
}

.links-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.link-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-left: 3px solid #3cbef2;
    word-break: break-all;
    font-family: monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.link-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.rating-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-section::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #3cbef2;
    opacity: 0.3;
    pointer-events: none;
}

.rating-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rating-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3cbef2;
}

.rating-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    width: 82%;
    background-color: #3cbef2;
    position: relative;
}

.rating-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    background-color: #FFFFFF;
    animation: pulse 2s infinite;
}

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

.features-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background-color: #3cbef2;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.content-section {
    margin-top: 30px;
}

.conclusion-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.conclusion-box h3 {
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.pros h4, .cons h4 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.pros ul, .cons ul {
    list-style: none;
    font-size: 13px;
}

.pros li, .cons li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #3cbef2;
    font-weight: bold;
}

.cons li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

.final-verdict {
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-accent {
    width: 80px;
    height: 3px;
    background-color: #3cbef2;
    transform: skewX(-20deg);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .header {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .title-section {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-block, .right-block {
        padding: 0;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .subsection-title::before {
        display: none;
    }
}