.active-giveaways {
    width: min(calc(100% - (var(--section-padding-x) * 2)), var(--container));
    max-width: none;
    margin: var(--section-spacing) auto 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;

    --ag-text: var(--text);
    --ag-muted: rgba(220, 229, 248, .76);
    --ag-soft: rgba(220, 229, 248, .54);

    --ag-blue: var(--primary);
    --ag-blue-rgb: var(--primary-rgb);

    --ag-green: var(--success);
    --ag-green-rgb: var(--success-rgb);

    --ag-purple: var(--violet, #9146ff);
    --ag-purple-rgb: var(--violet-rgb, 145, 70, 255);

    --ag-gold: var(--accent, #ffbf47);
    --ag-gold-rgb: var(--accent-rgb, 255, 191, 71);

    --ag-red: var(--danger, #ff3347);
    --ag-red-rgb: var(--danger-rgb, 255, 51, 71);
}

.active-giveaways,
.active-giveaways *,
.active-giveaways *::before,
.active-giveaways *::after {
    box-sizing: border-box;
}

.active-giveaways__image--lazy {
    opacity: .24;
    filter:
        blur(10px)
        drop-shadow(0 24px 32px rgba(0, 0, 0, .40));
}

.active-giveaways__image--lazy.is-loading {
    opacity: .38;
}

.active-giveaways__image--lazy.is-loaded {
    opacity: 1;
    filter:
        drop-shadow(0 30px 38px rgba(0, 0, 0, .42))
        drop-shadow(0 0 24px rgba(var(--ag-accent-rgb), .14));
    transition:
        opacity .22s ease,
        filter .22s ease,
        transform .24s ease;
}

.active-giveaways__image--lazy.is-error {
    opacity: .22;
}

.active-giveaways::before {
    content: "";
    position: absolute;
    left: -5%;
    top: 18%;
    width: 420px;
    height: 420px;
    z-index: -2;
    pointer-events: none;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(var(--ag-blue-rgb), .12), transparent 68%);
    filter: blur(70px);
    opacity: .78;
}

.active-giveaways::after {
    content: "";
    position: absolute;
    right: -4%;
    bottom: -10%;
    width: 470px;
    height: 340px;
    z-index: -2;
    pointer-events: none;
    border-radius: 999px;
    background:
        radial-gradient(circle at 64% 44%, rgba(var(--ag-purple-rgb), .15), transparent 66%),
        radial-gradient(circle at 22% 62%, rgba(var(--ag-green-rgb), .08), transparent 56%);
    filter: blur(72px);
    opacity: .82;
}

.active-giveaways__top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 14px;
}

.active-giveaways__top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(var(--ag-blue-rgb), .36), rgba(var(--ag-green-rgb), .15), transparent 72%);
}

.active-giveaways__heading {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.active-giveaways__heading-icon {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ag-green);
}

.active-giveaways__heading-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    z-index: -2;
    border-radius: 17px;
    background: rgba(var(--ag-green-rgb), .26);
    filter: blur(15px);
    opacity: .95;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.active-giveaways__heading-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 17px;
    background:
        radial-gradient(circle at 34% 18%, rgba(255, 255, 255, .20), transparent 36%),
        linear-gradient(135deg, rgba(var(--ag-green-rgb), .22), rgba(var(--ag-blue-rgb), .15) 54%, rgba(var(--ag-purple-rgb), .17)),
        rgba(255, 255, 255, .038);
    border: 1px solid rgba(var(--ag-green-rgb), .22);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, .28),
        0 0 26px rgba(var(--ag-green-rgb), .13),
        inset 0 1px 0 rgba(255, 255, 255, .16);
}

.active-giveaways__heading:hover .active-giveaways__heading-icon::before {
    transform: scale(1.16);
    opacity: 1;
}

.active-giveaways__heading-icon svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    filter:
        drop-shadow(0 7px 12px rgba(0, 0, 0, .28))
        drop-shadow(0 0 12px rgba(var(--ag-green-rgb), .36));
}

.active-giveaways__heading-copy {
    min-width: 0;
}

.active-giveaways__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: #8ff5cd;
    font-family: var(--font-tech);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.active-giveaways__eyebrow span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--ag-green);
    box-shadow:
        0 0 10px rgba(var(--ag-green-rgb), .92),
        0 0 22px rgba(var(--ag-green-rgb), .28);
    animation: activeGiveawaysDot 1.8s ease-in-out infinite;
}

.active-giveaways__title {
    margin: 0;
    color: var(--ag-text);
    font-family: "Outfit", sans-serif !important;
    font-size: 18px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: none;
    text-shadow:
        0 10px 28px rgba(0, 0, 0, .28),
        0 0 18px rgba(var(--ag-green-rgb), .10);
}

.active-giveaways__partner {
    position: relative;
    min-height: 64px;
    min-width: 360px;
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-pill);
    isolation: isolate;
}

.active-giveaways__partner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014)),
        linear-gradient(135deg, rgba(var(--ag-blue-rgb), .08), rgba(var(--ag-green-rgb), .05)),
        rgba(5, 10, 22, .28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.active-giveaways__partner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(var(--ag-blue-rgb), .30), transparent 35%, rgba(var(--ag-green-rgb), .22)),
        linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 44%, rgba(255, 255, 255, .022));
    -webkit-mask:
        linear-gradient(#000 0 0) top / 100% 1px no-repeat,
        linear-gradient(#000 0 0) bottom / 100% 1px no-repeat,
        linear-gradient(#000 0 0) left / 1px 100% no-repeat,
        linear-gradient(#000 0 0) right / 1px 100% no-repeat;
    mask:
        linear-gradient(#000 0 0) top / 100% 1px no-repeat,
        linear-gradient(#000 0 0) bottom / 100% 1px no-repeat,
        linear-gradient(#000 0 0) left / 1px 100% no-repeat,
        linear-gradient(#000 0 0) right / 1px 100% no-repeat;
    opacity: .78;
}

.active-giveaways__partner-logo {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background:
        radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .16), transparent 36%),
        rgba(255, 255, 255, .04);
}

.active-giveaways__partner-logo::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(var(--ag-green-rgb), .42), rgba(255, 255, 255, .05), rgba(var(--ag-blue-rgb), .22));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.active-giveaways__partner-logo img {
    position: relative;
    z-index: 1;
    width: 68%;
    height: 68%;
    display: block;
    object-fit: contain;
}

.active-giveaways__partner-copy {
    min-width: 0;
}

.active-giveaways__partner small {
    display: block;
    margin-bottom: 5px;
    color: var(--ag-soft);
    font-family: var(--font-tech);
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.active-giveaways__partner strong {
    display: block;
    color: var(--ag-text);
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-giveaways__partner a {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    color: #061322;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .34), transparent 30%),
        linear-gradient(135deg, #39e7aa, #7effcf);
    box-shadow:
        0 14px 30px rgba(var(--ag-green-rgb), .18),
        inset 0 1px 0 rgba(255, 255, 255, .35);
    font-family: var(--font-tech);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform var(--transition),
        filter var(--transition);
}

.active-giveaways__partner a:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.active-giveaways__subtitle {
    max-width: 720px;
    margin: 36px 0 0;
    color: var(--ag-muted);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.68;
    font-weight: 500;
}

.active-giveaways__list {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.active-giveaways__item {
    --ag-accent-rgb: var(--primary-rgb);
    --ag-accent: var(--primary);

    position: relative;
    isolation: isolate;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    padding: 15px;
    background:
        linear-gradient(135deg, rgba(8, 14, 28, .74), rgba(5, 10, 22, .60)),
        rgba(6, 11, 22, .34);
    border: 1px solid rgba(170, 188, 255, .12);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    box-shadow:
        0 24px 78px rgba(0, 0, 0, .30),
        0 0 0 1px rgba(255, 255, 255, .02),
        inset 0 1px 0 rgba(255, 255, 255, .055);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.active-giveaways__item:nth-child(5n + 1) {
    --ag-accent-rgb: var(--ag-blue-rgb);
    --ag-accent: var(--ag-blue);
}

.active-giveaways__item:nth-child(5n + 2) {
    --ag-accent-rgb: var(--ag-green-rgb);
    --ag-accent: var(--ag-green);
}

.active-giveaways__item:nth-child(5n + 3) {
    --ag-accent-rgb: var(--ag-purple-rgb);
    --ag-accent: var(--ag-purple);
}

.active-giveaways__item:nth-child(5n + 4) {
    --ag-accent-rgb: var(--ag-gold-rgb);
    --ag-accent: var(--ag-gold);
}

.active-giveaways__item:nth-child(5n) {
    --ag-accent-rgb: var(--ag-red-rgb);
    --ag-accent: var(--ag-red);
}

.active-giveaways__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 18%, rgba(var(--ag-accent-rgb), .17), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(var(--ag-blue-rgb), .08), transparent 28%),
        linear-gradient(115deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
}

.active-giveaways__item::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -3;
    border-radius: 21px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(var(--ag-accent-rgb), .30), transparent 20%, transparent 82%, rgba(255, 255, 255, .04)),
        linear-gradient(180deg, rgba(255, 255, 255, .075), transparent 44%, rgba(255, 255, 255, .026));
    -webkit-mask:
        linear-gradient(#000 0 0) top / 100% 1px no-repeat,
        linear-gradient(#000 0 0) bottom / 100% 1px no-repeat,
        linear-gradient(#000 0 0) left / 1px 100% no-repeat,
        linear-gradient(#000 0 0) right / 1px 100% no-repeat;
    mask:
        linear-gradient(#000 0 0) top / 100% 1px no-repeat,
        linear-gradient(#000 0 0) bottom / 100% 1px no-repeat,
        linear-gradient(#000 0 0) left / 1px 100% no-repeat,
        linear-gradient(#000 0 0) right / 1px 100% no-repeat;
    opacity: .82;
}

.active-giveaways__item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--ag-accent-rgb), .22);
    background:
        linear-gradient(135deg, rgba(8, 14, 28, .80), rgba(5, 10, 22, .64)),
        rgba(6, 11, 22, .40);
    box-shadow:
        0 30px 92px rgba(0, 0, 0, .36),
        0 0 28px rgba(var(--ag-accent-rgb), .08),
        inset 0 1px 0 rgba(255, 255, 255, .065);
}

.active-giveaways__item-glow,
.active-giveaways__item-grid {
    position: absolute;
    pointer-events: none;
}

.active-giveaways__item-glow {
    z-index: -6;
    border-radius: 999px;
    filter: blur(70px);
}

.active-giveaways__item-glow--one {
    width: 270px;
    height: 270px;
    top: -115px;
    left: -95px;
    background: rgba(var(--ag-accent-rgb), .20);
    animation: activeGiveawaysGlowLeft 9s ease-in-out infinite;
}

.active-giveaways__item-glow--two {
    width: 350px;
    height: 350px;
    right: -155px;
    bottom: -165px;
    background: rgba(var(--ag-accent-rgb), .13);
    animation: activeGiveawaysGlowRight 11s ease-in-out infinite;
}

.active-giveaways__item-grid {
    inset: 0;
    z-index: -7;
    opacity: .045;
    mask-image: linear-gradient(180deg, black 0%, transparent 82%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 82%);
}

.active-giveaways__item-grid::before {
    content: "";
    position: absolute;
    inset: -14%;
    background-image:
        linear-gradient(rgba(255, 255, 255, .085) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .085) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(1000px) rotateX(58deg) scale(1.2);
    transform-origin: center top;
    animation: activeGiveawaysGridMove 20s linear infinite;
}

.active-giveaways__visual {
    position: relative;
    width: 100%;
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    order: 1;
}

.active-giveaways__visual::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 62%;
    border-radius: 999px;
    background:
        radial-gradient(circle at 48% 50%, rgba(var(--ag-accent-rgb), .20), transparent 55%),
        radial-gradient(circle at 66% 62%, rgba(var(--ag-blue-rgb), .10), transparent 58%);
    filter: blur(24px);
    opacity: .9;
    pointer-events: none;
}

.active-giveaways__rank {
    position: absolute;
    left: 0;
    top: 2px;
    color: rgba(247, 249, 255, .06);
    font-family: var(--font-display) !important;
    font-size: clamp(52px, 4.5vw, 78px);
    line-height: .75;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.active-giveaways__orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.active-giveaways__orb--one {
    width: min(86%, 260px);
    height: 94px;
    border: 1px solid rgba(var(--ag-accent-rgb), .15);
    transform: rotate(-8deg);
    box-shadow:
        0 0 0 18px rgba(255, 255, 255, .006),
        0 0 44px rgba(var(--ag-accent-rgb), .08);
    animation: activeGiveawaysOrbit 7s ease-in-out infinite;
}

.active-giveaways__orb--two {
    width: min(70%, 220px);
    height: 74px;
    border: 1px dashed rgba(var(--ag-accent-rgb), .13);
    transform: rotate(-8deg);
    animation: activeGiveawaysOrbitReverse 8s ease-in-out infinite;
}

.active-giveaways__spark {
    position: absolute;
    top: 22%;
    right: 20%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--ag-accent);
    box-shadow: 0 0 16px rgba(var(--ag-accent-rgb), .85);
    animation: activeGiveawaysDot 2.2s ease-in-out infinite;
}

.active-giveaways__image {
    position: relative;
    z-index: 3;
    width: min(96%, 240px);
    max-height: 135px;
    object-fit: contain;
    filter:
        drop-shadow(0 30px 38px rgba(0, 0, 0, .42))
        drop-shadow(0 0 24px rgba(var(--ag-accent-rgb), .14));
    transform: rotate(-8deg);
    transition:
        transform .24s ease,
        filter .24s ease;
}

.active-giveaways__item:nth-child(even) .active-giveaways__image {
    transform: rotate(7deg);
}

.active-giveaways__item:hover .active-giveaways__image {
    filter:
        drop-shadow(0 36px 46px rgba(0, 0, 0, .48))
        drop-shadow(0 0 32px rgba(var(--ag-accent-rgb), .20));
    transform: rotate(-5deg) translateY(-8px) scale(1.035);
}

.active-giveaways__item:nth-child(even):hover .active-giveaways__image {
    transform: rotate(4deg) translateY(-8px) scale(1.035);
}

.active-giveaways__copy {
    min-width: 0;
    order: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.active-giveaways__card-head {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    min-height: 42px;
    margin-bottom: 8px;
}

.active-giveaways__tag {
    position: relative;
    min-width: 0;
    min-height: 27px;
    padding: 0 11px 0 22px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    color: rgba(235, 240, 255, .84);
    background:
        linear-gradient(135deg, rgba(var(--ag-accent-rgb), .10), rgba(255, 255, 255, .025)),
        rgba(255, 255, 255, .04);
    border: 1px solid rgba(var(--ag-accent-rgb), .16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .045),
        0 0 18px rgba(var(--ag-accent-rgb), .055);
    font-family: var(--font-tech);
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    white-space: nowrap;
}

.active-giveaways__tag::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--ag-accent);
    box-shadow:
        0 0 10px rgba(var(--ag-accent-rgb), .95),
        0 0 18px rgba(var(--ag-accent-rgb), .34);
    transform: translateY(-50%);
}

.active-giveaways__value {
    position: relative;
    flex: 0 0 auto;
    min-width: 86px;
    padding: 7px 9px 8px;
    border-radius: 14px;
    display: grid;
    gap: 3px;
    text-align: right;
    background:
        linear-gradient(135deg, rgba(var(--ag-green-rgb), .13), rgba(255, 255, 255, .025)),
        rgba(5, 10, 22, .40);
    border: 1px solid rgba(var(--ag-green-rgb), .20);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .045);
}

.active-giveaways__value::before {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--ag-green-rgb), .75));
}

.active-giveaways__value small {
    color: rgba(220, 229, 248, .50);
    font-family: var(--font-tech);
    font-size: 7.5px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.active-giveaways__value strong {
    color: var(--ag-green);
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
    white-space: nowrap;
    text-shadow: 0 0 14px rgba(var(--ag-green-rgb), .16);
}

.active-giveaways__condition {
    width: fit-content;
    margin-top: 7px;
    padding-left: 1px;
    display: inline-flex;
    color: rgba(220, 229, 248, .58);
    font-family: var(--font-tech);
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.active-giveaways__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.active-giveaways__meta .active-giveaways__price {
    display: none;
}
.active-giveaways__item-title {
    margin: 0;
    color: var(--ag-text);
    font-family: var(--font-display) !important;
    font-size: clamp(20px, 1.65vw, 24px);
    line-height: .96;
    font-weight: 800;
    letter-spacing: -.045em;
    text-transform: uppercase;
    text-shadow:
        0 18px 46px rgba(0, 0, 0, .35),
        0 0 24px rgba(var(--ag-accent-rgb), .10);
}

.active-giveaways__item-title span,
.active-giveaways__item-title strong {
    display: block;
}

.active-giveaways__item-title strong {
    color: rgba(247, 249, 255, .82);
    margin-top: 4px;
}

.active-giveaways__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.active-giveaways__meta span {
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    color: rgba(235, 240, 255, .74);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
        rgba(5, 10, 22, .28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .035),
        0 0 0 1px rgba(255, 255, 255, .055);
    font-family: var(--font-tech);
    font-size: 9.5px;
    line-height: 1.1;
    font-weight: 700;
}

.active-giveaways__actions {
    margin-top: auto;
    padding-top: 16px;
}

.active-giveaways__button {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 42px;
    padding: 0 15px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .16), transparent 28%),
        linear-gradient(135deg, var(--primary) 0%, #786dff 58%, #9872ff 100%);
    box-shadow:
        0 16px 34px rgba(var(--ag-blue-rgb), .20),
        inset 0 1px 0 rgba(255, 255, 255, .14);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.active-giveaways__button::before {
    content: "";
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -70%;
    width: 42%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: skewX(-18deg);
    transition: left .78s ease;
}

.active-giveaways__button::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--ag-accent-rgb), .78), transparent);
    opacity: .72;
}

.active-giveaways__button:hover {
    transform: translateY(-3px);
    filter: brightness(1.045);
    box-shadow:
        0 20px 40px rgba(var(--ag-blue-rgb), .25),
        0 0 20px rgba(var(--ag-accent-rgb), .08),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.active-giveaways__button:hover::before {
    left: 125%;
}

.active-giveaways__button span,
.active-giveaways__button svg {
    position: relative;
    z-index: 1;
}

.active-giveaways__button span {
    font-family: var(--font-tech);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.active-giveaways__button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transition: transform var(--transition);
}

.active-giveaways__button:hover svg {
    transform: translateX(4px);
}

@keyframes activeGiveawaysGridMove {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 46px;
    }
}

@keyframes activeGiveawaysGlowLeft {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .72;
    }

    50% {
        transform: translate3d(14px, 10px, 0) scale(1.06);
        opacity: .94;
    }
}

@keyframes activeGiveawaysGlowRight {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .68;
    }

    50% {
        transform: translate3d(-10px, -14px, 0) scale(1.08);
        opacity: .88;
    }
}

@keyframes activeGiveawaysOrbit {
    0%,
    100% {
        transform: rotate(-8deg) scale(1);
        opacity: .68;
    }

    50% {
        transform: rotate(-5deg) scale(1.035);
        opacity: .95;
    }
}

@keyframes activeGiveawaysOrbitReverse {
    0%,
    100% {
        transform: rotate(-8deg) scale(1);
        opacity: .50;
    }

    50% {
        transform: rotate(-12deg) scale(1.04);
        opacity: .82;
    }
}

@keyframes activeGiveawaysDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.42);
        opacity: .52;
    }
}

@media (max-width: 1500px) {
    .active-giveaways__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    .active-giveaways__top {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .active-giveaways__partner {
        width: 100%;
        min-width: 0;
    }

    .active-giveaways__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .active-giveaways__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .active-giveaways::before,
    .active-giveaways::after {
        display: none;
    }

    .active-giveaways__top {
        gap: 18px;
    }

    .active-giveaways__heading {
        align-items: flex-start;
        gap: 12px;
    }

    .active-giveaways__heading-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .active-giveaways__heading-icon::before {
        filter: blur(10px);
        animation: none;
    }

    .active-giveaways__heading-icon svg {
        width: 25px;
        height: 25px;
    }

    .active-giveaways__partner {
        grid-template-columns: 42px minmax(0, 1fr);
        border-radius: 18px;
        padding: 10px;
    }

    .active-giveaways__partner::before {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .active-giveaways__partner-logo {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .active-giveaways__partner a {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 38px;
    }

    .active-giveaways__subtitle {
        margin-top: 28px;
        font-size: 13.5px;
    }

    .active-giveaways__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .active-giveaways__item {
        min-height: 336px;
        padding: 10px;
        border-radius: 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow:
            0 14px 34px rgba(0, 0, 0, .24),
            inset 0 1px 0 rgba(255, 255, 255, .045);
        transition: none;
    }

    .active-giveaways__item::before {
        background:
            radial-gradient(circle at 50% 16%, rgba(var(--ag-accent-rgb), .12), transparent 36%),
            linear-gradient(115deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
    }

    .active-giveaways__item::after {
        border-radius: 15px;
        opacity: .58;
    }

    .active-giveaways__item:hover {
        transform: none;
        border-color: rgba(170, 188, 255, .12);
        box-shadow:
            0 14px 34px rgba(0, 0, 0, .24),
            inset 0 1px 0 rgba(255, 255, 255, .045);
    }

    .active-giveaways__item-glow,
    .active-giveaways__item-grid,
    .active-giveaways__orb,
    .active-giveaways__spark {
        display: none;
    }

    .active-giveaways__visual {
        min-height: 128px;
    }

    .active-giveaways__visual::before {
        width: 94%;
        height: 58%;
        filter: blur(13px);
        opacity: .66;
    }

    .active-giveaways__rank {
        font-size: 45px;
        opacity: .76;
    }

    .active-giveaways__image,
    .active-giveaways__item:nth-child(even) .active-giveaways__image,
    .active-giveaways__item:hover .active-giveaways__image,
    .active-giveaways__item:nth-child(even):hover .active-giveaways__image {
        width: min(104%, 180px);
        max-height: 108px;
        transform: rotate(-6deg);
        transition: none;
        filter:
            drop-shadow(0 18px 22px rgba(0, 0, 0, .36))
            drop-shadow(0 0 12px rgba(var(--ag-accent-rgb), .10));
    }

    .active-giveaways__card-head {
        gap: 6px;
        margin-bottom: 8px;
    }

    .active-giveaways__tag {
        min-height: 21px;
        padding: 0 7px 0 18px;
        gap: 5px;
        font-size: 6.8px;
        letter-spacing: .07em;
    }

    .active-giveaways__tag::before {
        left: 8px;
        width: 5px;
        height: 5px;
    }

    .active-giveaways__value {
        max-width: 76px;
        padding-left: 7px;
        font-size: clamp(13px, 4.3vw, 17px);
        line-height: .9;
        text-shadow:
            0 0 10px rgba(var(--ag-green-rgb), .20),
            0 7px 15px rgba(0, 0, 0, .22);
    }

    .active-giveaways__item-title {
        font-size: clamp(17px, 4.9vw, 23px);
        line-height: .96;
        letter-spacing: -.04em;
    }

    .active-giveaways__item-title strong {
        margin-top: 3px;
    }

    .active-giveaways__meta {
        gap: 5px;
        margin-top: 9px;
    }

    .active-giveaways__meta span {
        min-height: 22px;
        padding: 0 6px;
        border-radius: 8px;
        font-size: 6.8px;
        line-height: 1.12;
    }

    .active-giveaways__actions {
        padding-top: 10px;
    }

    .active-giveaways__button {
        min-height: 34px;
        padding: 0 9px;
        box-shadow:
            0 10px 20px rgba(var(--ag-blue-rgb), .16),
            inset 0 1px 0 rgba(255, 255, 255, .12);
        transition: none;
    }

    .active-giveaways__button::before {
        display: none;
    }

    .active-giveaways__button span {
        font-size: 8.2px;
        letter-spacing: .06em;
    }

    .active-giveaways__button svg {
        width: 13px;
        height: 13px;
        flex-basis: 13px;
    }

    .active-giveaways__image--lazy,
    .active-giveaways__image--lazy.is-loading,
    .active-giveaways__image--lazy.is-loaded,
    .active-giveaways__image--lazy.is-error {
        opacity: 1 !important;
        filter:
            drop-shadow(0 18px 22px rgba(0, 0, 0, .36))
            drop-shadow(0 0 12px rgba(var(--ag-accent-rgb), .10)) !important;
        transition: none !important;
    }
}

@media (max-width: 520px) {
    .active-giveaways__eyebrow {
        font-size: 9px;
        letter-spacing: .11em;
        margin-bottom: 8px;
    }

    .active-giveaways__title {
        font-size: 18px;
        line-height: 1;
        letter-spacing: .01em;
    }

    .active-giveaways__subtitle {
        font-size: 13px;
    }

    .active-giveaways__list {
        gap: 9px;
    }

    .active-giveaways__item {
        min-height: 320px;
        padding: 9px;
        border-radius: 15px;
    }

    .active-giveaways__item::after {
        border-radius: 14px;
    }

    .active-giveaways__visual {
        min-height: 118px;
    }

    .active-giveaways__image,
    .active-giveaways__item:nth-child(even) .active-giveaways__image,
    .active-giveaways__item:hover .active-giveaways__image,
    .active-giveaways__item:nth-child(even):hover .active-giveaways__image {
        width: min(110%, 170px);
        max-height: 98px;
    }

    .active-giveaways__card-head {
        gap: 5px;
    }

    
    .active-giveaways__tag {
        min-height: 20px;
        padding: 0 6px 0 17px;
        font-size: 6.4px;
    }

    .active-giveaways__tag::before {
        left: 7px;
        width: 5px;
        height: 5px;
    }

    .active-giveaways__value {
        max-width: 68px;
        padding-left: 6px;
        font-size: clamp(12px, 4.25vw, 16px);
    }

    .active-giveaways__item-title {
        font-size: clamp(16px, 4.8vw, 21px);
    }

    .active-giveaways__meta {
        gap: 4px;
    }

    .active-giveaways__meta span {
        min-height: 21px;
        padding: 0 5px;
        font-size: 6.4px;
    }

    .active-giveaways__button {
        min-height: 33px;
    }

    .active-giveaways__button span {
        font-size: 7.8px;
    }
}

@media (max-width: 390px) {
    .active-giveaways__list {
        gap: 8px;
    }

    .active-giveaways__item {
        min-height: 304px;
        padding: 8px;
    }

    .active-giveaways__visual {
        min-height: 108px;
    }

    .active-giveaways__image,
    .active-giveaways__item:nth-child(even) .active-giveaways__image,
    .active-giveaways__item:hover .active-giveaways__image,
    .active-giveaways__item:nth-child(even):hover .active-giveaways__image {
        max-height: 88px;
    }

    .active-giveaways__tag {
        font-size: 6px;
        padding: 0 5px;
    }

    .active-giveaways__value {
        max-width: 62px;
        font-size: 13px;
    }

    .active-giveaways__item-title {
        font-size: 15px;
    }

    .active-giveaways__meta span {
        font-size: 6px;
        padding: 0 4px;
    }

    .active-giveaways__button {
        min-height: 31px;
    }

    .active-giveaways__button span {
        font-size: 7.2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .active-giveaways *,
    .active-giveaways *::before,
    .active-giveaways *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 820px) {
    .active-giveaways__card-head {
        min-height: 32px;
        gap: 6px;
        margin-bottom: 4px;
    }

    .active-giveaways__tag {
        min-height: 21px;
        padding: 0 7px 0 18px;
        font-size: 6.8px;
        letter-spacing: .07em;
    }

    .active-giveaways__tag::before {
        left: 8px;
        width: 5px;
        height: 5px;
    }

    .active-giveaways__value {
        min-width: 70px;
        padding: 6px 7px;
        border-radius: 11px;
    }

    .active-giveaways__value small {
        font-size: 6.5px;
    }

    .active-giveaways__value strong {
        font-size: 12px;
    }

    .active-giveaways__condition {
        margin-top: 5px;
        font-size: 8px;
        letter-spacing: .08em;
    }
}

@media (max-width: 520px) {
    .active-giveaways__tag {
        min-height: 20px;
        padding: 0 6px 0 17px;
        font-size: 6.4px;
    }

    .active-giveaways__tag::before {
        left: 7px;
        width: 5px;
        height: 5px;
    }

    .active-giveaways__value {
        min-width: 64px;
        padding: 5px 6px;
    }

    .active-giveaways__value small {
        font-size: 6px;
    }

    .active-giveaways__value strong {
        font-size: 11px;
    }

    .active-giveaways__condition {
        font-size: 7.5px;
    }
}

