:root {
    --primary: #9945FF;
    --secondary: #14F195;
    --accent: #00FFD1;
    --dark: #0A0A0A;
    --darker: #050505;
    --light: #FFFFFF;
    --gray: #1A1A1A;
    --gray-light: #2A2A2A;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO WITH WHITE TEXT ===== */
.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    color: #FFFFFF;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cubest Monospace', monospace;
}


.logo-textf {
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Cubest Monospace', monospace;
        font-size: 0.8em;
    opacity: 0.8;
}




@font-face {
    font-family: 'Cubest Monospace';
    src: url('./fonts/Cubest-Medium.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        gap: 0.3rem;
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .logo {
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-wallet {
    background: linear-gradient(90deg,#c766ef,#7928d2 51.04%,#2b0c52);
    border: 2px solid #320F5D !important;
    padding: 0.5rem 1.5rem;
    border-radius: 12px !important;
    color: var(--light) !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 0 1px #320F5D !important;
}

/* Mobile */
@media (max-width: 768px) {
    .btn-wallet {
        border: 2px solid #320F5D !important !important;
        box-shadow: 0 0 0 1px #320F5D !important;
    }
}

.btn-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-orbit {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    filter: blur(60px);
    opacity: 0.1;
}

.gradient-orbit:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
}

.gradient-orbit:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-box {
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    margin-left: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg,#c766ef,#7928d2 51.04%,#2b0c52);
    color: var(--light);
    /* Exact border from your working button */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 9999px !important;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    
    /* Rest of your styles */
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    font-family: monospace;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 1rem 1.125rem;
    width: 60%;
}

/* Mobile */
@media (max-width: 768px) {
    .btn-primary {
        width: 100% !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gray-light) !important;
    color: var(--light);
    /* Same styling as the other button */
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    font-family: monospace;
    text-align: center;
    text-transform: uppercase;
    border-radius: 9999px !important; /* Full rounded ends */
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 1rem 1.125rem;
    width: 40%;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .btn-secondary {
        width: 100% !important;
        border: 2px solid var(--gray-light) !important;
    }
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    border-color: var(--primary);
}

/* Rewards Card */
.rewards-card {
    background: transparent;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reward-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reward-info {
    flex: 1;
}

.user-name {
    font-weight: 200;
    margin-bottom: 0.25rem;
}

.reward-task {
    font-size: 0.875rem;
    color: var(--secondary);
}

.reward-amount {
    font-weight: 400;
    color: var(--secondary);
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.total-rewards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modern Tasks Section */
.pats-bs-tasks-modern {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pats-bs-tasks-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Featured Task */
.pats-bs-featured-task {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.pats-bs-featured-task::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(153,69,255,0.1) 0%, rgba(20,241,149,0.05) 50%, transparent 70%);
    animation: pats-bs-rotate 20s linear infinite;
}

@keyframes pats-bs-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pats-bs-task-meta {
    display: flex;
    gap: 0.1rem;
    margin-bottom: 1.5rem;
}

.pats-bs-task-category {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pats-bs-task-difficulty {
    background: rgba(20, 241, 149, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(20, 241, 149, 0.3);
}

.pats-bs-task-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pats-bs-task-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pats-bs-task-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pats-bs-stat {
    text-align: center;
}

.pats-bs-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pats-bs-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pats-bs-btn-featured {
    background: var(--gradient);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.pats-bs-btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(153, 69, 255, 0.4);
}

.pats-bs-btn-sparkle {
    animation: pats-bs-sparkle 2s infinite;
}

@keyframes pats-bs-sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Visual Card */
.pats-bs-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.pats-bs-platform-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pats-bs-platform-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pats-bs-completion-bar {
    text-align: center;
}

.pats-bs-progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pats-bs-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.pats-bs-progress-fill {
    width: 75%;
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    animation: pats-bs-progress 2s ease-in-out;
}

@keyframes pats-bs-progress {
    0% { width: 0%; }
    100% { width: 75%; }
}

/* Modern Task Grid */
.pats-bs-tasks-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pats-bs-task-item-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pats-bs-task-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pats-bs-task-item-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
}

.pats-bs-task-item-modern:hover .pats-bs-task-glow {
    opacity: 1;
}

.pats-bs-task-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.pats-bs-task-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pats-bs-task-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: end;
}

.pats-bs-badge-hot {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pats-bs-badge-reward {
    background: var(--gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pats-bs-badge-passive {
    background: rgba(20, 241, 149, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(20, 241, 149, 0.3);
}

.pats-bs-badge-exclusive {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pats-bs-badge-new {
    background: linear-gradient(45deg, #00ffd1, #0099ff);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pats-bs-task-body-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.pats-bs-task-body-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pats-bs-reward-display {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.pats-bs-sol-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.pats-bs-reward-tag {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pats-bs-task-footer-modern {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pats-bs-task-meta-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pats-bs-meta-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pats-bs-btn-task-modern {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pats-bs-btn-task-modern:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.pats-bs-btn-arrow {
    transition: transform 0.3s ease;
}

.pats-bs-btn-task-modern:hover .pats-bs-btn-arrow {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 968px) {
    .pats-bs-featured-task {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pats-bs-task-stats {
        justify-content: center;
    }
    
    .pats-bs-tasks-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .pats-bs-task-title {
        font-size: 2rem;
    }
    
    .pats-bs-task-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pats-bs-task-footer-modern {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .pats-bs-btn-task-modern {
        justify-content: center;
    }
}

//* Modern Claim Section */
.claim-modern {
    background: transparent;
    padding: 80px 0;
}

.modern-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c766ef, #7928d2, #2b0c52);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(199, 102, 239, 0.5);
    box-shadow: 0 20px 40px rgba(199, 102, 239, 0.2);
}

.step-visual {
    position: relative;
    margin-bottom: 20px;
}

.step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #c766ef, #7928d2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    z-index: 2;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-gif {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.step-content-modern h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
}

.step-content-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step-features span {
    background: rgba(199, 102, 239, 0.2);
    color: #c766ef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    border: 1px solid rgba(199, 102, 239, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
}

/* Security Section */
.security {
    background: transparent;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.security-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.security-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.security-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: #000;
    border: 2px solid rgba(199, 102, 239, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Partners Section - Logo Only */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.2);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
    filter: none;
    transform: scale(1.1);
}

/* EASY SIZE CHANGES - Just modify the values below */

/* Logo Size */
.partner-icon {
    width: 120px; /* Change this for logo width */
    height: 60px; /* Change this for logo height */
}

/* Card Size */
.partner-card {
    min-height: 60px; /* Change this for card height */
    padding: 2rem; /* Change this for card inner spacing */
}

/* Grid Layout */
.partners-grid {
    gap: 2rem; /* Change this for space between cards */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Change 150px for minimum card width */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .process-line {
        display: none;
    }
    
    .step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .step-content {
        padding: 1rem !important;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Particles Background */
#pats-bs-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    margin-bottom: auto;
}

/* Floating Crypto Icons */
.pats-bs-floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.pats-bs-crypto-icon {
    position: absolute;
    opacity: 0.1;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pats-bs-floatDown 20s linear infinite;
    filter: blur(0.5px);
}

@keyframes pats-bs-floatDown {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Different animation delays for variety */
.pats-bs-crypto-icon:nth-child(1) { animation-delay: 0s; }
.pats-bs-crypto-icon:nth-child(2) { animation-delay: 2s; }
.pats-bs-crypto-icon:nth-child(3) { animation-delay: 4s; }
.pats-bs-crypto-icon:nth-child(4) { animation-delay: 6s; }
.pats-bs-crypto-icon:nth-child(5) { animation-delay: 8s; }
.pats-bs-crypto-icon:nth-child(6) { animation-delay: 10s; }
.pats-bs-crypto-icon:nth-child(7) { animation-delay: 12s; }
.pats-bs-crypto-icon:nth-child(8) { animation-delay: 14s; }
.pats-bs-crypto-icon:nth-child(9) { animation-delay: 16s; }
.pats-bs-crypto-icon:nth-child(10) { animation-delay: 18s; }
.pats-bs-crypto-icon:nth-child(11) { animation-delay: 1s; }
.pats-bs-crypto-icon:nth-child(12) { animation-delay: 3s; }
.pats-bs-crypto-icon:nth-child(13) { animation-delay: 5s; }
.pats-bs-crypto-icon:nth-child(14) { animation-delay: 7s; }
.pats-bs-crypto-icon:nth-child(15) { animation-delay: 9s; }
.pats-bs-crypto-icon:nth-child(16) { animation-delay: 11s; }
.pats-bs-crypto-icon:nth-child(17) { animation-delay: 13s; }
.pats-bs-crypto-icon:nth-child(18) { animation-delay: 15s; }
.pats-bs-crypto-icon:nth-child(19) { animation-delay: 17s; }
.pats-bs-crypto-icon:nth-child(20) { animation-delay: 19s; }

/* Different sizes for variety */
.pats-bs-crypto-icon:nth-child(odd) {
    width: 30px;
    height: 30px;
}

.pats-bs-crypto-icon:nth-child(even) {
    width: 50px;
    height: 50px;
}

/* Ensure content stays above background */
.hero, .tasks, .claim, .security, .partners {
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.pats-bs-faq {
    background: transparent;
    padding: 100px 0;
}

.pats-bs-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pats-bs-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pats-bs-faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pats-bs-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pats-bs-faq-item:hover {
    border-color: var(--primary);
}

.pats-bs-faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pats-bs-faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
}

.pats-bs-faq-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.pats-bs-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pats-bs-faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
}

.pats-bs-faq-item.pats-bs-active .pats-bs-faq-answer {
    max-height: 200px;
}

.pats-bs-faq-item.pats-bs-active .pats-bs-faq-icon {
    transform: rotate(45deg);
}

.pats-bs-faq-cta {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.1));
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.pats-bs-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pats-bs-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pats-bs-btn-cta {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pats-bs-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
}

/* Footer */
.pats-bs-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0 0.5rem;
}

.pats-bs-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pats-bs-footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pats-bs-footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pats-bs-social-links {
    display: flex;
    gap: 1rem;
}

.pats-bs-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.pats-bs-social-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
}

.pats-bs-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.pats-bs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pats-bs-footer-links li {
    margin-bottom: 0.75rem;
}

.pats-bs-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pats-bs-footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.pats-bs-footer-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pats-bs-stat-item {
    text-align: center;
}

.pats-bs-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.pats-bs-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.pats-bs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pats-bs-footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pats-bs-footer-legal span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .pats-bs-faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pats-bs-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .pats-bs-faq-cta {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pats-bs-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pats-bs-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* Custom step icons */
.step-custom-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Or using background images */
.step-connect {
    background: url('./img/connect-icon.png') center/contain no-repeat;
    width: 40px;
    height: 40px;
}

.step-verify {
    background: url('./img/verify-icon.png') center/contain no-repeat;
    width: 40px;
    height: 40px;
}

.step-claim {
    background: url('https://media.tenor.com/1o3aG6oJPnQAAAAi/kyle-samani-multicoincap.gif') center/contain no-repeat;
    width: 80px;
    height: 80px;
}



.security-img-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.pats-bs-task-img-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}


.pats-bs-task-img-icon1 {
    width: 60px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
}

.pats-bs-task-img-icon2 {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}


.eppats-bs-task-img-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== ADDITIONAL RESPONSIVE BREAKPOINTS ===== */
/* Added to your original CSS without changing any design */

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        margin-bottom: 2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .pats-bs-featured-task {
        padding: 1.5rem;
    }
    
    .pats-bs-task-title {
        font-size: 1.75rem;
    }
    
    .pats-bs-faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1.5rem;
        min-height: 100px;
    }
}

/* Large Phones (481px - 767px) */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }
    

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .pats-bs-featured-task {
        padding: 2.5rem;
    }
    
    .pats-bs-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pats-bs-footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

/* Small Laptops (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        max-width: 1000px;
    }
    
    .nav-container {
        max-width: 1000px;
    }
}

/* iPad Pro Portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-content {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .pats-bs-tasks-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPad Pro Landscape */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero {
        min-height: 90vh;
    }
}

/* iOS Safe Areas */
@supports (padding: max(0px)) {
    .navbar,
    .container,
    .nav-container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .pats-bs-task-img-icon,
    .security-img-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode (already dark, but for consistency) */
@media (prefers-color-scheme: dark) {
    /* Your design is already optimized for dark mode */
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after,
    .btn-primary:hover,
    .btn-secondary:hover,
    .reward-item:hover,
    .security-card:hover,
    .partner-card:hover,
    .pats-bs-task-item-modern:hover {
        transform: none;
    }
    
    /* Ensure touch targets are at least 44px */
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .btn-wallet,
    .pats-bs-btn-featured,
    .pats-bs-btn-task-modern,
    .pats-bs-btn-cta {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
    }
}

/* Orientation Changes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding: 100px 0 40px;
    }
    
    .nav-menu.mobile-active {
        padding: 2rem 0;
    }
}

/* Very Small Screens */
@media (max-width: 260px) {
    .hero-title {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pats-bs-task-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn-wallet,
    .hero-actions,
    .pats-bs-btn-featured,
    .pats-bs-btn-task-modern,
    .pats-bs-btn-cta {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}


/* ===== MOBILE RESPONSIVE FIXES ===== */

/* Mobile Menu Button (Add to HTML) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
}

/* Mobile Menu Active State */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Mobile Breakpoints */
@media (max-width: 768px) {
    /* Hide desktop menu, show mobile button */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Menu Overlay - CENTERED */
    .nav-menu.mobile-active {
        display: flex;
        position: fixed;
        top: 240%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 220px;
        height: auto;
        max-height: 80vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav-menu.mobile-active .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
    
    /* Hero Section Mobile Fixes */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 6rem;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .title-line {
        display: inline;
    }
    
    .highlight-box {
        display: inline-block;
        margin: 0.5rem 0;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Tasks Section Mobile */
    .pats-bs-featured-task {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .pats-bs-task-title {
        font-size: 2rem;
    }
    
    .pats-bs-task-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .pats-bs-tasks-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* FAQ Mobile */
    .pats-bs-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pats-bs-faq-cta {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    /* Partners Grid Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    /* Footer Mobile */
    .pats-bs-footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }
    
    .pats-bs-footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Security Grid Mobile */
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .pats-bs-task-title {
        font-size: 1.75rem;
    }
    
    .pats-bs-task-footer-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pats-bs-btn-task-modern {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .pats-bs-tasks-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pats-bs-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pats-bs-footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .btn-wallet,
    .pats-bs-btn-featured,
    .pats-bs-btn-task-modern {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .nav-link:hover::after,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
}

/* iOS Safe Areas */
@supports (padding: max(0px)) {
    .navbar,
    .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
}

/* ===== HERO SECTION MOBILE FIXES ===== */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
    width: 100%;
    margin-top: 4rem;
}

/* Mobile First Approach */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
        width: 100%;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .title-line {
        display: block;
        width: 100%;
    }
    
    .highlight-box {
        display: inline-block;
        margin: 0.5rem 0 0.5rem 0;
        padding: 0.35rem 1rem;
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
        text-align: center;
        flex: 1;
    }
    
    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        display: block;
    }
    
    .stat-label {
        font-size: 0.8rem;
        display: block;
        margin-top: 0.25rem;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-radius: 12px;
        justify-content: center;
    }
    
    /* Rewards card mobile optimization */
    .rewards-card {
        margin: 0 auto;
        max-width: 400px;
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .rewards-list {
        gap: 0.875rem;
    }
    
    .reward-item {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 70px 0 30px;
    }
    
    .hero-content {
        gap: 2.5rem;
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .highlight-box {
        padding: 0.3rem 0.8rem;
        font-size: 1rem;
        margin: 0.25rem 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        max-width: 260px;
    }
    
    .rewards-card {
        padding: 1.25rem;
        margin: 0 10px;
    }
    
    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
        padding-top: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .rewards-card {
        max-width: 350px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding: 90px 0 30px;
    }
    
    .hero-content {
        gap: 2rem;
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 200px;
    }
}

/* Very Small Screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 240px;
        padding: 1rem 1.25rem;
    }
}

/* Ensure content doesn't overflow */
.hero-text, .hero-visual {
    max-width: 100%;
    overflow: hidden;
}

/* Fix for gradient orbits on mobile */
@media (max-width: 768px) {
    .gradient-orbit:nth-child(1) {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -150px;
    }
    
    .gradient-orbit:nth-child(2) {
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -80px;
    }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    .hero-actions {
        gap: 0.875rem;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-title, .hero-subtitle, .hero-stats, .hero-actions {
        animation: none;
    }
    
    .live-dot, .pulse {
        animation: none;
        opacity: 1;
    }
}

/* ===== HERO STATS MOBILE FIX ===== */

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 0.25rem;
    line-height: 1.3;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat {
        text-align: center;
        min-width: auto;
        padding: 0.5rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2;
    }
    
    /* Specific styling for the enterprise grade text */
    .stat:nth-child(4) .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-weight: 600;
    }
}

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
        max-width: 320px;
    }
    
    .stat {
        padding: 0.25rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat:nth-child(4) .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
}

/* Ensure proper alignment */
@media (max-width: 768px) {
    .hero-stats {
        /* This will create the exact layout you want:
           Top Row: $47.5M+ (left) | $36.3M+ (right)
           Bottom Row: 214K+ (left) | Enterprise Grade Service (right)
        */
    }
}


/* ===== PATS BS TASK STATS MOBILE FIX ===== */

.pats-bs-task-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pats-bs-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.pats-bs-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.2;
}

.pats-bs-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    line-height: 1.3;
}

/* Mobile Layout - Same as hero-stats */
@media (max-width: 768px) {
    .pats-bs-task-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pats-bs-stat {
        text-align: center;
        min-width: auto;
        padding: 0.5rem;
    }
    
    .pats-bs-stat-value {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: var(--secondary);
    }
    
    .pats-bs-stat-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2;
    }
}

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .pats-bs-task-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
        max-width: 320px;
    }
    
    .pats-bs-stat {
        padding: 0.25rem;
    }
    
    .pats-bs-stat-value {
        font-size: 1.2rem;
    }
    
    .pats-bs-stat-label {
        font-size: 0.75rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .pats-bs-task-stats {
        gap: 1.5rem;
    }
    
    .pats-bs-stat-value {
        font-size: 1.4rem;
    }
}

/* For Featured Task Section Specific Adjustments */
@media (max-width: 768px) {
    .pats-bs-featured-task .pats-bs-task-stats {
        justify-content: center;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    /* If you have 3 stats, make the third one span both columns */
    .pats-bs-task-stats .pats-bs-stat:nth-child(3):last-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pats-bs-task-stats .pats-bs-stat:nth-child(3):last-child .pats-bs-stat-label {
        font-size: 0.85rem;
        font-weight: 600;
    }
}

/* Ensure consistency with hero-stats */
@media (max-width: 768px) {
    .hero-stats,
    .pats-bs-task-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-value,
    .pats-bs-stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label,
    .pats-bs-stat-label {
        font-size: 0.8rem;
    }
}


.batalbatal-partners-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.batalbatal-partners-title {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.batalbatal-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.batalbatal-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.batalbatal-logo-image {
    width: auto;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Tablet */
@media (min-width: 640px) {
    .batalbatal-partners-section {
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }
    
    .batalbatal-partners-title {
        font-size: 1rem;
    }
    
    .batalbatal-partners-logos {
        gap: 2rem;
    }
    
    .batalbatal-logo-image {
        height: 24px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .batalbatal-partners-section {
        padding: 5rem 2rem;
    }
    
    .batalbatal-partners-logos {
        gap: 3rem;
    }
}

/* Hover effects */
.batalbatal-logo-image:hover {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

/* Mobile fix */
@media (max-width: 768px) {
    .logo-text-container {
        line-height: 1;
    }
    
    .logo-textf {
        font-size: 0.89rem;
    }


    /* Remove space between sections */
.hero-section {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
}

.tasks-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Or target all sections */
section {
    margin: 0 !important;
    padding: 0 !important;
}

/* If using div sections */
.section-hero,
.section-tasks {
    margin: 0 !important;
    padding: 0 !important;
}


/* FIX BODY AND ROOT SPACING */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* Set exactly 1rem margin-bottom on all sections */
#home.hero {
    margin: 0 0 1rem 0 !important; /* 1rem bottom margin */
    padding: 80px 0 0 0 !important;
    min-height: auto !important;
    height: auto !important;
    transform: none !important;
}

.batalbatal-partners-section {
    margin: 0 0 1rem 0 !important; /* 1rem bottom margin */
    padding: 1rem 0 !important;
    min-height: auto !important;
}

.pats-bs-tasks-modern {
    margin: 0 0 1rem 0 !important; /* 1rem bottom margin */
    padding: 2rem 0.5rem !important;
    min-height: auto !important;
}


.claim-modern {
    margin: 0 0 1rem 0 !important;
    padding: 2rem 0.5rem !important;
    min-height: auto !important;
}

.security {
    margin: 0 0 1rem 0 !important;
    padding: 2rem 0.5rem !important;
    min-height: auto !important;
}



.pats-bs-faq {
    margin: 0 0 1rem 0 !important;
    padding: 2rem 0.5rem !important;
    min-height: auto !important;
}

.pats-bs-footer {
    margin: 0 !important;
    padding: 2rem !important;
    min-height: auto !important;
}


/* Fix the hero content spacing */
.hero-content {
    margin: 0 !important;
    padding: 2rem 1 !important;
}

/* Ensure containers don't add extra space */
.container {
    margin: 0 auto !important;
    padding: 2rem 1 !important;
}