.sq-vote-card,
.sq-vote-card * {
    box-sizing: border-box;
}

.sq-vote-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    margin: 10px 0;
    padding: 20px 22px;
    overflow: hidden;
    color: #f4f4f6;
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 124, 0, 0.12), transparent 32%),
        linear-gradient(135deg, #151519 0%, #101013 58%, #18130d 100%);
    border: 1px solid #2c2c32;
    border-radius: 14px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    font-family: inherit;
}

.sq-vote-card::after {
    content: "✓  VOTE  ✓";
    position: absolute;
    right: 22px;
    bottom: -9px;
    z-index: 0;
    color: rgba(255, 121, 0, 0.045);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 5px;
    pointer-events: none;
    user-select: none;
}

.sq-vote-card__icon {
    position: relative;
    z-index: 1;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: #111114;
    background: linear-gradient(145deg, #ff9d32, #ff7200);
    border: 1px solid #ff9a2b;
    border-radius: 16px;
    box-shadow:
        0 8px 20px rgba(255, 121, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.sq-vote-card__icon::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(17, 17, 20, 0.2);
    border-radius: 11px;
}

.sq-vote-card__icon span {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.sq-vote-card__content {
    position: relative;
    z-index: 1;
    min-width: 0;
    flex: 1;
}

.sq-vote-card__eyebrow {
    margin-bottom: 5px;
    color: #ff7b00;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.7px;
}

.sq-vote-card__title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.sq-vote-card__text {
    max-width: 860px;
    margin: 0;
    color: #b8b8c0;
    font-size: 13px;
    line-height: 1.65;
}

.sq-vote-card__servers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.sq-vote-card__server {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 52px;
    padding: 10px 12px;
    color: #f2f2f4;
    background:
        linear-gradient(180deg, rgba(255, 121, 0, 0.055), transparent),
        #0d0d10;
    border: 1px solid #2b2b31;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.sq-vote-card__server:hover,
.sq-vote-card__server:focus {
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(255, 121, 0, 0.11), transparent),
        #111114;
    border-color: #5a3314;
    outline: none;
}

.sq-vote-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #ff850d;
    background: #1a1613;
    border: 1px solid #4b2b12;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}

.sq-vote-card__server-name {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.sq-vote-card__action {
    padding: 7px 10px;
    color: #111114;
    background: linear-gradient(180deg, #ff941f, #ff7300);
    border: 1px solid #ff9a2b;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 700px) {
    .sq-vote-card {
        gap: 13px;
        padding: 17px 15px;
        border-radius: 12px;
    }

    .sq-vote-card__icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .sq-vote-card__icon span {
        font-size: 26px;
    }

    .sq-vote-card__title {
        font-size: 18px;
    }

    .sq-vote-card__servers {
        grid-template-columns: 1fr;
    }

    .sq-vote-card::after {
        display: none;
    }
}

@media (max-width: 430px) {
    .sq-vote-card {
        display: block;
    }

    .sq-vote-card__icon {
        margin-bottom: 12px;
    }

    .sq-vote-card__action {
        padding: 7px 8px;
        font-size: 9px;
    }
}