        * {
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: #f3f4f7;
            margin: 0;
            color: #4a536e;
        }

        .navtop {
            background-color: #2f3947;
            height: 60px;
            width: 100%;
            border: 0;
        }

        .navtop div {
            display: flex;
            margin: 0 auto;
            width: 1000px;
            align-items: center;
        }

        .navtop div a {
            padding: 0 20px;
            text-decoration: none;
            color: #c1c4c8;
            font-weight: bold;
        }

        .navtop div a i {
            padding-right: 8px;
        }

        .navtop div a:hover {
            color: #eaebed;
        }

        .content {
            width: 1000px;
            margin: 0 auto;
        }

        .content .block2 {
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
            margin: 15px 0;
            padding: 10px;
            background-color: #fff;
        }

        .content .block {
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
            margin: 25px 0;
            padding: 25px;
            background-color: #fff;
        }

        .purchase {
            background-color: #dc3545;
            color: white;
            padding: 8px 15px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 2px;
        }

        /* Custom styles for content enhancement */
        .content-block {
            background-color: #fff;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
        }

        .keyword-section {
            background-color: #f8f9fa;
            border-left: 4px solid #3274d6;
            padding: 15px;
            margin: 20px 0;
        }

        .alert-section {
            background-color: #fdf2f2;
            border-left: 4px solid #dc3545;
            padding: 15px;
            margin: 20px 0;
        }

        .info-section {
            background-color: #f0f7ff;
            border-left: 4px solid #17a2b8;
            padding: 15px;
            margin: 20px 0;
        }

        .mirrors-list, .step-guide, .features-list {
            padding-left: 0;
            list-style-type: none;
        }

        .mirrors-list li, .step-guide li, .features-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
            line-height: 1.5;
        }

        .mirrors-list li:before, .step-guide li:before, .features-list li:before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #3274d6;
        }

        .mirrors-list li:before { content: "\f0c1"; /* fa-link */ }
        .features-list li:before { content: "\f058"; /* fa-check-circle */ }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .service-card {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 36px;
            color: #3274d6;
            margin-bottom: 15px;
            text-align: center;
        }

        .btn-torzon {
            background-color: #dc3545;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            border-radius: 4px;
            font-weight: bold;
        }

        .btn-torzon:hover {
            background-color: #c82333;
        }

        .breadcrumb {
            padding-bottom: 15px;
            font-size: 14px;
            color: #6c757d;
            border-bottom: 1px solid #e0e0e3;
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: #3274d6;
            text-decoration: none;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .market-comparison {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .market-comparison th {
            background-color: #2f3947;
            color: white;
            text-align: left;
            padding: 12px;
        }

        .market-comparison td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }

        .market-comparison .feature-available { color: #28a745; }
        .market-comparison .feature-unavailable { color: #dc3545; }
        .rating-stars { color: #ffc107; }

        .step-guide {
            counter-reset: step-counter;
        }

        .step-guide li {
            counter-increment: step-counter;
        }

        .step-guide li::before {
            content: counter(step-counter);
            width: 35px;
            height: 35px;
            background-color: #3274d6;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: bold;
            top: 0;
        }

        /* FIXED FOOTER STYLES */
        .navtop2 {
            background-color: #2d333e;
            width: 100%;
            padding: 30px 0;
            color: #8b93a2;
        }
        .navtop2 .container {
            width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        .navtop2 .footer-content {
            display: flex;
            justify-content: space-between;
        }
        .navtop2 .footer-column {
            flex: 1;
            padding: 0 15px;
        }
        .navtop2 .footer-column h3 {
            color: #8b93a2;
            font-size: 16px;
            margin-top: 0;
            margin-bottom: 15px;
            font-weight: 500;
        }
        .navtop2 .footer-column a {
            display: block;
            color: #c1c4c8;
            text-decoration: none;
            margin-bottom: 8px;
            font-size: 14px;
        }
        .navtop2 .footer-column a:hover {
            text-decoration: underline;
        }
        .navtop2 .footer-column a.highlight {
            color: #58D3F7;
        }
        .navtop2 .footer-column .sub-header {
            color: #8b93a2;
            font-weight: bold;
            margin-top: 15px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .navtop2 .listed-links {
            display: flex;
        }
        .navtop2 .listed-links div {
            flex: 1;
        }
        .navtop2 .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 20px;
            border-top: 1px solid #4a536e;
            color: #c1c4c8;
            font-size: 14px;
        }

        @media (max-width: 1000px) {
            .navtop div, .content, .navtop2 .container {
                width: 95%;
            }
        }
        @media (max-width: 768px) {
            .navtop div, .navtop2 .container {
                flex-flow: wrap;
                height: auto;
            }
            .navtop a {
                flex-basis: 50%;
                padding: 10px 5px;
                justify-content: center;
            }
            .navtop a:first-child { flex-basis: 100%; text-align: center; }
            .navtop2 .footer-content {
                flex-direction: column;
            }
            .navtop2 .footer-column {
                margin-bottom: 20px;
            }
        }
        /* Tool interface */
        .verification-tool {
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 25px;
            margin: 25px 0;
            background-color: #f8f9fa;
        }

        .verification-input {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .verification-input input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
        }

        .verification-input button {
            background-color: #3274d6;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 4px;
            cursor: pointer;
        }

        .verification-result {
            display: none;
            padding: 15px;
            border-radius: 4px;
            margin-top: 15px;
        }

        .result-success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }

        .result-danger {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }

        .verification-history {
            margin-top: 25px;
        }

        .verification-history h4 {
            margin-bottom: 15px;
            color: #2f3947;
            font-size: 18px;
        }

        .history-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .history-list li {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }

        .history-list li:last-child {
            border-bottom: none;
        }

        .history-url {
            flex-grow: 1;
            font-family: monospace;
        }

        .history-status {
            margin-left: 15px;
            font-weight: bold;
        }

        .status-valid {
            color: #28a745;
        }

        .status-invalid {
            color: #dc3545;
        }

        .pgp-signature {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 15px;
            margin: 15px 0;
            font-family: monospace;
            font-size: 12px;
            color: #6c757d;
            overflow-x: auto;
            max-height: 150px;
        }
    .telegram-shop-ad {
        background: rgba(0, 136, 204, 0.08);
        border: 1px solid rgba(0, 136, 204, 0.2);
        border-radius: 8px;
        padding: 25px;
        margin: 25px 0;
    }

    .telegram-shop-container {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .telegram-icon-wrapper {
        flex-shrink: 0;
        background: rgba(0, 136, 204, 0.15);
        padding: 15px;
        border-radius: 50%;
    }

    .telegram-content {
        flex: 1;
    }

    .telegram-content h3 {
        color: #0088cc;
        margin: 0 0 15px 0;
        font-size: 22px;
        font-weight: 600;
    }

    .telegram-content p {
        color: #4a536e;
        margin: 0 0 20px 0;
        line-height: 1.5;
    }

    .telegram-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 0 0 20px 0;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #4a536e;
    }

    .feature i {
        color: #0088cc;
        width: 20px;
        text-align: center;
    }

    .telegram-join-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #0088cc, #0066aa);
        color: white;
        padding: 12px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .telegram-join-btn:hover {
        background: linear-gradient(135deg, #0077b3, #005588);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .security-note {
        margin-top: 15px;
        font-size: 13px;
        color: #6c757d;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .security-note i {
        color: #0088cc;
    }

    @media (max-width: 768px) {
        .telegram-shop-container {
            flex-direction: column;
            text-align: center;
        }

        .telegram-features {
            grid-template-columns: 1fr;
        }

        .feature {
            justify-content: center;
        }

        .telegram-join-btn {
            width: 100%;
        }

        .security-note {
            justify-content: center;
        }
    }

            /* Enhanced Link Section Styles */
        .primary-link-box {
            background: linear-gradient(145deg, #2f3947, #3a4656);
            border: 2px solid #3274d6;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .primary-link-box h3 {
            color: #58D3F7;
            margin-top: 0;
            font-size: 22px;
        }

        .link-container {
            display: flex;
            align-items: center;
            background: rgba(0,0,0,0.2);
            border-radius: 6px;
            padding: 12px 15px;
            margin: 15px 0;
        }

        .primary-link {
            flex: 1;
            font-size: 16px;
            word-break: break-all;
            color: #fff !important;
            text-decoration: none !important;
        }

        .status-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
        }

        .status-badge.online {
            background-color: #28a745;
            color: white;
        }

        .copy-btn {
            background: #3274d6;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 12px;
            cursor: pointer;
            margin-left: 10px;
            font-weight: bold;
        }

        .copy-btn:hover {
            background: #2868c7;
        }

        .security-note {
            font-size: 14px;
            color: #aaa;
            margin-top: 10px;
        }

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

        .access-instructions {
            background-color: #f8f9fa;
            border-left: 4px solid #ff9800;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }

        .btn-verify {
            display: inline-block;
            background: #ff9800;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            margin-right: 10px;
            margin-top: 10px;
        }

        .btn-verify:hover {
            background: #e88e00;
        }

        /* Enhanced verification tool */
        .verification-tool {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #e9ecef;
        }

        .verification-input {
            display: flex;
            margin-bottom: 15px;
        }

        .verification-input input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }

        .verification-input button {
            background: #3274d6;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
        }

        .verification-result {
            padding: 15px;
            border-radius: 4px;
            margin-top: 15px;
            display: flex;
            align-items: center;
        }

        .result-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .result-danger {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .verification-result i {
            margin-right: 10px;
            font-size: 18px;
        }