 @import url("https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,700,900");

/* Custom Scrollbar for Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #17223b;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #2d3a5a;
  border-radius: 5px;
  border: 2px solid #17223b;
}

::-webkit-scrollbar-thumb:hover {
  background: #05cf0b;
}

::-webkit-scrollbar-thumb:active {
  background: #04b809;
}

::-webkit-scrollbar-corner {
  background: #17223b;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2d3a5a #17223b;
}

/* Optional: Specific element scrollbars */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #05cf0b;
}
/* CSS Variables */
:root {
    --primary: #00a500;
    --light: #f8f9fa;
    --dark-bg:  #101728;
    --dark-card: #17223b;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --success: #00c02d;
    --border:#dd8d00;
    --transition: all 0.3s ease;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    --accent: #ffd700;
    --accent-dark: #e6c200;
    --primary-dark: #008500;
    --card-bg: #1a1f35;
    --card-inner: #0d0d17;
    --accent-green: #00a500;
}
/* Add or modify container styles */
/* MOBILE CENTERING FIXES - NO HORIZONTAL SCROLL */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on body */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        position: relative;
    }
    
    /* Fix body alignment without vw unit */
    body {
        width: 100%;
        position: relative;
    }
    
    /* Ensure all content is properly contained WITHOUT horizontal overflow */
    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* FIXED: Remove negative margins and extra width on mobile */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    /* Ensure all columns don't exceed container width */
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
    .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
    .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
    .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
    .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6,
    .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Fix the hero section specifically */
    .hero > .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Fix offers section on mobile */
    .offers-container {
        padding: 0 5px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Force all elements to stay within viewport */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Specific fix for container-fluid with padding */
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure any absolute positioned elements don't cause overflow */
    .gaming-mask, .app-offers-mask {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 40px;
}

/* Header - BORDER REMOVED */
.navbar {
    background-color: #1018;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    /* border-bottom: 1px solid var(--border); REMOVED THIS LINE */
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: none; /* Keep hidden */
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Updated Signin Button - Bold text & icon for desktop */
.btn-Signin {
    background: #17223b;
    color: var(--text-light);
    border: none;
    padding: 8px 16px !important; /* Original padding */
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600; /* BOLD TEXT */
    transition: all 0.3s ease;
}

.btn-Signin i {
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.btn-Signin:hover {
    background: #1d2a49;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Updated Signup Button - Bold text & icon for desktop */
.btn-signup {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px !important; /* Original padding */
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700; /* EXTRA BOLD TEXT */
    transition: all 0.3s ease;
}

.btn-signup i {
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.btn-signup:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Button container spacing */
.d-flex.gap-2.ms-lg-3 {
    gap: 8px !important;
}

/* HIDE ICONS ON MOBILE - Show only text */
@media (max-width: 767px) {
    .btn-Signin i,
    .btn-signup i {
        display: none !important; /* Hide icons on mobile */
    }
    
    .btn-Signin,
    .btn-signup {
        gap: 0; /* Remove gap since icons are hidden */
        padding: 6px 12px !important; /* Slightly smaller but not too small */
        font-size: 13px;
        font-weight: 600; /* Keep bold on mobile */
    }
    
    /* DO NOT show logo text on mobile - keep original size */
    .logo-text {
        display: none; /* Keep hidden on mobile */
    }
    
    /* Keep original logo size on mobile */
    .logo img {
        height: 40px; /* Original size */
        margin-right: 10px; /* Original margin */
    }
    
    .logo {
        font-size: 24px; /* Original size */
    }
}

/* Hero Section - Fixed spacing */
.hero {
    padding: 70px 0 60px;
    text-align: center;
    background: #101728;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -1px;
    line-height: 1;
    color: white;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
}

.cash-text {
    color: #05cf0b !important;
    -webkit-text-fill-color: #05cf0b !important;
    text-shadow: 0 0 15px rgba(5, 207, 11, 0.5);
    background: none !important;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    max-width: 700px;
    margin: 1rem auto 30px;
    color: #ffc107 !important;
}

/* Responsive font sizes to keep text in one line */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem !important;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.3px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem !important;
        letter-spacing: -0.2px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
    }
    
    .hero {
        padding: 50px 0 40px;
    }
}

/* Extra small screens */
@media (max-width: 350px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.75rem !important;
    }
}


/* Stats Section - No Background & 2x2 Stack */
.stats-section {
    background: transparent !important; /* Remove background */
    position: relative;
    overflow: hidden;
    padding: 40px 0 !important;
}

.stats-section::before {
    display: none; /* Remove gradient background */
}

.stats-container {
    position: relative;
    z-index: 2;
}

/* Reduced stat sizes for desktop */
.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* 2x2 Stack Layout for 1200px and below */
@media (max-width: 1200px) {
    .stats-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stats-section .col-md-3 {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Mobile Responsive Stats */
@media (max-width: 768px) {
    .stats-section {
        padding: 30px 0 !important;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .stats-section .row {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 25px 0 !important;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .stats-section .row {
        gap: 12px;
    }
}

@media (max-width: 300px) {
    .stats-section {
        padding: 20px 0 !important;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .stats-section .row {
        gap: 10px;
    }
}
/* Offers Section - PERFECT SIDE BY SIDE */
.offers-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin: 40px 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 12px;
    position: relative;
    overflow: visible;
    transform: scale(1);
    z-index: 80;
    /* Border removed from here */
    flex: 1;
    max-width: 180px;
    min-width: 0;
}

.offer-card.middle {
    height: 270px; /* Increased from 230px to 250px */
    /* Middle card positioned LOWER - equal spacing */
    transform: translateY(15px);
}

.offer-card.side {
    height: 240px; /* Increased from 200px to 220px */
}

.offer-card:hover {
    transform: scale(1.05);
    z-index: 1001;
}

.offer-card.middle:hover {
    /* Middle card hover positioned LOWER */
    transform: translateY(15px) scale(1.05);
}

.offer-image {
    width: 100%;
    height: 120px; /* Increased from 110px to 120px */
    border-radius: 8px;
    background: #0f0f1b;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card.middle .offer-image {
    height: 140px; /* Increased from 130px to 140px */
}

.offer-card:hover .offer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 1;
    border-radius: 8px;
}

.offer-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(0, 165, 0, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

.offer-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 5px;
    width: 100%;
}

.offer-title {
    font-weight: bold;
    color: var(--text-light);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: left;
}

.offer-description {
    color: var(--text-muted);
    margin-bottom: 8px;
    flex-grow: 1;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.offer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.offer-amount {
    font-weight: bold;
    color: var(--primary);
    font-size: 14px;
    white-space: nowrap;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 165, 0, 0.3);
}

.offer-rating {
    color: var(--text-light);
    display: flex;
    align-items: center;
    font-size: 12px;
    white-space: nowrap;
    gap: 5px;
}

.offer-rating img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(59%) saturate(1233%) hue-rotate(359deg) brightness(105%) contrast(105%);
}

.offer-rating span {
    color: var(--text-muted);
}


/* LARGER SIGNUP FORM STYLES */
/* SIGNUP FORM STYLES - Clean Green Borders */
.earnerhive-signup-wrapper::before,
.earnerhive-signup-wrapper::after {
    display: none; /* Remove glow backgrounds */
}

.earnerhive-signup-box {
    width: 420px;
    background: #17223b !important; /* Your specified box color */
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    box-sizing: border-box;
    /* Clean green border */
    border: 2px solid #05cf0b;
    /* Remove all glow shadows */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: cardFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.earnerhive-signup-box:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    border-color: #06e80c; /* Slightly brighter green on hover */
}

@keyframes cardFloat {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.earnerhive-signup-box::after {
    display: none; /* Remove outer glow effect */
}

.top-tab { 
    width: 180px;
    height: 45px;
    background: #05cf0b; /* Solid green */
    border-radius: 20px; 
    position: absolute; 
    top: -22px;
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 3; 
    border: 2px solid #17223b; /* Match box color */
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.title { 
    margin-top: 15px; 
    margin-bottom: 25px;
    font-weight: 700; 
    font-size: 26px;
    color: white;
    /* Remove text shadow */
}

.input-box { 
    width: 100%; 
    background: #0d0d17; /* Darker inner background */
    border: 1px solid #2d3a5a; /* Subtle border */
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
    color: white; 
    outline: none; 
    box-sizing: border-box; 
    font-size: 16px;
    transition: all 0.3s ease; 
}

.input-box:focus { 
    border-color: #05cf0b;
    box-shadow: 0 0 0 2px rgba(5, 207, 11, 0.2);
}

.main-btn { 
    width: 100%; 
    padding: 16px;
    background: #05cf0b; /* Solid green */
    border: none;
    border-radius: 12px;
    color: white; 
    font-size: 18px;
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: 0 3px 10px rgba(5, 207, 11, 0.2);
}

.main-btn:hover { 
    transform: translateY(-2px); 
    background: #06e80c;
    box-shadow: 0 5px 15px rgba(5, 207, 11, 0.3);
}

.or-divider { 
    margin: 20px 0;
    color: #8a91b3; 
    position: relative; 
}

.or-divider span { 
    background: #17223b; /* Match box color */
    padding: 0 12px;
    z-index: 2; 
    position: relative; 
    font-size: 14px;
    color: #8a91b3; 
}

.or-divider::before { 
    content: ""; 
    width: 100%; 
    height: 1px; 
    background: #2d3a5a; /* Subtle divider */
    position: absolute; 
    top: 50%; 
    left: 0; 
}

.google-btn, .facebook-btn { 
    width: 100%; 
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #2d3a5a;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 12px;
    cursor: pointer; 
    font-weight: 700; 
    box-sizing: border-box; 
    transition: all 0.3s ease; 
}

.google-btn { 
    background: white; 
    color: black; 
}

.google-btn:hover { 
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.google-btn img, .facebook-btn img { 
    width: 22px;
    height: 22px;
}

.facebook-btn { 
    background: #006efe; 
    color: white; 
    border: none;
}

.facebook-btn:hover {
    background: #0056d6;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 110, 254, 0.2);
}

.signup-stats { 
    margin-top: 15px;
    color: #8a91b3; 
    font-size: 14px;
}

.secure-box { 
    margin-top: 15px;
    background: #0d0d17;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    color: #8a91b3; 
    align-items: center; 
    border: 1px solid #2d3a5a;
}

.secure-box img { 
    width: 16px;
    /* Green lock icon */
    filter: brightness(0) saturate(100%) invert(58%) sepia(91%) saturate(3413%) hue-rotate(88deg) brightness(101%) contrast(101%);
}
/* Minimal Breathing Effect - Recommended */
.earnerhive-signup-wrapper {
    animation: gentleBreathing 6s ease-in-out infinite;
}

@keyframes gentleBreathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.015);
    }
}

/* Keep the floating effect on the box */
.earnerhive-signup-box {
    animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-5px); 
    }
}
/* Section title styling */
.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* How It Works Section */
.section {
    background:  #17223b;
    padding: 60px 0;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

/* Desktop Layout Styles (above 1000px) - NO BOXES */
/* Desktop: Add box around GIF */
.feature-icon {
    background: rgba(23, 34, 59, 0.8); /* Dark background */
    border-radius: 12px;
    padding: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    border-color: #05cf0b; /* Green border on hover */
    box-shadow: 0 5px 20px rgba(5, 207, 11, 0.3);
}

/* Mobile: Add box around GIF */
.step-gif {
    position: relative;
    transition: transform 0.3s ease;
    margin-right: 1rem;
    flex-shrink: 0;
    background: rgba(23, 34, 59, 0.8); /* Dark background */
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
}

.feature-step:hover .step-gif {
    border-color: #05cf0b; /* Green border on hover */
    box-shadow: 0 5px 15px rgba(5, 207, 11, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #ffd700;
    position: relative;
    padding-bottom: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.step-content p {
    line-height: 1.6;
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

/* Layout Visibility - Fixed for 1000px breakpoint */
.desktop-layout {
    display: block;
}

.mobile-layout {
    display: none;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
    
    .offers-container {
        padding: 0 20px;
    }
}

/* Mobile Responsive - Switch to mobile layout at 1000px and below */
@media (max-width: 1000px) {
    .desktop-layout {
        display: none !important;
    }
    
    .mobile-layout {
        display: block !important;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-step {
        margin-bottom: 30px;
        padding: 12px 0;
    }
    
    .step-gif {
        margin-right: 15px;
    }
    
    .step-gif img {
        max-height: 80px;
        max-width: 80px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Stats Responsive */
    .stats-section {
        padding: 30px 0 !important;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .earnerhive-signup-box {
        width: 100%;
        max-width: 400px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .step-gif img {
        max-height: 70px;
        max-width: 70px;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* WIDER CARDS & SMALLER TEXT on mobile */
    .offers-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .offer-card {
        /* Wider cards with better proportions */
        flex: 1;
        width: 32%;
        min-width: 0;
        padding: 12px;
    }
    
    .offer-card.middle {
        height: 200px;
        transform: translateY(8px);
    }
    
    .offer-card.side {
        height: 190px;
    }
    
    .offer-card.middle:hover {
        transform: translateY(8px) scale(1.05);
    }
    
    .offer-image {
        height: 100px;
    }
    
    .offer-card.middle .offer-image {
        height: 100px;
    }
    
    /* SMALLER TEXT on mobile */
    .offer-title {
        font-size: 13px;
    }
    
    .offer-description {
        font-size: 11px;
    }
    
    .offer-amount {
        font-size: 13px;
    }
    
    .offer-rating {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    /* Stats Responsive */
    .stats-section {
        padding: 25px 0 !important;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .step-gif img {
        max-height: 60px;
        max-width: 60px;
    }
    
    .step-content h3 {
        font-size: 0.95rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* WIDER CARDS & SMALLER TEXT on small mobile */
    .offers-container {
        padding: 0 8px;
        gap: 8px;
    }
    
    .offer-card {
        flex: 1;
        width: 32%;
        min-width: 0;
        padding: 10px;
    }
    
    .offer-card.middle {
        height: 200px;
        transform: translateY(6px);
    }
    
    .offer-card.side {
        height: 190px;
    }
    
    .offer-card.middle:hover {
        transform: translateY(6px) scale(1.05);
    }
    
    .offer-image {
        height: 95px;
    }
    
    .offer-card.middle .offer-image {
        height: 95px;
    }
    
    /* SMALLER TEXT on small mobile */
    .offer-title {
        font-size: 12px;
    }
    
    .offer-description {
        font-size: 10px;
    }
    
    .offer-amount {
        font-size: 12px;
    }
    
    .offer-rating {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    /* Stats Responsive */
    .stats-section {
        padding: 20px 0 !important;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    /* WIDER CARDS & SMALLER TEXT on very small screens */
    .offers-container {
        padding: 0 6px;
        gap: 6px;
    }
    
    .offer-card {
        flex: 1;
        width: 32%;
        min-width: 0;
        padding: 8px;
    }
    
    .offer-card.middle {
        height: 190px;
        transform: translateY(4px);
    }
    
    .offer-card.side {
        height: 160px;
    }
    
    .offer-card.middle:hover {
        transform: translateY(4px) scale(1.05);
    }
    
    .offer-image {
        height: 70px;
        margin-bottom: 8px;
    }
    
    .offer-card.middle .offer-image {
        height: 90px;
    }
    
    /* SMALLER TEXT on very small screens */
    .offer-title {
        font-size: 11px;
    }
    
    .offer-description {
        font-size: 9px;
    }
    
    .offer-amount {
        font-size: 11px;
    }
    
    .offer-rating {
        font-size: 9px;
    }
}

@media (max-width: 350px) {
    /* Minimum size but still fit 3 cards */
    .offers-container {
        padding: 0 4px;
        gap: 4px;
    }
    
    .offer-card {
        flex: 1;
        width: 32%;
        min-width: 0;
        padding: 6px;
    }
    
    .offer-card.middle {
        height: 170px;
        transform: translateY(2px);
    }
    
    .offer-card.side {
        height: 150px;
    }
    
    .offer-card.middle:hover {
        transform: translateY(2px) scale(1.05);
    }
    
    .offer-image {
        height: 65px;
        margin-bottom: 6px;
    }
    
    .offer-card.middle .offer-image {
        height: 85px;
    }
    
    /* SMALLEST TEXT sizes */
    .offer-title {
        font-size: 10px;
    }
    
    .offer-description {
        font-size: 8px;
        line-height: 1.2;
    }
    
    .offer-amount,
    .offer-rating {
        font-size: 9px;
    }
}
.withdraw-section {
  font-family: Inter, sans-serif;
  /* Removed background-color: #f5f7fa; */
  padding: 20px;
}

.withdraw-section .withdraw-card {
  border-radius: 10px;
  padding: 15px;
  color: white;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease, border 0.3s ease, transform 0.3s ease;
  cursor: default; /* Change cursor to default */
}

.withdraw-section .withdraw-card:hover {
  border: 1px solid #003399 !important;
  box-shadow: 0 0 15px 3px rgba(0, 51, 153, 0.7) !important;
  transform: translateY(-5px);
}

.withdraw-section .withdraw-card img {
  height: 64px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.withdraw-section .pagetitle {
  margin-bottom: 20px;
}

.withdraw-section .pagetitle h1 {
  font-weight: 700;
}

@media (max-width: 576px) {
  .withdraw-section .withdraw-card {
    min-height: 110px;
  }
}
/* Gaming Section - Text on RIGHT, Slideshow on LEFT */
.gaming-section {
  padding: 20px;
}

.gaming-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Side by Side Layout for 1200px and above - TEXT ON RIGHT */
@media (min-width: 1200px) {
  .gaming-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  /* Slideshow stays on LEFT (default order) */
  .gaming-content {
    flex: 1;
    order: 1;
  }
  
  /* Header moves to RIGHT */
  .gaming-header {
    flex: 0 0 380px;
    text-align: left;
    margin-bottom: 0;
    padding-top: 30px;
    padding-left: 40px; /* Added left padding for spacing */
    order: 2; /* Force header to be on the right */
  }
}

/* Header Styles */
.gaming-header h2 {
  color:#05cf0b;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.gaming-header p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.gaming-count {
  color: #00ff88 !important;
  font-weight: 600;
  font-size: 1.2rem !important;
  margin-top: 20px;
  display: block;
}

/* Slideshow Container - LEFT SIDE */
.gaming-content {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: transparent;
}

.gaming-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(16, 23, 40, 1) 0%, 
    rgba(16, 23, 40, 0.8) 5%, 
    transparent 20%, 
    transparent 80%, 
    rgba(16, 23, 40, 0.8) 95%, 
    rgba(16, 23, 40, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

.gaming-track {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  animation: gamingSlideLeft 40s linear infinite;
  gap: 15px;
  padding: 0 15px;
  align-items: center;
}



/* Game Card Styles */
.gaming-card {
  flex: 0 0 140px;
  background: #1e2233;
  border: 1px solid #0055ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 85, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.gaming-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 85, 255, 0.6);
  border-color: #00aaff;
  z-index: 10;
}

.gaming-image {
  position: relative;
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.gaming-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
}

.gaming-platform-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(16, 19, 34, 0.9);
  color: rgb(246, 246, 246);
  font-size: 10px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.gaming-info {
  padding: 8px;
  text-align: left;
}

.gaming-info h3 {
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gaming-info p {
  color: #8a91b3;
  font-size: 10px;
  margin: 3px 0;
}

.gaming-price {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #00ff80;
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
  text-shadow: 0 0 8px rgba(0, 255, 128, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .gaming-header {
    text-align: center;
    margin-bottom: 30px;
    padding-left: 0 !important; /* Remove left padding on mobile */
  }
  
  /* Reset order for mobile */
  .gaming-content {
    order: 2;
  }
  
  .gaming-header {
    order: 1;
  }
}

@media (max-width: 768px) {
  .gaming-content {
    height: 150px;
  }
  
  .gaming-card {
    flex: 0 0 120px;
  }
  
  .gaming-image {
    height: 75px;
    padding: 6px;
  }
  
  .gaming-header h2 {
    font-size: 2rem;
  }
  
  .gaming-header p {
    font-size: 1rem;
  }
  
  .gaming-price {
    font-size: 12px;
  }
  
  .gaming-info h3 {
    font-size: 11px;
  }
  
  .gaming-info p {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .gaming-content {
    height: 140px;
  }
  
  .gaming-card {
    flex: 0 0 110px;
  }
  
  .gaming-image {
    height: 70px;
    padding: 5px;
  }
  
  .gaming-info {
    padding: 6px;
  }
  
  .gaming-info h3 {
    font-size: 10px;
  }
  
  .gaming-info p {
    font-size: 8px;
  }
  
  .gaming-price {
    font-size: 11px;
  }
  
  .gaming-header h2 {
    font-size: 1.8rem;
  }
  
  .gaming-track {
    gap: 12px;
    padding: 0 12px;
  }
  
  .gaming-platform-badge {
    top: 6px;
    right: 6px;
    font-size: 9px;
    padding: 4px;
  }
}
/* task and offers section */
/* App Offers Section - Slideshow on LEFT, Text on RIGHT */
.app-offers-section {
  padding: 20px;
}

.app-offers-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Side by Side Layout for 1200px and above - REVERSED ORDER */
@media (min-width: 1200px) {
  .app-offers-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  /* Slideshow on LEFT */
  .app-offers-content {
    flex: 1;
    order: 1; /* Force slideshow to be first (left) */
  }
  
  /* Header on RIGHT */
  .app-offers-header {
    flex: 0 0 380px;
    text-align: left;
    margin-bottom: 0;
    padding-top: 30px;
    padding-left: 40px; /* Changed from padding-right to padding-left */
    order: 2; /* Force header to be second (right) */
  }
}

/* Header Styles */
.app-offers-header h2 {
  color:#05cf0b;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.app-offers-header p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.app-offers-count {
  color: #00ff88 !important;
  font-weight: 600;
  font-size: 1.2rem !important;
  margin-top: 20px;
  display: block;
}

/* Slideshow Container - LEFT SIDE */
.app-offers-content {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: transparent;
}

.app-offers-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(16, 23, 40, 1) 0%, 
    rgba(16, 23, 40, 0.8) 5%, 
    transparent 20%, 
    transparent 80%, 
    rgba(16, 23, 40, 0.8) 95%, 
    rgba(16, 23, 40, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

.app-offers-track {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  animation: appOffersSlideRight 40s linear infinite; /* Changed to SlideRight */
  gap: 15px;
  padding: 0 15px;
  align-items: center;
}

/* App Offer Card Styles */
.app-offer-card {
  flex: 0 0 140px;
  background: #1e2233;
  border: 1px solid #0055ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 85, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.app-offer-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 85, 255, 0.6);
  border-color: #00aaff;
  z-index: 10;
}

.app-offer-image {
  position: relative;
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.app-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
}

.app-offer-platform-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(16, 19, 34, 0.9);
  color: rgb(246, 246, 246);
  font-size: 10px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.app-offer-info {
  padding: 8px;
  text-align: left;
}

.app-offer-info h3 {
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-offer-info p {
  color: #8a91b3;
  font-size: 10px;
  margin: 3px 0;
}

.app-offer-price {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #00ff80;
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
  text-shadow: 0 0 8px rgba(0, 255, 128, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .app-offers-header {
    text-align: center;
    margin-bottom: 30px;
    padding-left: 0 !important; /* Remove left padding on mobile */
  }
  
  /* Reset order for mobile */
  .app-offers-content {
    order: 2;
  }
  
  .app-offers-header {
    order: 1;
  }
}

@media (max-width: 768px) {
  .app-offers-content {
    height: 150px;
  }
  
  .app-offer-card {
    flex: 0 0 120px;
  }
  
  .app-offer-image {
    height: 75px;
    padding: 6px;
  }
  
  .app-offers-header h2 {
    font-size: 2rem;
  }
  
  .app-offers-header p {
    font-size: 1rem;
  }
  
  .app-offer-price {
    font-size: 12px;
  }
  
  .app-offer-info h3 {
    font-size: 11px;
  }
  
  .app-offer-info p {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .app-offers-content {
    height: 140px;
  }
  
  .app-offer-card {
    flex: 0 0 110px;
  }
  
  .app-offer-image {
    height: 70px;
    padding: 5px;
  }
  
  .app-offer-info {
    padding: 6px;
  }
  
  .app-offer-info h3 {
    font-size: 10px;
  }
  
  .app-offer-info p {
    font-size: 8px;
  }
  
  .app-offer-price {
    font-size: 11px;
  }
  
  .app-offers-header h2 {
    font-size: 1.8rem;
  }
  
  .app-offers-track {
    gap: 12px;
    padding: 0 12px;
  }
  
  .app-offer-platform-badge {
    top: 6px;
    right: 6px;
    font-size: 9px;
    padding: 4px;
  }
}



   .withdraw-section {
        font-family: Inter, sans-serif;
        background: transparent;
    }

    .withdraw-section .withdraw-card {
        border-radius: 12px;
        padding: 20px 15px;
        color: white;
        text-align: center;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .withdraw-section .withdraw-card:hover {
        border: 2px solid #05cf0b !important;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(5, 207, 11, 0.25);
    }

    .withdraw-section .withdraw-card img {
        height: 64px;
        max-width: 100%;
        object-fit: contain;
        margin-bottom: 12px;
    }

    @media (max-width: 768px) {
        .withdraw-section {
            padding: 30px 0;
        }
        
        .withdraw-section .withdraw-card {
            min-height: 120px;
            padding: 15px 10px;
        }
        
        .withdraw-section .withdraw-card img {
            height: 56px;
            margin-bottom: 10px;
        }
        
        .withdraw-section .withdraw-card h6 {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .withdraw-section .withdraw-card {
            min-height: 110px;
        }
        
        .withdraw-section .withdraw-card img {
            height: 48px;
        }
    }







/* survey section */
/* Survey Section - Fixed Non-Shrinking Layout with Proper Alignment */
.survey-section {
    padding: 40px 0;
    background: #101728;
    position: relative;
}

.survey-layout-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* Desktop: side by side */
@media (min-width: 1200px) {
    .survey-layout-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .survey-text-side {
        flex: 1;
        text-align: left;
        padding-right: 40px;
        min-width: 0;
    }
    
    .survey-content-side {
        flex: 0 0 auto;
        width: 420px; /* Slightly narrower for better balance */
        max-width: 100%;
    }
}

/* Mobile: stacked */
@media (max-width: 1199px) {
    .survey-layout-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .survey-text-side {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .survey-content-side {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Text Styling */
.survey-title {
    color:#05cf0b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.survey-description {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.survey-timing {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.survey-reward {
    color:  #00ff88 !important;
    font-weight: 600;
    font-size: 1.2rem !important;
    margin-top: 20px;
    display: block;
}

/* Fixed Container - Won't Shrink */
.survey-fixed-container {
    width: 100%;
    min-width: 320px;
}

/* Survey Card - Fixed with Better Alignment */
.survey-card-fixed {
    width: 100%;
    margin-bottom: 20px;
}

.survey-card-fixed .card {
    background: rgba(30, 34, 51, 0.8) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    min-height: 200px; /* Taller for better spacing */
    transition: all 0.3s ease;
}

.survey-card-fixed .card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Survey Question Title */
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: white !important;
    margin-bottom: 25px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* Survey Options Grid - Proper Alignment */
.survey-options-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.survey-option {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4px;
}

.option-label {
    color: #8a91b3;
    font-size: 15px;
    font-weight: 500;
    min-width: 30px;
    white-space: nowrap;
}

.option-percentage {
    color: #8a91b3;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.option-progress {
    width: 100%;
}

.option-progress .progress {
    background-color: #2d3a5a !important;
    border-radius: 8px !important;
    width: 100%;
    height: 10px !important;
    overflow: hidden;
}

.option-progress .progress-bar {
    border-radius: 8px;
    transition: width 0.6s ease;
}

.option-progress .bg-success {
    background-color: #00a500 !important;
    background-image: linear-gradient(90deg, #00a500, #00ff88) !important;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.option-progress .bg-secondary {
    background-color: #4a5568 !important;
    background-image: linear-gradient(90deg, #4a5568, #718096) !important;
}

/* Time Cards - Fixed layout */
.time-cards-fixed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.time-card-item {
    width: 100%;
    min-width: 0;
}

.time-card-item .card {
    background: rgba(30, 34, 51, 0.8) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    min-height: 85px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px !important;
}

.time-card-item .card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.time-value {
    color: white;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 8px !important;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stars-container img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(98%) saturate(7492%) hue-rotate(359deg) brightness(103%) contrast(106%);
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .survey-title {
        font-size: 2rem;
    }
    
    .survey-description,
    .survey-timing {
        font-size: 1rem;
    }
    
    .survey-reward {
        font-size: 1.1rem !important;
    }
    
    .survey-content-side {
        max-width: 380px;
    }
    
    .card-title {
        font-size: 17px;
        margin-bottom: 20px !important;
    }
    
    .time-cards-fixed {
        gap: 10px;
    }
    
    .time-card-item .card {
        min-height: 80px;
        padding: 10px !important;
    }
}

@media (max-width: 576px) {
    .survey-title {
        font-size: 1.8rem;
    }
    
    .survey-reward {
        font-size: 1rem !important;
    }
    
    .survey-content-side {
        max-width: 340px;
    }
    
    .survey-fixed-container {
        min-width: 280px;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 18px !important;
    }
    
    .option-label,
    .option-percentage {
        font-size: 14px;
    }
    
    .survey-options-grid {
        gap: 16px;
    }
    
    .time-cards-fixed {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .time-card-item .card {
        min-height: 75px;
    }
    
    .time-value {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .survey-content-side {
        max-width: 300px;
    }
    
    .survey-fixed-container {
        min-width: 260px;
    }
    
    .card-title {
        font-size: 15px;
        margin-bottom: 16px !important;
    }
    
    .option-label,
    .option-percentage {
        font-size: 13px;
    }
    
    .survey-options-grid {
        gap: 14px;
    }
}














/* clicks section */
/* Clicks Section - Matching Survey Layout Pattern */
.clicks-section {
    padding: 40px 0;
    background: #101728;
    position: relative;
}

.clicks-layout-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* Desktop: side by side */
@media (min-width: 1200px) {
    .clicks-layout-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .clicks-text-side {
        flex: 1;
        text-align: left;
        padding-right: 40px;
        min-width: 0;
    }
    
    .clicks-content-side {
        flex: 0 0 auto;
        width: 450px; /* Fixed width to match survey section */
        max-width: 100%;
    }
}

/* Mobile: stacked */
@media (max-width: 1199px) {
    .clicks-layout-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .clicks-text-side {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .clicks-content-side {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Text Styling */
.clicks-title {
    color: #05cf0b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.clicks-description {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.clicks-reward {
    color: #00ff88 !important;
    font-weight: 600;
    font-size: 1.2rem !important;
    margin-top: 20px;
    display: block;
}

.clicks-reward strong {
    color: #ffd700;
}

/* Fixed Container - Won't Shrink */
.clicks-fixed-container {
    width: 100%;
    min-width: 320px;
}

/* Clicks Video Card - Fixed */
.clicks-gif-fixed {
    width: 100%;
    margin-bottom: 20px;
}

.clicks-gif-fixed .card {
    background: rgba(30, 34, 51, 0.8) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    min-height: auto;
    transition: all 0.3s ease;
}

.clicks-gif-fixed .card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Video Wrapper - Updated for 1300x1080 video */
.clicks-gif-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #000; /* Black background for letterboxing if needed */
    aspect-ratio: 1300/1080; /* Maintain exact video aspect ratio */
}

.clicks-gif-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show entire video without cropping */
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Alternative if you want video to fill the container (may crop) */
.clicks-gif-image.cover {
    object-fit: cover;
}

.clicks-gif-wrapper:hover .clicks-gif-image {
    transform: scale(1.02);
}

.clicks-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 15px;
    pointer-events: none; /* Allow clicks to pass through to video controls if needed */
}

.clicks-stats {
    display: flex;
    gap: 20px;
    width: 100%;
}

.click-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.click-stat i {
    color: #ffd700;
    font-size: 16px;
}

/* Clicks Info Grid - Proper Alignment */
.clicks-info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.clicks-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4px;
}

.info-label {
    color: #8a91b3;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.info-value {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.info-progress {
    width: 100%;
}

.info-progress .progress {
    background-color: #2d3a5a !important;
    border-radius: 6px !important;
    width: 100%;
    height: 8px !important;
    overflow: hidden;
}

.info-progress .progress-bar {
    border-radius: 6px;
}

.info-progress .bg-success {
    background-color: #00a500 !important;
    background-image: linear-gradient(90deg, #00a500, #00ff88) !important;
}

.info-progress .bg-warning {
    background-color: #ffc107 !important;
    background-image: linear-gradient(90deg, #ffc107, #ffdb58) !important;
}

.info-progress .bg-info {
    background-color: #17a2b8 !important;
    background-image: linear-gradient(90deg, #17a2b8, #5bc0de) !important;
}

/* Click Action Buttons - Fixed layout */
.click-actions-fixed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.click-action-item {
    width: 100%;
    min-width: 0;
}

.btn-click-action {
    width: 100%;
    background: rgba(30, 34, 51, 0.8) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    color: white !important;
    min-height: 85px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px !important;
    border-radius: 8px !important;
}

.btn-click-action:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
    background: rgba(40, 44, 61, 0.8) !important;
}

.btn-click-action i {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 6px;
}

.btn-click-action span {
    color: white;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 4px;
}

.btn-click-action small {
    color: #8a91b3;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clicks-title {
        font-size: 2rem;
    }
    
    .clicks-description {
        font-size: 1rem;
    }
    
    .clicks-reward {
        font-size: 1.1rem !important;
    }
    
    .clicks-content-side {
        max-width: 400px;
    }
    
    .clicks-gif-wrapper {
        aspect-ratio: 1300/1080; /* Maintain ratio on mobile */
        margin-bottom: 15px;
    }
    
    .click-actions-fixed {
        gap: 10px;
    }
    
    .btn-click-action {
        min-height: 80px;
        padding: 10px !important;
    }
    
    .btn-click-action i {
        font-size: 16px;
    }
    
    .btn-click-action span {
        font-size: 12px;
    }
    
    .btn-click-action small {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .clicks-title {
        font-size: 1.8rem;
    }
    
    .clicks-reward {
        font-size: 1rem !important;
    }
    
    .clicks-content-side {
        max-width: 350px;
    }
    
    .clicks-fixed-container {
        min-width: 280px;
    }
    
    .clicks-gif-wrapper {
        aspect-ratio: 1300/1080;
        margin-bottom: 15px;
    }
    
    .clicks-info-grid {
        gap: 12px;
    }
    
    .info-label,
    .info-value {
        font-size: 13px;
    }
    
    .click-actions-fixed {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .btn-click-action {
        min-height: 75px;
        padding: 8px !important;
    }
}

@media (max-width: 400px) {
    .clicks-content-side {
        max-width: 300px;
    }
    
    .clicks-fixed-container {
        min-width: 260px;
    }
    
    .clicks-gif-wrapper {
        aspect-ratio: 1300/1080;
    }
    
    .info-label,
    .info-value {
        font-size: 12px;
    }
    
    .clicks-info-grid {
        gap: 10px;
    }
}

/* Keep the existing rating section styles as they are */
.offers-rating-container {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

.offers-rating-section {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.clickable-rating {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-rating:hover {
    transform: translateY(-2px);
}

.rating-badge-large {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-excellent {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 600;
}

.rating-excellent i {
    font-size: 1.2rem;
}

.rating-score-large {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccd6f6;
    font-size: 0.95rem;
    font-weight: 500;
}

.score-number {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: bold;
}

.rating-stars-large {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Responsive design for rating section */
@media (max-width: 768px) {
    .offers-rating-container {
        margin-top: 25px;
    }
    
    .offers-rating-section {
        padding: 8px 15px;
    }
    
    .rating-badge-large {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-excellent {
        font-size: 1rem;
        gap: 5px;
        text-align: center;
    }
    
    .rating-score-large {
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .score-number {
        font-size: 1.1rem;
    }
    
    .rating-stars-large {
        font-size: 1rem;
    }
}






















































/* live cashout css */

.live-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ff4757;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

.cashout-list-container {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.cashout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    margin-bottom: 15px;
    background: rgba(23, 34, 59, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(5, 207, 11, 0.3);
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.cashout-item:hover {
   transform: translateX(8px);
    background: rgba(23, 34, 59, 0.9);
    border-color: rgba(5, 207, 11, 0.5);
    box-shadow: 0 10px 30px rgba(5, 207, 11, 0.25);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 70px;
    height: 70px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FIXED FLAG STYLING */
.country-flag {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transform: translate(25%, 25%);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.time-ago {
    font-size: 12px;
    opacity: 0.8;
}

.amount-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* CHANGED: Cashout amount to #00a700 green */
.amount {
    font-weight: 700;
    font-size: 18px;
    color: #00a700; /* Changed to #00a700 green */
    margin-bottom: 4px;
}

.method {
   font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(5, 207, 11, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(5, 207, 11, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.loading-cashouts {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease; /* Added slideUp animation */
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-cashouts {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease; /* Added slideUp animation */
}

/* -------------------------------------------------------
     NEW LAYOUT FROM SCREENSHOT
------------------------------------------------------- */

/* CHANGED: Removed background */
.cashout-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: transparent; /* Changed from #15110d to transparent */
    border-radius: 15px;
    margin: 30px 0;
}

/* LEFT SIDE */
.cashout-left {
    flex: 1;
    text-align: center;
}

/* CHANGED: Bigger logo */
.left-logo {
    width: 500px; /* Increased from 220px */
    margin-bottom: 20px;
}

.waiting-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.waiting-sub {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* CHANGED: Button to #00a700 green */
.btn-start {
    display: inline-block;
    background: #00a700; /* Changed from #ff7c2e to #00a700 */
    color: white;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 167, 0, 0.3); /* Updated shadow color */
}

.btn-start:hover {
    background: #00c200; /* Slightly lighter green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 167, 0, 0.4); /* Updated shadow color */
}

/* RIGHT SIDE PANEL */
.cashout-right {
    flex: 1;
}

.section-header {
    margin-bottom: 25px;
}

/* Make subtitle smaller like screenshot */
.section-subtitle {
    margin-top: -5px;
    opacity: 0.7;
    font-size: 14px;
}

/* Cashout glossy container spacing */
.cashout-list-container {
    margin-top: 10px;
}

/* -------------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------------- */
@media (max-width: 992px) {
    .cashout-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cashout-right {
        width: 100%;
    }

    .cashout-left {
        margin-bottom: 30px;
    }
}

/* Mobile flag adjustments */
@media (max-width: 768px) {
    .user-avatar-container {
        width: 50px;
        height: 50px;
    }
    
    .country-flag {
        width: 16px;
        height: 12px;
        transform: translate(20%, 20%);
    }
    
    /* CHANGED: Smaller logo on mobile */
    .left-logo {
        width: 350px;
    }
}
/* faq css */


























/* reviews section css */
.home-reviews-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0c1427 0%, #1a243f 100%);
}

.home-reviews-title {
    text-align: center;
    color: #00ff88;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Home Page Compact Header - No Box */
.home-reviews-compact-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}

.home-compact-rating-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    padding: 0;
}

.home-compact-rating-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ff88;
}

.home-compact-rating-stars {
    color: #ffd700;
    font-size: 1rem;
}

.home-compact-rating-separator {
    color: #8892b0;
    font-weight: 300;
}

.home-compact-rating-count {
    color: #8892b0;
    font-size: 0.9rem;
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-review-card {
    background: rgba(23, 34, 59, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.home-review-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.home-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #667eea);
}

.home-review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-shrink: 0;
    gap: 15px;
}

.home-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ff88;
    flex-shrink: 0;
}

.home-review-user-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.home-review-username {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
    width: 100%;
}

.home-review-verified-badge {
    color: #00ff88;
    font-size: 14px;
    flex-shrink: 0;
}

.home-review-country {
    color: #8892b0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    min-height: 16px;
    max-width: 100%;
    width: 100%;
}

.home-review-country-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.home-review-country-globe {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8892b0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-review-country-globe i {
    font-size: 12px;
    color: #00ff88;
    flex-shrink: 0;
}

.home-review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.home-star-filled {
    color: #ffd700;
    font-size: 16px;
}

.home-star-empty {
    color: #555;
    font-size: 16px;
}

.home-review-text {
    color: #ccd6f6;
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 15px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-review-date {
    color: #8892b0;
    font-size: 0.8rem;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    flex-shrink: 0;
}

.home-no-reviews {
    text-align: center;
    color: #8892b0;
    padding: 40px;
    grid-column: 1 / -1;
}

/* Responsive design */
@media (max-width: 1200px) {
    .home-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .home-reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        max-width: 400px;
    }
    
    .home-reviews-title {
        font-size: 2rem;
    }
    
    .home-review-card {
        height: auto;
        min-height: 250px;
    }
    
    .home-review-header {
        align-items: flex-start;
    }
    
    .home-review-country {
        font-size: 0.85rem;
    }
    
    .home-review-user-info {
        max-width: calc(100% - 65px);
    }
    
    /* Responsive design for home page header */
    .home-compact-rating-section {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .home-compact-rating-number {
        font-size: 1.1rem;
    }
    
    .home-compact-rating-stars {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .home-compact-rating-section {
        flex-direction: column;
        gap: 5px;
    }
    
    .home-compact-rating-separator {
        display: none;
    }
}






        /* Accordion Styling faq */
        .accordion-item {
            border-radius: 12px !important;
            overflow: hidden;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .faq-item {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .accordion-button {
            background-color: #1a2d4d !important;
            color: white !important;
            border: none;
            padding: 1.25rem 1.5rem;
            border-radius: 12px !important;
            min-height: 70px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(5, 207, 11, 0.15) !important;
            border-bottom-left-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
            box-shadow: 0 2px 8px rgba(5, 207, 11, 0.1);
        }

        .accordion-button:hover {
            transform: translateY(-2px);
        }

        .accordion-button::after {
            filter: invert(1) brightness(2);
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .accordion-body {
            background-color: #1a2d4d;
            color: white;
            padding: 1.5rem !important;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Equal Height Boxes */
        .earning-tier-box,
        .revenue-box,
        .stat-box,
        .earning-box {
            min-height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .earning-tier-box:hover,
        .revenue-box:hover,
        .stat-box:hover,
        .earning-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Distribution Container */
        .distribution-container {
            margin-top: 1rem;
        }

        .distribution-item {
            margin-bottom: 1.25rem;
        }

        .distribution-label {
            min-width: 150px;
            flex-shrink: 0;
        }

        .distribution-label .d-flex {
            align-items: center;
        }

        .distribution-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .distribution-item:nth-child(1) .distribution-color {
            background-color: #05cf0b;
        }

        .distribution-item:nth-child(2) .distribution-color {
            background-color: #ffc107;
        }

        .distribution-item:nth-child(3) .distribution-color {
            background-color: #17a2b8;
        }

        .distribution-item:nth-child(4) .distribution-color {
            background-color: #6c757d;
        }

        /* Progress Bar */
        .progress {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            height: 12px !important;
        }

        .progress-bar {
            border-radius: 8px;
            color: white;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .bg-success { background-color: #05cf0b !important; }
        .bg-warning { background-color: #ffc107 !important; }
        .bg-info { background-color: #17a2b8 !important; }
        .bg-secondary { background-color: #6c757d !important; }

        /* Text Colors */
        .text-success { color: #05cf0b !important; }
        .text-warning { color: #ffc107 !important; }
        .text-info { color: #17a2b8 !important; }
        .text-danger { color: #ff6b6b !important; }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .accordion-button {
                min-height: 65px;
                padding: 1rem 1.25rem;
            }
            
            .accordion-body {
                padding: 1.25rem !important;
            }
            
            .distribution-label {
                min-width: 130px;
            }
        }

        @media (max-width: 768px) {
            .main {
                padding: 0.75rem;
            }
            
            .accordion-button {
                min-height: 60px;
                padding: 0.875rem 1rem;
                font-size: 0.95rem;
            }
            
            .accordion-body {
                padding: 1rem !important;
            }
            
            .distribution-label {
                min-width: 120px;
            }
            
            .earning-tier-box,
            .revenue-box,
            .stat-box,
            .earning-box {
                min-height: 140px;
                margin-bottom: 1rem;
            }
            
            .row.g-3 > [class*="col-"] {
                margin-bottom: 0.75rem;
            }
        }

        @media (max-width: 576px) {
            .distribution-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .distribution-label {
                min-width: 100%;
                margin-bottom: 0.5rem;
            }
            
            .flex-grow-1 {
                width: 100%;
                margin-left: 0 !important;
            }
            
            .accordion-button {
                font-size: 0.9rem;
            }
            
            .accordion-button h6 {
                font-size: 0.9rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .slide-down {
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from { 
                max-height: 0;
                opacity: 0;
            }
            to { 
                max-height: 1000px;
                opacity: 1;
            }
        }









/* footer css */

footer {
    background-color: #17223b !important;
    color: #ccc;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}
@keyframes waveFloat {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  50% { transform: translateY(-10px); }
  75% { transform: translateY(-6px); }
}

/* === Social Icons Animation & Hover === */
.social-icon {
  display: inline-block;
  font-size: 26px;
  margin: 0 12px;
  animation: waveFloat 4.5s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

/* Staggered Animation Delays (Wave Effect) */
.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.4s; }
.social-icon:nth-child(3) { animation-delay: 0.8s; }
.social-icon:nth-child(4) { animation-delay: 1.2s; }
.social-icon:nth-child(5) { animation-delay: 1.6s; }
.social-icon:nth-child(6) { animation-delay: 2s; }
/* 🎨 Brand Colors */
.social-icon.facebook  { color: #1877F2; }  /* Facebook Blue */
.social-icon.twitter   { color: #1DA1F2; }  /* Twitter (X) Blue */
.social-icon.instagram { color: #E4405F; }  /* Instagram Pink */
.social-icon.youtube   { color: #FF0000; }  /* YouTube Red */
.social-icon.telegram  { color: #0088cc; }  /* Telegram Blue */
.social-icon.whatsapp  { color: #25D366; }  /* WhatsApp Green */

.social-icon:hover {
  transform: translateY(-12px) scale(1.4);
  opacity: 1;
  animation-play-state: paused;
  filter: brightness(1.3) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  z-index: 10;
}

/* Add glow effect on hover */
.social-icon.facebook:hover  { 
  filter: brightness(1.4) drop-shadow(0 8px 25px rgba(24, 119, 242, 0.4));
  text-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

.social-icon.twitter:hover   { 
  filter: brightness(1.4) drop-shadow(0 8px 25px rgba(29, 161, 242, 0.4));
  text-shadow: 0 0 15px rgba(29, 161, 242, 0.6);
}

.social-icon.instagram:hover { 
  filter: brightness(1.4) drop-shadow(0 8px 25px rgba(228, 64, 95, 0.4));
  text-shadow: 0 0 15px rgba(228, 64, 95, 0.6);
}

.social-icon.youtube:hover   { 
  filter: brightness(1.4) drop-shadow(0 8px 25px rgba(255, 0, 0, 0.4));
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.social-icon.telegram:hover  { 
  filter: brightness(1.4) drop-shadow(0 8px 25px rgba(0, 136, 204, 0.4));
  text-shadow: 0 0 15px rgba(0, 136, 204, 0.6);
}

.social-icon.whatsapp:hover  { 
  filter: brightness(1.4) drop-shadow(0 8px 25px rgba(37, 211, 102, 0.4));
  text-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

		footer {
		  background-color: #101728;
		  color: #ccc;
		  padding: 60px 0 20px;
		  font-family: 'Poppins', sans-serif;
		}

		.footer-content {
		  display: flex;
		  flex-wrap: wrap;
		  justify-content: space-between;
		  align-items: flex-start;
		  max-width: 1200px;
		  margin: auto;
		  gap: 30px;
		}

		.footer-left {
		  flex: 1 1 250px;
		}

		.brand-row {
		  display: flex;
		  align-items: center;
		  gap: 15px;
		  margin-bottom: 15px;
		}

		.footer-logo {
		  width: 50px;
		  height: 50px;
		}

		.footer-left h3 {
		  font-size: 24px;
		  font-weight: 800;
		  color: #fff;
		  margin: 0;
		}

		.footer-left p {
		  color: #aaa;
		  line-height: 1.7;
		  font-size: 15px;
		  margin-bottom: 20px;
		}

		.social-icons {
		  text-align: left;
		}

		.footer-columns-group {
		  display: flex;
		  flex: 2;
		  justify-content: space-between;
		  flex-wrap: wrap;
		  gap: 30px;
		}

		.footer-column {
		  min-width: 160px;
		}

		.footer-column h3 {
    color: #00a900 !important;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 800 !important; /* Extra bold */
}

		.footer-column h3::after {
		  content: '';
		  position: absolute;
		  left: 0;
		  bottom: -6px;
		  width: 35px;
		  height: 2px;
		  background-color: #003399;
		  border-radius: 2px;
		}

		.footer-links {
		  list-style: none;
		  padding: 0;
		  margin: 0;
		}

		.footer-links li {
		  margin-bottom: 10px;
		}

		.footer-links a {
		  color: #ccc;
		  text-decoration: none;
		  transition: 0.3s;
		}

		.footer-links a:hover {
		  color: #003399;
		  text-decoration: underline;
		}

		/* Footer Bottom */
		.footer-bottom {
		  text-align: center;
		  border-top: 1px solid #222;
		  margin-top: 40px;
		  padding-top: 15px;
		  font-size: 14px;
		  color: #999;
		}

		/* Mobile container for brand and social */
		.mobile-brand-container {
		  display: none;
		}

		/* === CENTERED CONTENT for 1200px and below === */
		@media (max-width: 1200px) {
		  footer {
			padding: 30px 15px 15px;
		  }
		  
		  /* Center the entire footer content */
		  .footer-content {
			flex-direction: column;
			align-items: center;
			text-align: center;
			gap: 30px;
		  }

		  /* Hide original left section */
		  .footer-left {
			display: none;
		  }

		  /* Show and center mobile brand container */
		  .mobile-brand-container {
			display: block;
			width: 100%;
			text-align: center;
			margin: 0;
		  }

		  .mobile-brand-row {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 12px;
			margin-bottom: 15px;
		  }

		  .mobile-brand-logo {
			width: 40px;
			height: 40px;
		  }

		  .mobile-brand-container h3 {
			font-size: 28px;
			font-weight: 800;
			color: #fff;
			margin: 0;
		  }

		  .mobile-brand-container p {
			color: #aaa;
			font-size: 16px;
			line-height: 1.5;
			margin-bottom: 20px;
			text-align: center;
			max-width: 500px;
			margin-left: auto;
			margin-right: auto;
		  }

		  .mobile-brand-container .social-icons {
			text-align: center;
			margin-top: 15px;
		  }

		  /* ALWAYS MAINTAIN 3 ROWS for navigation columns */
		  .footer-columns-group {
			width: 100%;
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			gap: 20px;
			margin-bottom: 20px;
			flex-wrap: nowrap; /* Prevent wrapping to new lines */
		  }

		  .footer-column {
			text-align: center;
			flex: 1;
			min-width: 0; /* Allow columns to shrink equally */
			flex-basis: calc(33.333% - 20px); /* Force 3 equal columns */
		  }

		  .footer-column h3 {
			font-size: 16px;
			margin-bottom: 12px;
			white-space: nowrap;
		  }

		  .footer-column h3::after {
			left: 50%;
			transform: translateX(-50%);
		  }

		  .footer-links {
			align-items: center;
		  }

		  .footer-links li {
			margin-bottom: 8px;
		  }

		  .footer-links a {
			font-size: 14px;
			white-space: nowrap;
		  }

		  .footer-bottom {
			margin-top: 20px;
			padding-top: 15px;
			padding-bottom: 10px;
		  }
		}

		/* === Desktop Styles (above 1200px) - Original Layout === */
		@media (min-width: 1201px) {
		  footer {
		
			transition: margin-left 0.3s ease;
		  }

		  /* Hide mobile container on desktop */
		  .mobile-brand-container {
			display: none;
		  }

		  /* Show original left section */
		  .footer-left {
			display: block;
		  }

		  footer, 
		  .footer-content,
		  .footer-left p,
		  .footer-links a,
		  .footer-bottom {
			font-size: inherit;
		  }
		}

		/* Additional optimization for very small screens while maintaining 3 columns */
		@media (max-width: 480px) {
		  .footer-columns-group {
			gap: 10px; /* Reduce gap on very small screens */
		  }

		  .footer-column h3 {
			font-size: 14px;
		  }

		  .footer-links a {
			font-size: 12px;
		  }

		  .mobile-brand-container h3 {
			font-size: 22px;
		  }

		  .mobile-brand-container p {
			font-size: 14px;
		  }

		  .social-icon {
			font-size: 27px;
			margin: 0 6px;
		  }
		}

		/* Extreme small screen optimization while keeping 3 columns */
		@media (max-width: 360px) {
		  .footer-columns-group {
			gap: 5px;
		  }

		  .footer-column h3 {
			font-size: 13px;
		  }

		  .footer-links a {
			font-size: 11px;
		  }

		  .social-icon {
			font-size: 18px;
			margin: 0 4px;
		  }
		}

		/* Prevent footer font size from shrinking on smaller screens */
		footer,
		.footer-content,
		.footer-column h3,
		.footer-links a,
		.footer-left p,
		.footer-bottom {
		  font-size: 14px !important;
		  line-height: 1.6 !important;
		}