        /* CSS Variables for easy theming */
        :root {
            --primary-color: #f59e0b;
            --secondary-color: #3b82f6;
            --accent-color: #10b981;
            --danger-color: #ef4444;
            --dark-bg: #1f2937;
            --darker-bg: #111827;
            --light-text: #f9fafb;
            --gray-text: #9ca3af;
            --card-bg: #374151;
            --border-color: #4b5563;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--darker-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-medium);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-heavy);
        }

        .btn-secondary {
            background: var(--accent-color);
            color: white;
        }

        .btn-secondary:hover {
            background: #059669;
            transform: translateY(-1px);
        }

        /* Header */
        .header {
            background: var(--dark-bg);
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-primary);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* Main Content */
        .main-content {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Platform Cards */
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .platform-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary-color);
        }

        .platform-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .platform-icon {
            font-size: 2rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            background: var(--gradient-primary);
        }

        .platform-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .platform-subtitle {
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        .platform-features {
            list-style: none;
            margin: 20px 0;
        }

        .platform-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: var(--gray-text);
        }

        .platform-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .earnings-info {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--accent-color);
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
            text-align: center;
        }

        .earnings-amount {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-color);
        }

        /* Badges */
        .badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .badge-hot {
            background: var(--danger-color);
            color: white;
        }

        .badge-new {
            background: var(--secondary-color);
            color: white;
        }

        .badge-popular {
            background: var(--primary-color);
            color: white;
        }

        .badge-limited {
            background: var(--accent-color);
            color: white;
        }

        /* Newsletter Section */
        .newsletter {
            background: var(--dark-bg);
            padding: 60px 0;
            text-align: center;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--light-text);
            font-size: 16px;
        }

        .newsletter-input::placeholder {
            color: var(--gray-text);
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .disclaimer {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-top: 20px;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .platforms-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }



        /* Search and Filter Styles */
.search-filter-container {
    margin-bottom: 30px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--darker-bg);
    color: var(--light-text);
    font-size: 16px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--darker-bg);
    color: var(--light-text);
    font-size: 14px;
}

@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
}


/* Add to your existing style section */
.sidebar-ads {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid var(--border-color);
    z-index: 90;
    display: none; /* Hidden by default, shown on desktop */
}

.sidebar-ad-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-ad-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-ad-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.sidebar-ad-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.sidebar-ad-desc {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.sidebar-ad-link {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .sidebar-ads {
        display: block;
    }
    
    .container {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }
}


.premium-ad-banner {
    background: var(--gradient-secondary);
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.premium-ad-banner .ad-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-ad-banner .ad-item {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.premium-ad-banner .ad-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.premium-ad-banner .ad-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
}

.premium-ad-banner .ad-text {
    font-size: 0.9rem;
}

.premium-ad-banner .ad-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .premium-ad-banner .ad-item {
        padding: 8px 15px;
    }
    
    .premium-ad-banner .ad-text {
        font-size: 0.8rem;
    }
}


/* Advertisers Section */
.advertisers {
    background: var(--dark-bg);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: var(--gray-text);
}

.features {
    list-style: none;
    margin: 25px 0;
}

.features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: var(--darker-bg);
    margin: 50px auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 800px;
    position: relative;
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Tab Styles */
.tab-buttons {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--gray-text);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--light-text);
    font-size: 16px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.next-tab {
    margin-top: 20px;
}

/* Payment Methods */
.payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
}

.payment-method.active {
    border-color: var(--primary-color);
    background: rgba(245, 158, 11, 0.1);
}

.payment-method img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-method span {
    display: block;
    font-weight: 600;
}

/* Payment Details */
.crypto-details {
    display: none;
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 30px;
}

.crypto-details.active {
    display: block;
}

.wallet-address {
    background: var(--darker-bg);
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    margin: 15px 0;
    word-break: break-all;
    font-size: 14px;
}

.qr-code {
    margin: 20px auto;
    width: 150px;
    height: 150px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.small {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.payment-actions {
    text-align: center;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .payment-options {
        flex-direction: column;
    }
}


.featured-platform {
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}





/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    min-width: 300px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.notification-message {
    flex: 1;
    margin-right: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.notification-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.notification-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.notification-info {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

/* Sponsored Ad Specific Styles */
.sponsored-ad {
    position: relative;
    border: 2px solid transparent !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05)) !important;
    backdrop-filter: blur(10px);
    animation: sponsored-glow 3s ease-in-out infinite alternate;
}

.sponsored-ad::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: inherit;
    z-index: -1;
    animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
    0% { background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700); }
    25% { background: linear-gradient(135deg, #FFA500, #FFD700, #FFA500); }
    50% { background: linear-gradient(225deg, #FFD700, #FFA500, #FFD700); }
    75% { background: linear-gradient(315deg, #FFA500, #FFD700, #FFA500); }
    100% { background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700); }
}

@keyframes sponsored-glow {
    from {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
        transform: translateY(0);
    }
    to {
        box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5);
        transform: translateY(-2px);
    }
}

.sponsored-ad .badge {
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    font-weight: bold;
    animation: badge-pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7);
    }
}

.sponsored-ad .platform-icon {
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.sponsored-ad .platform-icon img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sponsored-ad .btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    border: none;
    font-weight: bold;
    text-shadow: none;
    animation: button-shine 3s ease-in-out infinite alternate;
}

@keyframes button-shine {
    0% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6); }
}

.sponsored-ad .btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7) !important;
}

.sponsored-ad .platform-title {
    color: #FFD700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.sponsored-ad .earnings-amount {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* No results styling */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.no-results p {
    margin-bottom: 20px;
}

/* Responsive adjustments for notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Enhanced platform card animations */
.platform-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover {
    transform: translateY(-5px);
}

.sponsored-ad:hover {
    transform: translateY(-8px) !important;
}

/* Fade in animation for dynamic content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Stagger animation delays */
.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }
.platform-card:nth-child(4) { animation-delay: 0.4s; }
.platform-card:nth-child(5) { animation-delay: 0.5s; }
.platform-card:nth-child(6) { animation-delay: 0.6s; }



/* Pagination Styles */
.pagination-container {
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #e9e9e9;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.ellipsis {
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.items-per-page {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.items-per-page label {
    font-size: 0.9rem;
    color: #666;
}

.items-per-page-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}



/* Advertiser Form Styles */
.advertiser-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-section-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #6b7280;
}

.form-actions {
    margin-top: 30px;
    text-align: right;
}

/* Badge color previews */
select option[value="badge-popular"] { background: #ff7675; color: white; }
select option[value="badge-trusted"] { background: #74b9ff; color: white; }
select option[value="badge-new"] { background: #00b894; color: white; }
select option[value="badge-featured"] { background: #6c5ce7; color: white; }
select option[value="badge-hot"] { background: #e17055; color: white; }

/* Responsive adjustments */
@media (max-width: 767px) {
    .form-section {
        padding: 15px;
    }
    
    .form-actions {
        text-align: center;
    }
}




/* Validation Styles */
.invalid {
    border-color: #ef4444 !important;
}

.inline-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 5px;
}

/* Loading state */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Free Ad Modal Styles */
#freeAdBtn {
    cursor: pointer;
}

#freeAdForm .form-group {
    margin-bottom: 15px;
}

#freeAdForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#freeAdForm input[type="text"],
#freeAdForm input[type="url"],
#freeAdForm textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#freeAdForm textarea {
    height: 80px;
}

.success {
    color: green;
    padding: 10px;
    background-color: #e6ffe6;
    border-radius: 4px;
}

.error {
    color: red;
    padding: 10px;
    background-color: #ffebeb;
    border-radius: 4px;
}


.platform-link {
    pointer-events: auto !important;
    position: relative;
    z-index: 1;
}

/* Mobile Menu Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
    }
}
/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0f0f0;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #333;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        clip-path: circle(0 at 90% -10%);
        -webkit-clip-path: circle(0 at 90% -10%);
        pointer-events: none;
        z-index: 1000;
    }

    .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
}
/* Mobile Navigation Styles */
/* Add these styles to your main.css file */

/* Base navigation styles */
.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color, #2563eb);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-toggle:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
}

.nav-toggle:focus {
    outline: 2px solid var(--primary-color, #2563eb);
    outline-offset: 2px;
}

.nav-toggle i {
    transition: transform 0.3s ease;
}

.nav-toggle-open i {
    transform: rotate(180deg);
}

/* Desktop navigation */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color, #333);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-color, #2563eb);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1000;
        
        /* Initial hidden state */
        display: none;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.nav-open {
        display: flex !important;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.4s ease forwards;
    }
    
    .nav-links.nav-open li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.nav-open li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.nav-open li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.nav-open li:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-links a {
        display: block;
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 2rem;
        color: var(--text-color, #333);
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(37, 99, 235, 0.1), 
            transparent);
        transition: left 0.6s ease;
    }
    
    .nav-links a:hover::before {
        left: 100%;
    }
    
    .nav-links a:hover {
        background: rgba(37, 99, 235, 0.05);
        color: var(--primary-color, #2563eb);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    }
    
    .nav-links a:active {
        transform: translateY(0);
    }
    
    /* Dark overlay when menu is open */
    .nav-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .nav-links,
    .nav-links a,
    .nav-toggle i {
        transition: none;
        animation: none;
    }
    
    .nav-links li {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Focus management for accessibility */
.nav-links a:focus {
    outline: 2px solid var(--primary-color, #2563eb);
    outline-offset: 4px;
    background: rgba(37, 99, 235, 0.1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-links {
        background: white;
        border: 2px solid black;
    }
    
    .nav-links a {
        color: black;
        border: 1px solid transparent;
    }
    
    .nav-links a:hover,
    .nav-links a:focus {
        border-color: black;
        background: black;
        color: white;
    }
}


.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;

  justify-content:center; /* ✅ centers the buttons */
  align-items:center;     /* ✅ keeps them aligned nicely */
  width:100%;
}

.hero-helper{ margin-top:14px; color: var(--gray-text); }
.hero-link{ color: var(--primary-color); font-weight:700; text-decoration:none; }
.hero-link:hover{ text-decoration:underline; }


.home-blog-preview{ padding:80px 0; background: var(--darker-bg); border-top:1px solid var(--border-color); }
.home-blog-head{ text-align:center; margin-bottom:24px; }
.home-blog-sub{ color: var(--gray-text); margin: 10px auto 18px; max-width: 720px; }

.home-blog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin-top:26px;
}

.home-blog-card{
  display:block;
  background: var(--card-bg);
  border:1px solid var(--border-color);
  border-radius:16px;
  padding:18px;
  text-decoration:none;
  color:inherit;
  transition: all 0.2s ease;
}

.home-blog-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(245,158,11,0.55);
}

.home-blog-meta{ display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:10px; }
.home-blog-pill{ font-size:.75rem; padding:4px 10px; border-radius:999px; background: rgba(245,158,11,0.18); border:1px solid rgba(245,158,11,0.35); }
.home-blog-time{ font-size:.8rem; color: var(--gray-text); }

.home-blog-card h3{ margin: 8px 0 10px; font-size:1.05rem; }
.home-blog-card p{ margin:0 0 12px; color: var(--gray-text); line-height:1.6; }
.home-blog-cta{ color: var(--primary-color); font-weight:800; }



@media (max-width: 480px){
  .hero-cta{
    flex-direction:column;
  }
  .hero-cta .btn{
    width: 100%;
    max-width: 260px;
  }
}











/* =======================================
   PROFESSIONAL FOOTER STYLES
   Copy this entire section to your main.css
   ======================================= */

.footer {
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 3.5rem 0 2rem;
    margin-top: 5rem;
    border-top: 4px solid #f59e0b;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand-section {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    color: #f59e0b;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.85rem;
}

.footer-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-list a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #f59e0b;
    transition: all 0.2s ease;
}

.footer-list a:hover {
    color: #f59e0b;
    padding-left: 20px;
}

.footer-list a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(148, 163, 184, 0.3), transparent);
    margin-bottom: 2rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #fca5a5;
    font-size: 0.9rem;
    margin: 0;
    max-width: 700px;
}

.footer-disclaimer i {
    color: #f59e0b;
    font-size: 1rem;
}

.footer-disclaimer strong {
    color: #fef3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-section:last-child {
        grid-column: 1 / 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-section {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-list a::before {
        display: none;
    }
    
    .footer-list a:hover {
        padding-left: 0;
    }
    
    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 0.85rem;
    }
    
    .footer-list a {
        font-size: 0.9rem;
    }
    
    .footer-copyright,
    .footer-disclaimer {
        font-size: 0.85rem;
    }
}