/* ============================================================
   newstyle.css — Hero Section Styles
   Twitch Gainz · Gaming/Streaming Platform
   ============================================================ */

/* ── Root overrides ────────────────────────────────────────── */
:root {
    --purple:    #9147FF;
    --pink:      #E0188F;
    --cyan:      #00D4FF;
    --green-neon:#07F7AE;
    --dark-bg:   #0D0118;
    --card-bg:   rgba(10, 3, 38, 0.88);
    --gradient:  linear-gradient(90deg, #E0188F 0%, #9147FF 100%);
    --blue-dark:#250D47;
    --blue-100:#0064D1;
    --pink-100:#EF22B0;
    --white-color:#fff;
    --white-100:#DFD7EA;
    --secondary-font:"Poppins", sans-serif;
    --gradient2: linear-gradient(180deg, #D320A2 0%, #9147FF 100%);
    --blue-200:#151D5E;
    --green-100:#1ED21E;
    --blue-300:#391669;
    --purple-300:#613B99;
    --purple-400:#57308F;
    --black-200:#2D1056;
    --yellow:#FFBD15;
    --purple-500:#6E4AA2;
    --purple-600:#9A58FE;

}

img{
    max-width: 100%;
}
body{
        font-family: 'Roboto', sans-serif !important;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5) !important;
    margin-left: calc(var(--bs-gutter-x) * -.5) !important;
}
.row>* {
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
    margin-top: var(--bs-gutter-y);
}
.row.g-0{
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}
.row.g-4{
    --bs-gutter-y: 1.5rem;
        --bs-gutter-x: 1.5rem;
}
.g-5, .gy-5 {
    --bs-gutter-y: 3rem;
}

/* ── Hero Section ──────────────────────────────────────────── */
.herosection {
    background-image: url('../images/new/hero-image.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 70px;
    background-color: var(--blue-dark);
    z-index: 1;
    margin-top: 80px;
}

/* left-side dark gradient so text stays readable */


.hero-row {
    min-height: 460px;
}

.z-2 { z-index: 2; }

/* ── Left — Text Content ───────────────────────────────────── */
.hero-content {
    padding-right: 24px;
}


.hero-title {
    /* font-size: 66px; */
     font-size: 50px;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.2;
    text-transform: uppercase;
}
.hero-title span{
    color: var(--purple);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--white-100);
    line-height: 1.4;
    max-width: 480px;
    padding-bottom: 40px;
    margin-bottom: 0px;
}
.hero-line{
    line-height: 1;
    margin-bottom: 20px;
}
/* ── Buttons ───────────────────────────────────────────────── */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
    align-items: center;
}

.custom-gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--secondary-font);
    min-height:60px;
     max-width: 278px;
    width: 100%;
}
.btn-hero-primary{
    max-width: 278px;
    width: 100%;
}
.custom-gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px -8px #9146ff;
   color: var(--white-color);
}

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 12px 34px;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-hero-outline:hover {
    border-color: var(--purple);
    background: rgba(145, 71, 255, 0.12);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Stat Cards ─────────────────────────────────────────────── */
.hero-stat-cards {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--gradient2);
    border-radius: 8px;

    min-width: 147px;
    text-align: center;

    position: relative;
    z-index: 1;
    padding: 2px;

    animation: statCardFloat 3s ease-in-out infinite;
}

.stat-card:nth-child(1) { animation-delay: 0s;    }
.stat-card:nth-child(2) { animation-delay: 0.5s;  }
.stat-card:nth-child(3) { animation-delay: 1s;    }

@keyframes statCardFloat {
    0%,  100% { transform: translateY(0);   }
    50%        { transform: translateY(-8px); }
}
.stat-card-inner{
    background: var(--blue-200);
     display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
     padding: 15px 15px;
}

.stat-card-mid {
    margin-top: 60px;
}
.stat-card-end{
  margin-top: 20px;   
}
.stat-card-icon {
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-card-label {
    font-size: 13px;
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.4;
}

.stat-card-value {
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
    margin-top: 2px;
}

.val-from {
    color: rgba(255, 255, 255, 0.50);
}

.val-arrow {
    color: rgba(255, 255, 255, 0.55);
}

.val-to {
    color: var(--green-100);
}

/* ── Right — Floating Stream Widget ───────────────────────── */
.hero-right-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 10px;
}



.stream-widget-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: rgba(145, 71, 255, 0.14);
    border-bottom: 1px solid rgba(145, 71, 255, 0.30);
}

.stream-avatar-hex {
    width: 38px;
    height: 38px;
    background: var(--purple);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(145, 71, 255, 0.7);
}

.stream-progress-bar {
    flex: 1;
    height: 9px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    overflow: hidden;
}

.stream-progress-fill {
    width: 62%;
    height: 100%;
    background: linear-gradient(90deg, #E0188F 0%, #FF6ABF 100%);
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(224, 24, 143, 0.7);
}

.stream-widget-body {
    padding: 12px 15px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stream-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn {
    color: var(--green-neon);
    font-size: 13px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px var(--green-neon));
    line-height: 1;
}

.stream-item-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.sbar {
    display: block;
    height: 6px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
}

.sbar-lg  { width: 100%; }
.sbar-md  { width: 78%; }
.sbar-sm  { width: 56%; }
.sbar-xs  { width: 40%; }

/* ── Decorative Floating Shapes ────────────────────────────── */
.float-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.shape-circle-lg {
    width: 18px;
    height: 18px;
    border: 2px solid var(--green-neon);
    border-radius: 50%;
    bottom: 22%;
    left: 40%;
    opacity: 1;
    animation: pulseFade 2.8s ease-in-out infinite;
        z-index: -1;
}

.shape-circle-sm {
    width: 20px;
    height: 20px;
    border: 2px solid var(--blue-100);
    bottom: 13%;
    left: 38%;
    opacity: 1;
    transform: rotate(10deg);
    animation: pulseFadeTwo 2.8s ease-in-out infinite 0.6s;
      z-index: -1;
}

.shape-x-mark {
    width: 18px;
    height: 18px;
    bottom: 10%;
    left: 44%;
     z-index: -1;
}
.quote-icon {
    position: absolute;
    top: 27%;
    right: -24%;
    animation: floatQuote 3s ease-in-out infinite;
}

@keyframes floatQuote {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
.shape-x-mark::before,
.shape-x-mark::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--pink-100);
    top: 50%;
    left: 0;
    border-radius: 2px;
    margin-top: -1px;

}

.shape-x-mark::before { transform: rotate(45deg);  }
.shape-x-mark::after  { transform: rotate(-45deg); }



@keyframes pulseFade {
    0%,  100% { opacity: 0.65; transform: scale(1);    }
    50%        { opacity: 1;    transform: scale(1.02); }
}
@keyframes pulseFadeTwo {
    0%,  100% { opacity: 0.65; transform: scale(1) rotate(10deg);    }
    50%        { opacity: 1;    transform: scale(1.02) rotate(20deg); }
}


/* ============================================================
   WHY TWITCH GAINZ SECTION
   ============================================================ */

.Gainz-section {
      background-color: var(--blue-dark);
    padding: 120px 0 120px;

}

.gainz-section-title, .heading-main {
    font-size: 50px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.gainz-section-sub {
    font-size: 18px;
        color: var(--white-100);
    margin-bottom: 40px;
}

/* Card */
.gainz-card {
    position: relative;
    z-index: 1;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 36px 70px 36px;
    max-width: 300px;
    margin: 0 auto;

}
.poligon-shape{
    position: absolute;
    top:0px;
    left:0px;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.poligon-shape svg{
    width: 100%;
    height: 100%;
}


/* Icon Diamond */
.gainz-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.gainz-icon-diamond {
    width: 60px;
    height: 60px;

    background: linear-gradient(180deg, #9147FF 0%, #5C13C8 100%);
    transform: rotate(45deg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gainz-icon-diamond img {
    transform: rotate(-45deg);
    font-size: 26px;
    color: var(--white-color);
    display: block;
    line-height: 1;
}

/* Card Typography */
.gainz-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.gainz-card-text {
    font-size: 18px;
    color: var(--white-100);
    line-height: 1.6;
    margin-bottom: 0;
    padding-bottom: 0px;
}
.Gainz-section .custom-btn{
    margin-top:20px;
}



/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

.how-itwork-main {
    background-image: url("../images/new/work-bg.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 130px 0 0px;
    position: relative;
    z-index: 1;
    background-color: var(--blue-dark);

}





/* ── Cards ────────────────────────────────────────────────── */
.hiw-card {
    background: linear-gradient(180deg, #391669 0%, #702CCF 100%);
    border-radius: 20px;
    padding: 32px 30px 30px;
    position: relative;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hiw-inner{
background: linear-gradient(0deg, rgba(87, 42, 153, 0.5) 5.1%, #6A04FF 100%);
border-radius: 20px;
padding: 1px;
 transition: transform 0.25s ease, box-shadow 0.25s ease;
 height: 100%;

}


.hiw-step-num {
    position: absolute;
    top: -62px;
    right: 24px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    background: linear-gradient(180deg, #9147FF 0%, #391669 100%);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

/* ── Icon Pentagon ─────────────────────────────────────────── */
.hiw-icon-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    margin-top: -70px;
}


.hiw-pentagon i {
    font-size: 27px;
    color: #fff;
    position: relative;
    top: 2px;

}
.hiw-pentagon{
    width:98px;
    height: 94px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
        z-index: 1;
}
.hiw-pentagon .shape {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.hiw-pentagon .icon {
    margin-top: 10px;
}

/* ── Card Typography ───────────────────────────────────────── */
.hiw-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 8px;
    line-height: 1.3;


}

.hiw-card-text {
    font-size: 18px;
      color: var(--white-100);
    line-height: 1.6;
    padding-bottom: 0px;
    margin-bottom: 0px;

}

/* ── Connecting Arrows ─────────────────────────────────────── */
.hiw-arrow-col {
    padding-top: 64px;
    align-items: center;
}

.hiw-arrow-connector {
    display: flex;
    align-items: center;
}

.hiw-dash-line {
    display: block;
    width: 28px;
    height: 2px;
    border-top: 2px dashed rgba(145, 71, 255, 0.55);
}

.hiw-arrow-icon {
    color: rgba(160, 120, 255, 0.88);
    font-size: 28px;
    line-height: 1;
    margin-left: -6px;
}

/* ── CTA ───────────────────────────────────────────────────── */

.g-30{
    --bs-gutter-x: 30px;
    --bs-gutter-y: 1.5rem;
}
.step-wrapMain{
    margin-top: 80px;
}
.step-arrow2 {
    position: absolute;
    top: -100px;
    right: -70%;
}
.mt-30{
    margin-top: 30px;
}


/* ============================================================
   WHY STREAMERS TRUST US SECTION
   ============================================================ */

.why-streamers-main {
    padding: 110px 0 20px;
}

/* ── Left Image Block ─────────────────────────────────────── */
.ws-img-outer {
    position: relative;
    display: inline-block;

    width: 100%;
}

.ws-streamer-img {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}

.ws-streamer-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(145, 71, 255, 0.1) 0%, #9147FF 100%);
    border-radius: 20px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    padding: 2px;
   
}
.ws-streamer-badgeInner{
 color: var(--purple);
    font-size: 26px;
    font-weight: 800;
    padding: 13px 30px;
     border-radius: 20px;
      min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    width: 100%;
}

/* ── Right Content ────────────────────────────────────────── */
.ws-content {
    padding-left: 40px;
}

.ws-eyebrow {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
    line-height: 1.3;
    padding-bottom: 0px;
}

.ws-heading {
    font-size: 48px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 28px;
    line-height: 1.2;
    font-family: var(--secondary-font);
}

/* ── Comparison Box ───────────────────────────────────────── */
.ws-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 27px;
    margin-bottom: 26px;
}

/* Left column — Other Services */
.ws-col-others {
    background: var(--blue-300);
    border: 1px solid var(--purple-300);
    border-radius: 20px;
}

/* Right column — Twitch Gainz */
.ws-col-gainz {
    background: linear-gradient(180deg, #6024B3 0%, #702CCF 100%);
    border-radius: 20px;
    border:2px solid var(--purple);
        margin-left: -40px;
    margin-right: 40px;
    margin-top: -20px;
    transform: translateY(6px);
}

/* Column headers */
.ws-col-hd {
    padding: 10px 22px;
    font-size:20px;
    font-weight: 700;
    color: var(--white-100);
    text-align: center;
    border-bottom: 1px solid var(--purple-400);
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;

}

.ws-gainz-hd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom:1px solid #976AD7;

    text-align: left;
}
.ws-col-gainz .ws-inner{
    border-color: #976AD7;
}

.ws-gainz-logo {
    width: 60px;
    height: 60px;

    object-fit: contain;
    flex-shrink: 0;
}

/* Feature rows */
.ws-col-row {
    padding: 0px 30px;

}
.ws-inner{
 border-bottom: 1px solid rgba(255, 255, 255, 0.12);
   display: flex;
    align-items: center;
      gap: 10px;
          font-size: 18px;
    color: var(--white-100);
    min-height: 60px;
    line-height: 1.2;
    padding: 20px 0;

}
 .ws-col-row:last-child .ws-inner {
    border-bottom: none;
}
 .ws-col-row:last-child{
    padding-bottom: 0px;
 }
 .second-rw .ws-inner{
    min-height: 84px;
 }
.ws-col-gainz .ws-gainz-hd, .ws-col-gainz .ws-inner{
    color: var(--white-color);
}


/* ── CTA Text & Button ────────────────────────────────────── */
.ws-cta-text {
    font-size: 18px;
      color: var(--white-100);
    line-height: 1.6;
    padding-bottom: 0px;
}



/* ============================================================
   STREAMERS HELPING STREAMERS SECTION
   ============================================================ */

.streamers-main {
    background-color: var(--blue-dark);
    background-image: url("../images/new/streamer-bg.png");
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
    padding-top: 80px;

}

/* ── Background Arc ─────────────────────────────────────── */
.sm-arc-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.sm-arc-svg {
    width: 100%;
    height: 100%;
}

/* ── Section Header ─────────────────────────────────────── */
.streamers-main .sm-header-col {
    position: relative;
    z-index: 2;
   padding-top: 60px;
       max-width: 590px;
}
.sm-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.15;
    margin-bottom: 22px;
    font-family: var(--secondary-font);
}
.sm-desc {
    font-size: 18px;
    color: var(--white-100);
    line-height: 1.6;
    margin-bottom: 0px;
    padding-bottom: 10px;
}
.sm-desc strong {

    font-weight: 700;
}
.sm-tagline {
    font-size: 18px;
    color: var(--white-100);
    margin-bottom: 0;
    padding-bottom: 0px;
}

/* ── Showcase Container ─────────────────────────────────── */
.sm-showcase {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
}
.streamer-img{
    max-height: 400px;
}

/* ── Floating Badge Icons ───────────────────────────────── */
.sm-float-badge {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.sm-badge-orange {
    background: linear-gradient(145deg, #ff7043, #e64a19);
    left: 3%;
    top: 40%;
    font-size: 24px;
    color: #fff;
}
.sm-badge-twitch {
    background: linear-gradient(145deg, #9147ff, #6a1fc2);
    right: 5%;
    top: 5%;
}

/* ── Floating Avatar Circles ────────────────────────────── */
.sm-fav {
    position: absolute;
    border-radius: 50%;
    z-index: 10;
    overflow: hidden;
    border: 3px solid var(--blue-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}


/* ── Cards Shared ───────────────────────────────────────── */
.sm-card {
    background: #fff;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 -10px 60px rgba(0,0,0,0.6), 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    flex-shrink: 0;
}

/* ── Left Card ──────────────────────────────────────────── */
.sm-card-left {
    width: 560px;
    z-index: 3;
    margin-right: -30px;
}

/* ── Right Card ─────────────────────────────────────────── */
.sm-card-right {
    width: 440px;
    z-index: 4;
    align-self: flex-end;
    margin-bottom: 24px;
}

/* ── Topbar ─────────────────────────────────────────────── */
.smc-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.smc-topbar-right {
    justify-content: flex-end;
    gap: 10px;
    padding: 9px 14px;
}
.smc-brand {
    display: flex;
    align-items: center;
    gap: 7px;
}
.smc-brand-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    font-family: var(--secondary-font);
}
.smc-top-right {
    display: flex;
    align-items: center;
    gap: 9px;
}
.smc-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.smc-av-red  { background: linear-gradient(135deg, #d65db1, #c94b4b); }
.smc-av-blue { background: linear-gradient(135deg, #845ec2, #3d5a80); }
.smc-av-ring { border: 2px solid #9147ff; }
.smc-gem-count {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}
.smc-gem-count .bi-gem { color: #9147ff; font-size: 13px; }

/* ── Card Body ──────────────────────────────────────────── */
.smc-body {
    display: flex;
    height: 360px;
    overflow: hidden;
}

/* ── Sidebar ────────────────────────────────────────────── */
.smc-sidebar {
    width: 148px;
    flex-shrink: 0;
    background: #f9f9fb;
    border-right: 1px solid #eee;
    padding: 10px 0;
    overflow: hidden;
}

.streamer-img .imgbx2{
        transform: scale(1.2) translate(-60px, 40px);
    position: relative;
    z-index: -1;
}
.streamers-main .sm-badge-user{
    position: absolute;
    top: -22%;
    left: 70px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
.streamers-main .sm-badge-chat{
  position: absolute;
   top: -32%;
    right: 12%;
     animation: badgePulse 2s ease-in-out infinite;
     animation-delay: 1s;
}
.round-shape {
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100%;
    z-index: 3;
}
.sm-gradient-box{
    background: linear-gradient(0deg, #000000 0%, rgba(145, 71, 255, 0) 100%);
    position: absolute;
  bottom: 0px;
    width: calc(100% - 40px);
    height: 190px;
    z-index: 3;
    right: 0px;
    margin: 0 auto;
    left: 0px;
}

/* ============================================================
   TESTIMONIALS SLIDER SECTION
   ============================================================ */

.streamer-slider {
    background-image: url("../images/new/light-shape-slider.png");
    background-position: top;
    background-size: cover;
    background-color: var(--blue-dark);
    padding-top: 50px;
}
.streamer-titlte{
    margin-bottom: 40px;
}
.testimonial-swiper {
    overflow: hidden;
    padding-bottom: 30px !important;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}
.testi-card{
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    height: 100%;
    border-radius: 20px;
     background:linear-gradient(0deg, rgba(87, 42, 153, 0.5) 11.59%, #6A04FF 100%);
     padding: 1px;
}
.testi-card-inner {
    background: linear-gradient(180deg, #391669 0%, #702CCF 93.16%);
    border-radius: 20px;
    padding: 30px 30px 65px;
    position: relative;
    height: 100%;

}

.testi-card-shape {
    position: absolute;
    bottom: -18px;
    left: 20px;
}
.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    line-height: 1;
}

.testi-stars .bi {
    color: var(--yellow);
    font-size: 20px;
}

.testi-quote {
    font-style: italic;
      color: var(--white-100);
    font-size: 20px;
    line-height: 1.6;
    padding-bottom: 0;
    margin-bottom: 0px;
  
}

.testi-quote-icon {
    position: absolute;
    bottom: -22px;
    right: 30px;
    width: 63px;
    height: 63px;
   background: linear-gradient(180deg, #9147FF 0%, #5C13C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   border:2px solid var(--black-200);
}

.testi-quote-icon .bi {
    color: #fff;
    font-size: 22px;
}

.testi-pagination {
    bottom: 16px !important;
}

.testi-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(145, 71, 255, 0.45);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background 0.2s, transform 0.2s;
}

.testi-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--purple);
    transform: scale(1.25);
}

.testi-cta-btn {
    min-width: 240px;
}

/* ============================================================
   FAQ SECTION section
   ============================================================ */

.faq-section {

    padding: 100px 0 120px;
}
.faq-section .faq-title{
    margin-bottom: 40px;
}
.faq-card{
 height: 100%;
 padding: 1px;
 border-radius: 20px;
background: linear-gradient(0deg, #6A04FF 5.1%, rgba(87, 42, 153, 0.3) 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.faq-card-inner {
    background: var(--blue-300);
    border-radius: 20px;
    padding:30px 30px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
    transform: translateY(-3px);

}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.4;

}

.faq-divider {
    height: 1px;
   background-color: var(--purple-500);
    margin-bottom: 20px;
}

.faq-answer {
    font-size: 18px;
    color: var(--white-100);
    line-height: 1.6;
    padding-bottom: 0;
    margin-bottom: 0px;

}
/* ============================================================
   Twitch Growth Section
   ============================================================ */

.twicth-growth-section {
    background-image: url("../images/new/twitch-growth-bg.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--blue-dark);
    min-height: 545px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.growth-row {
    min-height: 300px;
}

/* ── Left: Text Content ──────────────────────────────────── */
.growth-content {
    padding-right: 20px;
}

.growth-subtext {
    font-size: 18px;
    color: var(--white-100);
    line-height: 1.6;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/* ── Right: Floating Widgets ─────────────────────────────── */
.growth-widgets-area {
    position: relative;
    min-height: 300px;
}
.twicth-growth-section .heading-main{
    margin-bottom: 20px;
}

/* Follow pill */
.growth-follow-pill {
    position: absolute;
    top: 5%;
    right: 0;
    background: var(--purple-600);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;

    z-index: 2;
}

.growth-follow-pill .bi-heart-fill {
    font-size: 14px;
    color: #fff;
}

/* Subscribers badge */
.growth-subs-badge {
    position: absolute;
    bottom: -10%;
    left: 38%;
    transform: translateX(-50%);
background: linear-gradient(180deg, #7E48C9 0%, #BB92F5 100%);
    border:2px solid var(--purple);
    padding: 15px 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
}

.subs-label-txt {
    font-size: 30px;
    color: var(--white-color);
    margin-bottom: 10px;
    padding-bottom: 0px;
    font-weight: 500;
    line-height: 1.2;

}

.subs-counter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 30px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1;
}

.subs-zero {
    color: rgba(255, 255, 255, 0.70);
}

.subs-arrow-icon {
  color: var(--white-color);
    
}

.subs-fifty {
    color: var(--white-color);
}

/* Twitch wordmark */
.growth-twitch-wordmark {
    position: absolute;
    bottom: -10%;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.twitch-growth-inner{
    padding-top:50px;
}

/* ── Copyright Footer ─────────────────────────────────────── */
.Copyright-main {
    background-color: var(--blue-dark);
    padding: 24px 0;
   position: relative;
   z-index: 1; 
}
.Copyright-main:after{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
background: linear-gradient(90deg, rgba(145, 71, 255, 0.1) 0%, #9147FF 53.76%, rgba(145, 71, 255, 0.1) 100%);

}


.Copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.Copyright-text {
    font-size: 18px;
    color: var(--white-100);
    margin: 0;
  padding-bottom: 0px;
  line-height: 1.1;
}

.Copyright-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.Copyright-link {
      font-size: 18px;
    color: var(--white-100);
    margin: 0;
  padding-bottom: 0px;
  line-height: 1.1;
    transition: color 0.2s ease;
}

.Copyright-link:hover {
    color: #ffffff;
}

.Copyright-divider {

    font-size: 14px;
    color: var(--white-100);
    user-select: none;
}

/* header css */

.newlayout-header{
    background: var(--blue-dark);
}
.newlayout-header:before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
background: linear-gradient(90deg, rgba(145, 71, 255, 0.1) 0%, #9147FF 53.76%, rgba(145, 71, 255, 0.1) 100%); 
}
.newlayout-header .login .desktopmenu ul li {
    padding: 0 0 0 40px;
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
    color: var(--white-100);
}
.newlayout-header .btn-dash{
    background: var(--gradient);
    color: var(--white-color);
    font-family: var(--secondary-font);
    min-height: 60px;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    margin-right: 0px !important;
    text-transform: capitalize;
}
.newlayout-header .btn-login{
     background: transparent;
     border:1px solid var(--white);
     color: var(--white-color);
     font-family: var(--secondary-font);
     min-height: 60px;
     font-size: 20px;
     font-weight: 700;
     padding: 10px 30px;
     border-radius: 8px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
    text-transform: capitalize;
}
.newlayout-header .btn-login:hover{
    background-color: var(--white);
    color: var(--blue-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media only screen and (min-width: 1200px) {
    .container { max-width: 1224px !important; }
}
@media only screen and (min-width: 768px) {
    .hero-mesh, .hero-img{
        display: none;
    }
}

@media only screen and (max-width: 1570px) {
    .quote-icon {
    right: 0;
}
.streamer-img {
    max-height: 380px;
}
}

@media only screen and (max-width: 1280px) {
    .g-30 {
    --bs-gutter-x: 1.5rem;
   
}
}
@media only screen and (max-width: 1199px) {
    .hero-content {
    padding-right: 0px;
}
.hero-title {
    font-size: 56px;
}
.quote-icon {
    max-width: 60px;
}
.stat-card {
    min-width: 127px;
}
.hero-stat-cards {
    gap: 10px;
}
.stat-card-value {
    font-size: 20px;
}
.gainz-section-title, .heading-main {
    font-size: 44px;
}
.subs-label-txt {
    font-size: 20px;
}
.subs-counter-row {
    font-size: 24px;
}
.streamer-img .imgbx2 {
    transform: scale(1.3) translate(-57px, 50px);
}
.sm-gradient-box {
    width: calc(100% - 30px);
    height: 160px;
}
.sm-showcase {
    min-height: 260px;
}
.streamer-img {
    max-height: 290px;
}
.streamers-main .sm-badge-chat {
    top: -51%;
    right: 8%;
}
.streamers-main .sm-badge-user {
    top: -50%;
    left: 70px;
}
.ws-col-row {
    padding: 0px 20px;
}
.ws-content {
    padding-left: 20px;
}
.ws-streamer-badgeInner {
    font-size: 22px;
    padding: 13px 20px;
    border-radius: 20px;
    min-height: 64px;
}

}

@media only screen and (max-width: 991px) {

.Gainz-section {
    padding: 60px 0 60px;
}
.how-itwork-main {
    padding: 60px 0 0px;
}
.hiw-card {
    padding: 32px 20px 20px;
}
.hiw-pentagon {
    width: 78px;
    height: 74px;
}
.hiw-pentagon .icon {
    margin-top: 8px;
    max-width: 36px;
}
.hiw-step-num {
    top: -55px;
    font-size: 62px;
}
.step-arrow2 {
    max-width: 260px;
}
.streamer-img .imgbx2 {
    transform: scale(1.3) translate(-42px, 50px);
}
.sm-gradient-box {
    width: calc(100% - 20px);
    height: 140px;
}
.streamer-img {
    max-height: 230px;
}
.sm-showcase {
    min-height: 180px;
}
.streamers-main .sm-badge-chat {
    top: -73%;
    right: 5%;
}
.streamers-main .sm-badge-user {
    top: -80%;
    left: 50px;
}
.growth-twitch-wordmark {
    right: 0;
    max-width: 100px;
}
.growth-subs-badge {
    padding: 15px 20px;
}
.subs-label-txt {
    font-size: 18px;
    margin-bottom: 6px;
}
.subs-counter-row {
    font-size: 20px;
    gap: 8px;
}
.growth-follow-pill {
    top: 45%;
}
.ws-content {
    padding-left: 0px;
}
.newlayout-header .pushy a {
    font-size: 18px;
    padding: 15px 0px;
    text-transform: capitalize;
}
.newlayout-header .pushy li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.newlayout-header .pushy li:last-child{
    border-bottom: none;
}
.newlayout-header .menu-btn.close{
    left: auto;
    right: 0px;
    color: var(--white-color);
    text-shadow: none;
    font-weight: 400;
    font-size: 22px;
    cursor: pointer;
}
.newlayout-header .menu-btn.close:hover{
   color: var(--white-color);  
}
.newlayout-header .menu-btn{
    cursor: pointer; 
}
.why-streamers-main, .streamers-main {
   padding-top: 60px;
}
.faq-section {
    padding: 60px 0 80px;
}
.shape-circle-lg {
    bottom: 22%;
    left: 50%;
    width: 16px;
    height: 16px;
}
.shape-circle-sm {
    bottom: 16%;
    left: 47%;
     width: 16px;
    height: 16px;
}
.shape-x-mark {
    bottom: 12%;
    left: 52%;
     width: 16px;
    height: 16px;
}
}

@media only screen and (max-width: 767px) {
.step-arrow2 {
 display: none;
}
.gainz-card-text {
    font-size: 16px;
}
.gainz-card {
    min-height: 270px;
    padding: 0px 24px 70px 24px;
}
.gainz-card-title {
    font-size: 18px;
    margin-bottom: 8px;

}
.how-itwork-main .hiw-steps-row{
    gap:50px 0;
}
.step-wrapMain {
    margin-top: 30px;
}
.ws-col-gainz {

    margin-left: -20px;
    margin-right: 20px;
    margin-top: -20px;

}
.why-streamers-main .ws-eyebrow, .why-streamers-main  .heading-main, .why-streamers-main .ws-cta-text, .why-streamers-main .bottom-btn {
    text-align: center;
}

.streamers-main .sm-badge-chat {
    top: -93%;
    right: 0%;
}
.streamers-main .sm-badge-user {
    top: -90%;
    left: 0px;
}
.streamer-img {
    margin-bottom: -15px;
    margin-top: 20px;
}
.gainz-section-title, .heading-main {
    font-size: 40px;
}
.ws-compare {
    margin-top: 37px;
}
.ws-eyebrow {
    font-size: 20px;
    margin-bottom: 0px;

}
.twicth-growth-section .heading-main {
    margin-bottom: 10px;
}
.growth-widgets-area {
    min-height: 110px;
    margin: 20px;
}
.twitch-growth-inner {
    padding-top: 10px;
}
.growth-follow-pill {
    top: -5%;
}
.growth-content {
    padding-right: 0;
    max-width: 380px;
}
.growth-subs-badge {
    left: 55%;
}
.sm-gradient-box {
    width: calc(100% - 17px);

}
.streamer-img .imgbx2 {
    transform: scale(1.3) translate(-34px, 50px);
}
.hero-img{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    z-index: -1;
    text-align: right;
}

.hero-mesh{
     position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    z-index: -1; 
    height: 500px;
}
.hero-mesh img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.herosection{
    background-image: none;
    z-index: 1;
    padding: 60px 0 50px;
     margin-top: 70px;
}
.hero-right-col{
height: 350px;
}
.hero-img img{
  height: 400px;  
object-fit: contain;
}
.quote-icon {
    max-width: 40px;
}
.stat-card-icon {
    max-width: 18px;
}
.stat-card-inner {
    padding: 10px 10px;
}
.stat-card-label {
    font-size: 12px;
}
.stat-card-value {
    font-size: 16px;
}
.val-arrow img{
    width: 12px;
}
.hero-description {
    font-size: 16px;
    padding-bottom: 30px;
}
.stat-card {
    flex: 1;
}
.hero-stat-cards {
    width: 100%;
}
.gainz-section-title, .heading-main {
    font-size: 34px;
}
.gainz-section-sub {
    font-size: 16px;
    margin-bottom: 30px;
}
.Gainz-section {
    padding: 50px 0 50px;
}
.hiw-card-title {
    font-size: 20px;
}
.hiw-card-text {
    font-size: 16px;
}
.hiw-step-num {
    top: -53px;
}
.ws-streamer-badgeInner {
    font-size: 18px;
    padding: 13px 15px;
    border-radius: 15px;
    min-height: 50px;
}
.ws-eyebrow {
    font-size: 16px;
}
.ws-inner {
    font-size: 16px;
}
.ws-gainz-logo {
    width: 40px;
    height: 40px;

}
.ws-col-hd {
    padding: 10px 10px;
    font-size: 18px;
}
.ws-col-row {
    padding: 0px 10px;
}
.ws-icon-check, .ws-icon-x{
    width: 18px;
            min-width: 18px;
}
.ws-cta-textm, .sm-desc, .sm-tagline {
    font-size: 16px;
}
.round-shape {
    bottom: -5px;;
}
.faq-card-inner {
    border-radius: 20px;
    padding: 20px 20px;
}
.faq-question {
    font-size: 18px;
    margin-bottom: 15px;
}
.faq-answer {
    font-size: 16px;
    line-height: 1.4;
}
.faq-divider {
    margin-bottom: 15px;
}
.faq-section .faq-title {
    margin-bottom: 30px;
}
.growth-subtext {
    font-size: 16px;
}
.ws-compare {
    padding-left: 20px;
}
.ws-cta-text{
    font-size: 16px;
}
.Copyright-text, .Copyright-link{
    font-size: 16px;
}
.Copyright-inner{
    justify-content: center;
    gap: 6px;
}
.Copyright-main {
    padding: 20px 0;

}
.newlayout-header .logo{
        margin-left: 44px;
}
.newlayout-header .btn-dash, .newlayout-header .btn-login{
    font-size: 16px;
    padding: 6px 20px;
    min-height: 44px;
    line-height: 1.1;
    text-align: center;
}
.newlayout-header .btn-login {
    margin-right: 0px;
}
.how-itwork-main {
    padding: 50px 0 0px;
}
.why-streamers-main, .streamers-main {
    padding-top: 50px;
}
.faq-section {
    padding: 50px 0 80px;
}
.shape-circle-lg, .shape-circle-sm, .shape-x-mark{
    display: none;
}

}
@media only screen and (max-width: 575px) {

.twicth-growth-section{
    position: relative;
    background-image: none;
    background-color: #391769;
     z-index: 1;
     overflow: visible;
}
.twicth-growth-section:after{
    content: "";
    position: absolute;
    top: -30px;
    left: 0px;
        background-image: url(../images/new/twitch-growth-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
    width: 100%;
    height: 300px;
}
.hero-title {
    font-size: 44px;
}
.stat-card {
    min-width: 87px;
}
.hero-img img {
    object-fit: cover;
}
.custom-gradient-btn{
        font-size: 16px;
    padding: 8px 20px;
        max-width: 168px;
    min-height: 44px;
}
.ws-inner {
    font-size: 14px;
}
.ws-gainz-hd {
    min-height: 82px;
}
.streamers-main .sm-badge-chat, .streamers-main .sm-badge-user {
    width: 30px;
    display: none;
}
.sm-gradient-box {
    width: calc(100% - 0px);
            height: 30px;
}
.streamer-img .imgbx2 {
    transform: scale(1.3) translate(-27px, 30px);
}
.twitch-growth-inner {
    padding-top: 0px;
    position: relative;
}
.order1{
    order: 2;
}
.order2{
    order: 1;
}
.growth-subs-badge {
    bottom: 0;
    left: 0;
    transform: none;
   padding: 15px 15px;
}
.subs-label-txt {
    font-size: 16px;
    margin-bottom: 6px;
}
.growth-follow-pill {
    top: -40px;
    right: auto;
    left: 0px;
}
.growth-widgets-area {
    min-height: 110px;
    margin: 0px 0 30px 0;
}
.twicth-growth-section:before{
  content: "";
        position: absolute;
        top: 220px;
        height: 90px;
        width: 100%;
        background: linear-gradient(180deg, #39176900, #391769 59%);
        z-index: 0;
}
.sm-showcase {
    min-height: 120px;
}
.Copyright-text, .Copyright-link{
    font-size: 14px;
}
.twicth-growth-section{
    min-height: 440px;
}
.gainz-card{
    max-width: 280px;
}
.Gainz-section .row.g-4{
    --bs-gutter-y: 60px;
}
.gainz-section-sub {
    margin-bottom: 50px;
}
.Gainz-section .custom-btn {
    margin-top: 30px;
}
.gainz-icon-wrapper {
    margin-top: -30px;
   margin-bottom: 36px; 
}

}
@media only screen and (max-width: 420px) {
   .newlayout-header .btn-dash{
    margin-left: 10px;
   }
    .newlayout-header .btn-dash, .newlayout-header .btn-login {
    font-size: 14px;
    padding: 4px 10px;
    min-height: 36px;
}
.ws-col-gainz {
    margin-left: -10px;
    margin-right: 10px;
}
.ws-compare {
    padding-left: 10px;
}
.streamer-img .imgbx2 {
    transform: scale(1.3) translate(-28px, 20px);
}
.round-shape {
    bottom: -7px;
}
}


@media only screen and (max-width: 374px) {
.ws-compare {

    grid-template-columns: 1fr;
    margin-top: 0px;
    padding-left: 0px;
}
.ws-col-gainz {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
}
.second-rw .ws-inner {
    min-height: auto;
}
}
@media only screen and (max-width: 329px) {
.newlayout-header .menu-btn {
    width: 24px;
}
.newlayout-header .logo {
    margin-left: 40px;
}
}

@media only screen and (max-width: 319px) {
    .stat-card {
    flex: none;
}
}


