/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #45a049;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background-color: #333;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
    color: white;
}

.btn-small {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

/* Forms */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 20px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.info-box h3, .info-box h4 {
    margin-top: 0;
    color: #333;
}

.info-box ul {
    margin-left: 20px;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    margin: 0;
    color: #333;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
    display: block;
    margin: 10px 0;
}

.stat-detail {
    font-size: 12px;
    color: #999;
}

/* Data Tables */
.data-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.data-table thead {
    background-color: #f8f9fa;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background-color: #d4edda;
    color: #155724;
}

.badge-paused {
    background-color: #fff3cd;
    color: #856404;
}

.badge-pending {
    background-color: #cce5ff;
    color: #004085;
}

.badge-completed {
    background-color: #d4edda;
    color: #155724;
}

.badge-advertiser {
    background-color: #e7f3ff;
    color: #0066cc;
}

.badge-publisher {
    background-color: #f3e7ff;
    color: #6600cc;
}

.badge-admin {
    background-color: #ffe7e7;
    color: #cc0000;
}

/* Code Box */
.code-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
}

.code-box pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

/* Homepage Styles */
.home-page {
    background: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding-bottom: 80px;
}

.main-nav {
    padding: 0;
    position: relative;
    background: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.main-nav .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    margin: 0;
    color: white;
    font-size: 24px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:not(.btn):hover {
    color: #dc3545;
    background: rgba(255,255,255,0.1);
}

/* Small Google Login Button */
.btn-google-small {
    background: white !important;
    color: #333 !important;
    border: 1px solid #ddd;
    padding: 6px 12px !important;
    font-size: 13px !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-google-small:hover {
    background: #f8f9fa !important;
    border-color: #c0c0c0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
    color: #333 !important;
}

.hero-content {
    text-align: center;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-network-ads {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Live Ads Banner */
.live-ads-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 30px auto 20px;
    max-width: 728px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
        border-color: rgba(220, 53, 69, 0.3);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
        border-color: rgba(220, 53, 69, 0.5);
    }
}

.banner-icon {
    font-size: 36px;
    flex-shrink: 0;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.banner-subtitle {
    font-size: 14px;
    color: #545454;
    line-height: 1.4;
}

.banner-subtitle strong {
    color: #dc3545;
    font-weight: 700;
}

.banner-cta {
    background: #dc3545;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-cta:hover {
    background: #c82333;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.network-ad-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 90px;
    max-width: 728px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Publisher Opportunity Banner */
.publisher-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #28a745;
    border-bottom: 3px solid #28a745;
    padding: 40px 0;
    margin: 0;
}

.publisher-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.publisher-banner-icon {
    font-size: 64px;
    flex-shrink: 0;
    animation: money-float 3s ease-in-out infinite;
}

@keyframes money-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    25% { 
        transform: translateY(-8px) scale(1.05);
    }
    50% { 
        transform: translateY(0) scale(1);
    }
    75% { 
        transform: translateY(-4px) scale(1.02);
    }
}

.publisher-banner-text {
    flex: 1;
}

.publisher-banner-text h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.publisher-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.benefit-icon {
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.publisher-banner-cta {
    text-align: center;
    flex-shrink: 0;
    padding-left: 20px;
    border-left: 2px solid #e9ecef;
}

.publisher-banner-cta .btn {
    margin-bottom: 10px;
    white-space: nowrap;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}

.publisher-banner-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.35);
}

.cta-subtext {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.network-ad-container iframe {
    width: 100%;
    max-width: 728px;
}

.ad-placeholder {
    text-align: center;
    padding: 10px;
}

/* Features Section */
.features-section,
.how-it-works-section,
.pricing-section,
.faq-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Workflow */
.workflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.workflow-column {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.workflow-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.workflow-icon {
    font-size: 56px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.advertiser-icon {
    filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.3));
}

.publisher-icon {
    filter: drop-shadow(0 4px 8px rgba(40, 167, 69, 0.3));
}

.workflow-column h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #333;
}

.workflow-desc {
    font-size: 15px;
    color: #777;
    margin: 0;
}

.workflow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: translateX(5px);
}

.step-number {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.workflow-column:nth-child(2) .step-number {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.step-content h4 {
    margin-bottom: 6px;
    color: #333;
    font-size: 17px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Special Feature Banner */
.special-feature-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8dc 100%);
    border: 2px solid #ffc107;
    border-radius: 16px;
    padding: 25px 35px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2); }
    50% { box-shadow: 0 6px 30px rgba(255, 193, 7, 0.4); }
}

.special-feature-banner .feature-icon {
    font-size: 64px;
    flex-shrink: 0;
    animation: rotate-pulse 3s ease-in-out infinite;
}

@keyframes rotate-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.special-feature-banner .feature-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #856404;
    font-weight: 700;
}

.special-feature-banner .feature-content p {
    margin: 0;
    color: #856404;
    font-size: 15px;
    line-height: 1.6;
}

/* Workflow CTA */
.workflow-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.workflow-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.workflow-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .workflow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .special-feature-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .workflow-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .live-ads-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .banner-icon {
        font-size: 32px;
    }
    
    .banner-title {
        font-size: 16px;
    }
    
    .banner-subtitle {
        font-size: 13px;
    }
    
    .banner-cta {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Publisher Banner Mobile */
    .publisher-banner-content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .publisher-banner-icon {
        font-size: 48px;
    }
    
    .publisher-banner-text h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .benefit-item {
        font-size: 14px;
        text-align: left;
    }
    
    .publisher-banner-cta {
        border-left: none;
        border-top: 2px solid #e9ecef;
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    
    .publisher-banner-cta .btn {
        width: 100%;
        display: block;
    }
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #4CAF50;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 10px;
}

.pricing-feature .price {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive - Additional Mobile Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: left;
        font-size: 16px;
    }
    
    .nav-links a.btn {
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
        padding: 12px 20px;
        border-radius: 6px;
    }
    
    .nav-links a.btn-google-small {
        background: white !important;
        color: #333 !important;
        border: 1px solid #ddd;
        justify-content: center;
    }
    
    .nav-links a.btn-primary {
        background: white;
        color: #dc3545;
    }
    
    .nav-links a.btn-secondary {
        background: #6c757d;
        color: white;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-network-ads {
        margin-top: 30px;
    }
    
    .network-ad-container {
        padding: 15px;
        max-width: 100%;
    }
    
    /* Workflow */
    .workflow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Sections */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
