/* Payouts Page Specific Styles */

.payouts-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payouts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

.payouts-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 204, 153, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 80%, rgba(26, 31, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 10%, rgba(255, 215, 0, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 85% 40%, rgba(0, 204, 153, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 15% 70%, rgba(26, 31, 255, 0.08) 3px, transparent 3px);
    background-size: 120px 120px;
    z-index: 0;
    animation: particlesFloat 25s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(15px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.payouts-hero .container {
    position: relative;
    z-index: 2;
}

.payouts-hero h1 {
    font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff 0%, #a0a0ff 50%, #00ffaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.payouts-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
    border-radius: 2px;
}

.payouts-hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #b0b0c0;
    line-height: 1.7;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-box {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.85) 0%, rgba(25, 25, 50, 0.85) 100%);
    border-radius: 24px;
    padding: 2rem;
    min-width: 200px;
    border: 1px solid rgba(100, 100, 200, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 2;
    perspective: 1000px;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 204, 153, 0.05) 0%, transparent 30%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-box:hover {
    transform: translateY(-20px) scale(1.03) rotateY(5deg);
    border-color: rgba(100, 100, 200, 0.4);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00cc99;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(0, 204, 153, 0.3);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 204, 153, 0.6);
    transform: translateY(-3px);
}

.stat-label {
    font-size: 1.1rem;
    color: #9090b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payouts-wall {
    padding: 100px 0;
    background: linear-gradient(165deg, #0f0f23 0%, #1a1a3a 100%);
    position: relative;
    border-top: 1px solid rgba(100, 100, 200, 0.1);
    overflow: hidden;
}

.payouts-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

.payouts-wall::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 204, 153, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(26, 31, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 10%, rgba(0, 204, 153, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 90% 30%, rgba(26, 31, 255, 0.08) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    animation: particlesFloat 20s linear infinite;
}

.payouts-wall .container {
    position: relative;
    z-index: 2;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
    color: #b0b0c0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 2;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(145deg, rgba(26, 31, 255, 0.3) 0%, rgba(45, 10, 90, 0.3) 100%);
    color: #f0f0f0;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.filter-btn.active::before,
.filter-btn:hover::before {
    opacity: 0.5;
}

.payouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payout-card {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(100, 100, 200, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(12px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 204, 153, 0.1);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* Add glow effect on left edge */
    border-left: 2px solid rgba(0, 204, 153, 0.5);
    box-shadow: 
        -5px 0 15px -5px rgba(0, 204, 153, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.payout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 204, 153, 0.1) 0%, transparent 40%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.payout-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(26, 31, 255, 0.05) 0%, 
        transparent 30%, 
        rgba(255, 215, 0, 0.03) 100%);
    opacity: 0.2;
    z-index: -1;
}

.payout-card:hover::before {
    opacity: 0.5;
}

.payout-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(100, 100, 200, 0.3);
    box-shadow: 
        -8px 0 25px -5px rgba(0, 204, 153, 0.6),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.payout-amount {
    font-family: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(0, 204, 153, 0.3);
    transition: all 0.3s ease;
}

.payout-card:hover .payout-amount {
    color: #00ffaa;
    text-shadow: 0 0 15px rgba(0, 204, 153, 0.6);
}

.payout-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.trader-info {
    display: flex;
    flex-direction: column;
}

.trader-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #f0f0f0;
}

.trader-location {
    font-size: 0.9rem;
    color: #9090b0;
}

.payout-time {
    font-size: 0.9rem;
    color: #9090b0;
    text-align: right;
}

.proof-btn {
    background: linear-gradient(135deg, #1a1fff 0%, #2d0a5a 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(26, 31, 255, 0.4);
}

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

.proof-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 31, 255, 0.6);
}

.proof-btn:hover::before {
    left: 100%;
}

.load-more {
    text-align: center;
}

.btn-secondary {
    background: transparent;
    color: var(--platinum-elite);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: var(--z-1);
    min-height: 56px;
    min-width: 180px;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.payout-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
    position: relative;
    border-top: 1px solid rgba(100, 100, 200, 0.1);
    overflow: hidden;
}

.payout-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

.payout-process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 204, 153, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 80%, rgba(26, 31, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 10%, rgba(255, 215, 0, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 85% 40%, rgba(0, 204, 153, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 15% 70%, rgba(26, 31, 255, 0.08) 3px, transparent 3px);
    background-size: 120px 120px;
    z-index: 0;
    animation: particlesFloat 25s linear infinite;
}

.payout-process .container {
    position: relative;
    z-index: 2;
}

.payout-process h2 {
    text-align: center;
    font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: #f0f0f0;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.payout-process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00cc99, #1a1fff, #ffd700);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%);
    border-radius: 24px;
    border: 1px solid rgba(100, 100, 200, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    /* Add glow effect on top edge */
    border-top: 3px solid rgba(26, 31, 255, 0.5);
    box-shadow: 
        0 -8px 20px -5px rgba(26, 31, 255, 0.4),
        0 25px 45px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 204, 153, 0.1) 0%, transparent 40%);
    opacity: 0.3;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        transparent 30%, 
        rgba(0, 204, 153, 0.03) 100%);
    opacity: 0.2;
    z-index: -1;
}

.step:hover::before {
    opacity: 0.5;
}

.step:hover {
    border-color: rgba(100, 100, 200, 0.3);
    box-shadow: 
        0 -12px 30px -5px rgba(26, 31, 255, 0.6),
        0 35px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    border-top: 3px solid rgba(26, 31, 255, 0.8);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1fff 0%, #2d0a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(26, 31, 255, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(26, 31, 255, 0.6);
}

.step-number::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a35 100%);
    border-radius: 50%;
    z-index: -1;
}

.step h3 {
    font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    letter-spacing: -0.02em;
}

.step p {
    color: #b8b8d0;
    line-height: 1.7;
}

/* Modal for payout proof */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 26, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a3a 100%);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 800px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(100, 100, 200, 0.3);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    /* Add glow effect on top edge */
    border-top: 3px solid rgba(0, 204, 153, 0.8);
    box-shadow: 
        0 -10px 30px -5px rgba(0, 204, 153, 0.6),
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 255, 0.1) 0%, transparent 50%);
    opacity: 0.3;
    border-radius: 24px;
    z-index: -1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 100, 200, 0.2);
}

.modal-header h2 {
    font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    color: #f0f0f0;
    margin: 0;
    letter-spacing: -0.02em;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: #9090b0;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #00ffaa;
    background: rgba(0, 204, 153, 0.1);
    transform: rotate(90deg);
}

.proof-details {
    margin-bottom: 2rem;
}

.proof-detail {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(100, 100, 200, 0.1);
}

.proof-detail:last-child {
    border-bottom: none;
}

.proof-label {
    color: #9090b0;
    font-weight: 500;
}

.proof-value {
    color: #f0f0f0;
    font-weight: 600;
    font-family: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
}

.transaction-hash {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
    font-size: 0.9rem;
    color: #00ffaa;
    word-break: break-all;
    border: 1px solid rgba(0, 204, 153, 0.2);
    position: relative;
}

.transaction-hash::before {
    content: 'Transaction Hash:';
    display: block;
    color: #9090b0;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00cc99 0%, #00997a 100%);
    color: #0a0b1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 204, 153, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .payouts-hero {
        padding: 120px 0 80px;
    }
    
    .payouts-hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 1.5rem;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-controls {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .payouts-wall, .payout-process {
        padding: 80px 0;
    }
    
    .payouts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .payout-card {
        padding: 1.5rem;
    }
    
    .payout-amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .payouts-hero {
        padding: 100px 0 60px;
    }
    
    .payouts-hero h1 {
        font-size: 2rem;
    }
    
    .payouts-wall, .payout-process {
        padding: 60px 0;
    }
    
    .payouts-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        min-width: 100%;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .payouts-hero {
        padding: 80px 0 40px;
    }
    
    .payouts-hero h1 {
        font-size: 1.75rem;
    }
    
    .payouts-wall, .payout-process {
        padding: 40px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-controls {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        flex: 1 1 auto;
        min-width: 100px;
        margin-bottom: 0.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Professional Transaction Proof Modal Styles */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 100, 200, 0.2);
}

.modal-header h2 {
    font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
    font-size: 1.8rem;
    color: #f0f0f0;
    margin: 0;
    letter-spacing: -0.02em;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00cc99 0%, #00997a 100%);
    color: #0a0b1a;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 204, 153, 0.4);
}

.status-badge.success::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a0b1a;
    box-shadow: 0 0 0 2px #0a0b1a, 0 0 0 4px #00cc99;
}

.transaction-details {
    margin-bottom: 1.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item.full-width {
    grid-column: span 2;
}

.detail-item .label {
    font-size: 0.85rem;
    color: #9090b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item .value {
    font-family: 'Space Grotesk', 'Fira Code', 'Monaco', monospace;
    font-size: 1rem;
    color: #f0f0f0;
    font-weight: 600;
}

.detail-item .value.success {
    color: #00cc99;
}

.detail-item .value.hash {
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 204, 153, 0.2);
    word-break: break-all;
    font-weight: 400;
}

.verification-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(100, 100, 200, 0.2);
}

.verification-text {
    color: #9090b0;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.verify-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a1fff 0%, #2d0a5a 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(26, 31, 255, 0.4);
}

.verify-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 31, 255, 0.6);
}

.verify-button svg {
    width: 16px;
    height: 16px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0b1a 0%, #1a1fff 100%);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(100, 100, 200, 0.1);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(0, 204, 153, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(26, 31, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  z-index: 1;
  animation: gradientShift 15s ease infinite;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-section h2 {
  font-family: 'Clash Display', 'Unica One', 'Helvetica Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.cta-section p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  color: #c2c2d6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
