:root {
    --primary: #1a1a1a;
    --accent: #FF6B35;

    --bg-light: #FFFFFF;
    --bg-cream: #ffffff;
    --bg-light-gray: #f7f7f7;

    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-muted: #6b6b6b;

    --glass-light: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

body {
  background:#f8fafc;
  color:#0f172a;
    background-attachment: fixed;
   
    line-height: 1.6;
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    box-shadow: 0 2px 15px var(--shadow-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header img {
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    font-weight: 800;
    font-size: 30px;
    color: #1f2937;
}

.logo span span {
    color: #6f3cc3;
}



.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:800;
  color:#0f172a
}

.logo img{
  width:50px;
  height:50px;
  border-radius:12px
}

.logo span {
font-size:35px;
  font-weight:700;
  color:#1f2937;
  
}

.hero {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #E0C3FC 10%, #B7B5FC 55%, #8EC5FC 100%);
    align-items: center;
    padding: 150px 50px 100px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
     color:#0f172a;
    text-shadow: none;
}

.hero-content span {
    color: var(--primary);
    font-weight: 800;
      color:#6f3cc3;
}

.hero-content p {
    margin: 20px 0;
    color: var(--text-gray);
    font-size: 24px;
    font-weight: 500;
}

.cta-btn{
  display:inline-block;
  padding:16px 38px;
  border-radius:50px;
  background:#6f3cc3;
  color:#ffffff;
  text-decoration:none;
  font-size:30px;
  font-weight:600;
  box-shadow:0 14px 35px rgba(111,60,195,.35);
  transition:.25s;
  
}

.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 45px rgba(111,60,195,.45)
}

.hero-image-wrapper {
    position: relative;
    width: 1000px;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.iphone-mockup {
    position: relative;
    z-index: 2;
}

.iphone-frame {
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.iphone-frame:hover {
    transform: translateY(-10px) scale(1.02);
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}


.floating-badge {
    position: absolute;
    background: var(--glass-light);
    background-color: #d1caca;
    backdrop-filter: blur(15px);
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--glass-border);
    z-index: 3;
    animation: float-badge 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-1 {
    top: 50px;
    right: -30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 150px;
    left: -40px;
    animation-delay: 1s;
}

.badge-3 {
    top: 200px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}



.floating-coin {
    position: absolute;
    font-size: 40px;
    z-index: 1;
    opacity: 0.6;
    animation: float-coin 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px var(--shadow-light));
}

.coin-1 {
    top: 100px;
    left: -60px;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 200px;
    right: -50px;
    animation-delay: 1.3s;
}

.coin-3 {
    top: 350px;
    right: -40px;
    animation-delay: 2.6s;
}

@keyframes float-coin {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(10deg) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) rotate(-10deg) scale(1.15);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-10px) rotate(5deg) scale(1.05);
        opacity: 0.75;
    }
}

section {
    padding: 60px 50px;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #000000;
}

.dimedrop-section {
    padding: 90px 20px;
    position: relative;
    background: linear-gradient(180deg, #f5f3ff 0%, #EEF2FF 100%); 
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dimedrop-card {
    background: linear-gradient(135deg, #6A3DBF 0%, #5B34A4 100%);
    border-radius: 34px;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    box-shadow: 0 30px 80px rgba(91, 52, 164, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dimedrop-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.dimedrop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(91, 52, 164, 0.55);
}

.dimedrop-left {
    flex: 1;
    position: relative;
    z-index: 2;
}

.dimedrop-icon-wrapper {
    margin-bottom: 28px;
    display: inline-block;
}

.dimedrop-icon {
    font-size: 62px;
    animation: pulse-icon 2s ease-in-out infinite;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}
@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.dimedrop-title {
    font-size: 45px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 22px;
}

.dimedrop-brand {
    background: linear-gradient(135deg, #FFFFFF, #DDD6FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dimedrop-subtitle {
    font-size: 25px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 520px;
}

.dimedrop-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.dimedrop-feature {
    display: flex;
    align-items: center;
    gap: 26px;
    background: rgba(255,255,255,0.15);
    padding: 26px 32px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.dimedrop-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.dimedrop-feature:hover::before {
    left: 100%;
}

.dimedrop-feature:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255,255,255,0.22);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.feature-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.35;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #FFFFFF;
}

.dimedrop-feature:hover .feature-icon-bg {
    opacity: 0.55;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-big-text {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.feature-small-text {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

.dimedrop-decoration {
    position: absolute;
    font-size: 32px;
    opacity: 0.25;
    animation: float-decoration 4s ease-in-out infinite;
    z-index: 1;
    color: #FFFFFF;
}

.decoration-1 {
    top: 35px;
    right: 110px;
}

.decoration-2 {
    bottom: 55px;
    left: 90px;
    animation-delay: 1.5s;
}

.decoration-3 {
    top: 50%;
    right: 60px;
    animation-delay: 3s;
}

@keyframes float-decoration {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.6;
    }
}

.reward-grid,
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
/* games */
:root {
    --primary: #6c3cff;
    --primary-soft: #9b82ff;
    --glass-main: rgba(255, 255, 255, 0.94);
    --glass-soft: rgba(255, 255, 255, 0.86);
    --glass-border: rgba(108, 60, 255, 0.22);
    --text-dark: #1c1c2e;
    --text-muted: #6f6f8a;
    --shadow-soft: rgba(108, 60, 255, 0.25);
}

section {
    padding: 80px 50px;
}

.top-games {
    background: linear-gradient(180deg, #f4f1ff 0%, #ffffff 100%);
}

.top-games-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.top-games-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.top-games-header p {
    font-size: 20px;
    font-weight: 500;
    color:rgb(0, 0, 0);
    line-height: 1.7;
}

.games-grid {
    max-width: 1500px;
   
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
}
.game-card {
    position: relative;
    background: linear-gradient(135deg, #6f3cc3 0%, #8b5cf6 50%, #a78bfa 100%);
    border-radius: 32px;
    padding: 4px;
    border: none;
    box-shadow: 0 20px 60px rgba(111, 60, 195, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    height: auto;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6f3cc3, #8b5cf6, #a78bfa, #c4b5fd);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover::before {
    opacity: 1;
    animation: gradient-rotate 3s linear infinite;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(111, 60, 195, 0.5);
}

.game-card-body {
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 100%);
    border-radius: 28px;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-card-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6f3cc3, #8b5cf6, #a78bfa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-body::after {
    opacity: 1;
}

.game-image-card {
    position: relative;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ece7ff, #f6f4ff);
    height: 220px;
    margin: 4px;
}

.game-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(111, 60, 195, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-image-card::before {
    opacity: 1;
}

.game-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover .game-image-card img {
    transform: scale(1.1) rotate(1deg);
}

.game-content {
    padding: 24px 20px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.game-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1f1b2e;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6f3cc3, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.game-card:hover .game-content h3 {
    transform: translateY(-2px);
}

.game-content p {
    font-size: 15px;
    color: #6b6785;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
    min-height: 48px;
}

.game-btn {
    display: inline-block;
    padding: 12px 38px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    /* box-shadow: 0 12px 30px rgba(100, 50, 250, 0.6); */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    
}

.game-btn:hover {
    transform: scale(1.05);
    /* box-shadow: 0 18px 45px rgba(108, 60, 255, 0.55); */
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .game-image-card img {
        height: 165px;
    }
}


/* main */

.main-features {
    padding: 100px 50px;
    text-align: center;
background-color: white;



    
}

.features-label {
    font-size: 50px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.features-headline {
    font-size: 40px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 80px;
    line-height: 1.2;
}

.features-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: transparent;
    border: none;
    transition: all 0.4s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-animation {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-character {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.signup-character {
    animation: bounce-gentle 3s ease-in-out infinite;
}

.signup-character .character-body {
    font-size: 100px;
    position: relative;
    z-index: 2;
    animation: float-up 2s ease-in-out infinite;
}

.signup-character .device-icon {
    font-size: 50px;
    position: absolute;
    bottom: 20px;
    right: -10px;
    animation: device-float 2.5s ease-in-out infinite;
    z-index: 1;
}


.earn-character {
    animation: bounce-gentle 3s ease-in-out infinite;
}

.earn-character .character-body {
    font-size: 100px;
    position: relative;
    z-index: 2;
    animation: happy-bounce 2.5s ease-in-out infinite;
}

.earn-character .happy-face {
    font-size: 40px;
    position: absolute;
    top: -10px;
    right: -15px;
    animation: sparkle 2s ease-in-out infinite;
}


.withdraw-character {
    animation: bounce-gentle 3s ease-in-out infinite;
}

.withdraw-character .character-body {
    font-size: 100px;
    position: relative;
    z-index: 2;
    animation: float-up 2s ease-in-out infinite;
}

.coins-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.coins-rain .coin {
    position: absolute;
    font-size: 30px;
    animation: coin-fall 3s ease-in-out infinite;
}

.coins-rain .coin:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.coins-rain .coin:nth-child(2) {
    left: 40%;
    animation-delay: 0.5s;
}

.coins-rain .coin:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
}

.coins-rain .coin:nth-child(4) {
    left: 30%;
    animation-delay: 1.5s;
}

.coins-rain .coin:nth-child(5) {
    left: 70%;
    animation-delay: 2s;
}

.feature-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}
@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-up {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes device-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes happy-bounce {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(-5deg);
    }

    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes coin-fall {
    0% {
        top: -20px;
        opacity: 0;
        transform: rotate(0deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 180px;
        opacity: 0;
        transform: rotate(360deg);
    }
}
.main-features {
    padding: 100px 60px;
    background: linear-gradient(180deg, #ffffff, #f6f1ff);
}

.features-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 70px 40px 45px;
    text-align: center;
    width: 320px;
    box-shadow: 0 25px 60px rgba(111, 60, 195, 0.15);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(111, 60, 195, 0.25);
}

/* Highlight middle card */
.feature-item.active {
    border: 2px solid #6f3cc3;
}

/* ICON TOP CENTER */
.feature-icon {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #6f3cc3, #8f6cff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(111, 60, 195, 0.4);
}

/* TEXT */
.feature-title {
    font-size: 26px;
    font-weight: 800;
    color: #2b1f55;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    color: #6b6291;
    line-height: 1.7;
}


body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
}

.how-work {
    padding: 80px 20px 120px;
    background: linear-gradient(180deg, #C3EEFA 0%, #C3EEFA 45%, #ffffff 45%);
}

.how-work-header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.how-work-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-work-header p {
    font-size: 16px;
    opacity: 0.9;
}

.how-work-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.work-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 25px 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.work-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(111, 60, 195, 0.35);
}

.step-no {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3px solid #6f3cc3;
    color: #6f3cc3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.work-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.work-card h3 {
    font-size: 20px;
    color: #1e1e2f;
    margin-bottom: 12px;
}

.work-card p {
    font-size: 14px;
    color: #6b6b80;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .how-work-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .how-work {
        padding-bottom: 80px;
    }

    .how-work-cards {
        grid-template-columns: 1fr;
    }
}


.rewards {
    position: relative;
    overflow: hidden;
}

.rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(26, 26, 26, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.reward-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px var(--shadow-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.reward-card:hover::before {
    left: 100%;
}

.reward-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: rgba(26, 26, 26, 0.3);
}

.reward-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.12));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    border: 2px solid rgba(26, 26, 26, 0.15);
}

.reward-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--primary);
    transition: all 0.4s ease;
}

.reward-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Size adjust mapping your screenshot */
    height: 60px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.reward-icon img {
    width: 30px; /* Icon image size */
    height: auto;
}

/* Individual Colors based on your request */

/* PayPal: #CCD2F0 */
.paypal .reward-icon {
    background-color: #CCD2F0;
    border: 2px solid #CCD2F0;
}

/* Amazon: #FFE5C6 */
.amazon .reward-icon {
    background-color: #FFE5C6;
    border: 2px solid #FFE5C6;
}

/* Google Play: #CCF1F9 */
.google .reward-icon {
    background-color: #CCF1F9;
    border: 2px solid #CCF1F9;
}

/* Starbucks: #CCDDD4 */
.starbucks .reward-icon {
    background-color: #CCDDD4;
    border: 2px solid #CCDDD4;
}

/* Target: #FFD8D7 */
.target .reward-icon {
    background-color: #FFD8D7;
    border: 2px solid #FFD8D7;
}

/* Hover Effect updates */
.reward-card:hover .reward-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.reward-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.reward-card:hover h3 {
    color: var(--primary);
}

.reward-card p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.reward-amount {
    margin-top: 10px;
    padding: 10px 20px;
    background: #F3EFFA;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid #CBACFF;
    transition: all 0.4s ease;
}

.reward-card:hover .reward-amount {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px #CBACFF;
}


:root {
    --primary: #6f3cc3;
    --secondary: #8b5cf6;
    --accent: #a78bfa;
    --bg-light: #f6f4ff;
    --card-bg: #ffffff;
    --text-dark: #1f1b2e;
    --text-gray: #6b6785;
    --border-light: #e5defa;
}


.faq-section {
    padding: 70px 50px;
    background: linear-gradient(135deg, #d1bfee, #ad8cfa);
}


.faq-wrapper {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 26px;
    padding: 45px 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    box-shadow: 0 25px 55px rgba(111, 60, 195, 0.25);
}


.faq-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--text-dark);
}


.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
}


.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;      /* સુધારેલું */
    justify-content: center;   /* સુધારેલું */
    font-size: 18px;
    color: var(--primary);
    transition: all 0.3s ease; /* transition all કરી દેવું */
    transform-origin: center;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    transform: rotate(45deg);
}


.faq-answer {
    display: grid;
    grid-template-rows: 0fr; /* શરૂઆતમાં હાઈટ 0 */
    overflow: hidden;
    
    /* બધી પ્રોપર્ટી પર ટ્રાન્ઝિશન આપો જેથી બંધ થતી વખતે સ્મૂધ રહે */
    transition: grid-template-rows 0.5s ease, padding 0.5s ease, margin 0.5s ease; 
    
    padding: 0 15px; /* બંધ હોય ત્યારે ઉપર-નીચે પેડિંગ 0 રાખવું */
    margin-top: 0;   /* બંધ હોય ત્યારે માર્જિન 0 રાખવું */
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr; /* ખુલશે ત્યારે કન્ટેન્ટ પ્રમાણે હાઈટ લેશે */
    padding: 10px 15px;      /* ખુલ્યા પછીનું પેડિંગ */
    margin-top: 8px;        /* ખુલ્યા પછીનું માર્જિન */
}

/* આ ખૂબ જરૂરી છે: અંદરના કન્ટેન્ટને min-height આપવી */
.faq-answer > div, 
.faq-answer p {
    min-height: 0;
}
.faq-answer p {
    font-size: 14.5px;
    line-height: 1.6;
    min-height: 0;
    color: var(--text-gray);
}


.faq-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-right img {
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(111, 60, 195, 0.35));
}


/* @media (max-width: 900px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .faq-right {
        order: -1;
        margin-bottom: 25px;
    }
} */


.final-cta {
    background: #F9EBE8;
    backdrop-filter: blur(15px);
    text-align: center;
    padding: 80px 50px;
    border-radius: 30px;
    color: var(--text-dark);
    border: 2px solid rgba(26, 26, 26, 0.15);
    box-shadow: 0 20px 60px var(--shadow-light);
    position: relative;
    overflow: hidden;
    margin: 60px 50px;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: #F9EBE8;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: none;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid #CBACFF;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

.cta-feature-icon {
    width: 50px;
    height: 50px;
       background: #F3EFFA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
        border: 1px solid #CBACFF;
}

.cta-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.cta-feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-feature-text strong {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.cta-feature-text span {
    font-size: 14px;
    color: var(--text-dark);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: none;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.cta-stat:hover .cta-stat-number {
    transform: scale(1.1);
}

.cta-stat-label {
    font-size: 18px;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.2);
    border: 2px solid transparent;
}

.cta-btn-primary svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(26, 26, 26, 0.3);
    background: #8b19d7;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.15);
}

.cta-note {
    font-size: 14px;
    color: black;
    margin-top: 20px;
}


.footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 50px 30px 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section p {
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    border-color: var(--primary);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .hero {
        padding: 150px 30px 100px;
    }
    
    .container-fluid {
        padding: 0 15px;
    }
    
    .dimedrop-card {
        padding: 50px 40px;
        gap: 50px;
    }
    
    .dimedrop-title {
        font-size: 38px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .reward-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 80px;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 45px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .hero-image-wrapper {
        width: 450px;
        height: 500px;
    }
    
    .dimedrop-card {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }
    
    .dimedrop-title {
        font-size: 35px;
    }
    
    .dimedrop-subtitle {
        font-size: 20px;
    }
    
    .features-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 400px;
    }
    
    .how-work-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-wrapper {
        grid-template-columns: 1fr;
        padding: 35px 30px;
    }
    
    .faq-right {
        order: -1;
        margin-bottom: 30px;
    }
    
    .cta-features {
        gap: 25px;
    }
    
    .cta-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 24px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .download-btn {
        display: flex;
        align-items: center;
    }
    
    .download-btn img {
        height: 35px;
        width: auto;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 16px;
        margin: 15px 0;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 18px;
    }
    
    .hero-image-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .iphone-frame {
        width: 100%;
        height: 100%;
        border-radius: 40px;
        background: #1a1a1a;
        position: relative;
        overflow: hidden;
    }
    
    .iphone-notch {
        width: 120px;
        height: 20px;
    }
    
    .iphone-home-indicator {
        width: 100px;
        height: 3px;
    }
    
    .floating-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .badge-1 {
        top: 30px;
        right: -20px;
    }
    
    .badge-2 {
        bottom: 100px;
        left: -25px;
    }
    
    .badge-3 {
        top: 150px;
        left: -30px;
    }
    
    .floating-coin {
        font-size: 30px;
    }
    
    section {
        padding: 50px 20px;
    }
    
    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .dimedrop-section {
        padding: 60px 20px;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    .dimedrop-card {
        padding: 40px 25px;
        border-radius: 24px;
    }
    
    .dimedrop-icon {
        font-size: 50px;
    }
    
    .dimedrop-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .dimedrop-subtitle {
        font-size: 16px;
    }
    
    .dimedrop-feature {
        padding: 20px;
        gap: 20px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-big-text {
        font-size: 36px;
    }
    
    .feature-small-text {
        font-size: 16px;
    }
    
    .top-games-header h2 {
        font-size: 28px;
    }
    
    .top-games-header p {
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .game-card {
        height: auto;
    }
    
    .game-card-body {
        height: auto;
    }
    
    .game-image-card img {
        height: 180px;
    }
    
    .main-features {
        padding: 60px 20px;
    }
    
    .feature-item {
        padding: 50px 25px 35px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        top: -30px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .how-work {
        padding: 60px 20px 80px;
    }
    
    .how-work-header h2 {
        font-size: 32px;
    }
    
    .how-work-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .work-card {
        padding: 40px 20px 30px;
    }
    
    .work-card img {
        width: 70px;
        height: 70px;
    }
    
    .work-card h3 {
        font-size: 18px;
    }
    
    .work-card p {
        font-size: 13px;
    }
    
    .reward-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reward-card {
        padding: 30px 20px;
    }
    
    .reward-icon {
        width: 60px;
        height: 60px;
    }
    
    .reward-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .reward-card h3 {
        font-size: 20px;
    }
    
    .reward-amount {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-wrapper {
        padding: 30px 20px;
    }
    
    .faq-title {
        font-size: 26px;
    }
    
    .faq-question h4 {
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .final-cta {
        padding: 50px 20px;
        margin: 40px 20px;
        border-radius: 20px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .cta-feature {
        padding: 15px 20px;
        width: 100%;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .cta-stat-number {
        font-size: 36px;
    }
    
    .cta-stat-label {
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 16px;
        gap: 8px;
    }
    
    .logo span {
        font-size: 20px;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .download-btn img {
        height: 30px;
        max-width: 120px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        width: 340px;
        height: 320px;
    }
    
    .iphone-notch {
        width: 100px;
        height: 18px;
    }
    
    .iphone-home-indicator {
        width: 80px;
        height: 3px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .floating-coin {
        display: none;
    }
    
    .dimedrop-title {
        font-size: 24px;
    }
    
    .dimedrop-subtitle {
        font-size: 14px;
    }
    
    .top-games-header h2 {
        font-size: 24px;
    }
    
    .top-games-header p {
        font-size: 14px;
    }
    
    .game-btn {
        padding: 10px 30px;
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .how-work-header h2 {
        font-size: 26px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
    
    .faq-title {
        font-size: 22px;
    }
}