.torrent-styled {
    background: linear-gradient(135deg, #333d37 70%, #3c5c42 100%);
    border: 2.5px solid #96f65c;
    border-radius: 18px;
    box-shadow: 0 4px 22px #adfc8555, 0 1px 3px #00891a0c;
    padding: 29px 25px 20px 25px;
    margin: 32px auto 35px;
    max-width: 100%;
    min-width: 320px;
    color: #eaffe9;
    position: relative;
    transition: border-color 0.32s, box-shadow 0.25s;
}

.torrent-styled:hover,
.torrent-styled:focus-within {
    border-color: #5aff8a;
    box-shadow: 0 10px 38px #bfffdb44,
                0 0 13px #5aff8a99,
                0 1px 3px #b8ffb70c;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 17px;
    z-index: 2;
    position: relative;
}

/* Главная кнопка — зеленая! */
.btn-main-download {
    background: linear-gradient(135deg, #fff 60%, #eaffea 100%);
    border: 2px solid #7effbe;
    border-radius: 9px;
    color: #21b14c; /* Ярко-зелёный текст */
    padding: 13px 40px;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    letter-spacing: 0.013em;
    box-shadow: 0 2px 17px #adfc8540;
    margin: 0 auto;
    display: flex;
    align-items: center;
    text-align: center;
    user-select: none;
    min-width: 0;
    max-width: 96%;
    overflow: hidden;
    text-shadow: 0 2px 8px #fff8,
                 0 1px 2px #e9ffeb;
    transition: background 0.18s, color 0.15s, border-color 0.16s, box-shadow 0.18s;
}

.btn-main-download:hover {
    background: linear-gradient(135deg, #eaffea 0%, #c8ffe2 100%);
    color: #079d32;
    border-color: #21b14c;
    box-shadow: 0 7px 19px #acffdb60;
}

.torrent-title-text {
    color: inherit;
    font-size: 1.19em;
    font-weight: 900;
    white-space: normal;
    overflow-wrap: break-word;
    display: block;
    text-shadow: inherit;
}

/* Магнит — тоже светлый и зеленый */
.magnet-link {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #a5ffa4 35%, #5effc2 100%);
    border-radius: 50%;
    border: 2px solid #69ff96;
    box-shadow: 0 2px 15px #80ffc14c;
    transition: border-color 0.19s, box-shadow 0.19s, transform 0.18s;
    margin-left: 10px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    text-decoration: none;
}
.magnet-link svg {
    width: 26px;
    height: 26px;
    display: block;
}
.magnet-link:hover {
    border-color: #5aff8a;
    transform: scale(1.13);
    box-shadow: 0 0 18px #90ffe5a0;
    background: linear-gradient(135deg, #fffec4 0%, #a8ffd2 100%);
}

.cont {
    margin-top: 12px;
    font-size: 15px;
    background: rgba(66,255,166,0.10);
    border-radius: 10px;
    padding: 10px 16px;
    z-index: 2;
    position: relative;
    border: 1px solid #5aff8a;
}