    .grid__item_product-info {
        margin: 48px 0;
    }

    .cyber-card {
        background: #1a1a1a;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.2s;
    }

    .cyber-card:hover {
        border-color: rgba(255,255,255,0.2);
        box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    }

    .cyber-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .cyber-title {
        font-size: 22px;
        font-weight: 600;
        color: #ffffff;
    }

    .cyber-status {
        font-size: 12px;
        color: #e0e0e0;
    }

    .status-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #00aa00;
        border-radius: 50%;
        margin-right: 6px;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
    }

    .cyber-p {
        margin-bottom: 16px;
        color: #e0e0e0;
        line-height: 1.7;
    }

    .cyber-p a {
        color: #ffffff;
        text-decoration: none;
    }

    .cyber-p a:hover {
        text-decoration: underline;
    }

    .cyber-footer {
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 11px;
        color: #888;
        text-align: right;
    }