/* Frontend Specific Styles */

/* Registration Form Styles */
.registration-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.registration-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.registration-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.registration-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.registration-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.registration-message {
    padding: 1rem 2rem;
    margin: 0;
    border-radius: 0;
    font-weight: 500;
}

.registration-message.success {
    background: #d4edda;
    color: #155724;
    border-bottom: 1px solid #c3e6cb;
}

.registration-message.error {
    background: #f8d7da;
    color: #721c24;
    border-bottom: 1px solid #f5c6cb;
}

.account-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
}

.type-option {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.type-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.type-option.active .type-icon {
    opacity: 1;
}

.type-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.type-option p {
    margin: 0;
    opacity: 0.8;
}

.registration-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group small {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.skills-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.skills-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.skills-checkboxes label:hover {
    background: #f8f9fa;
}

.skills-checkboxes input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 0.25rem;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
}

.password-strength {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.password-strength.very-weak {
    background: #f8d7da;
    color: #721c24;
}

.password-strength.weak {
    background: #fff3cd;
    color: #856404;
}

.password-strength.medium {
    background: #d1ecf1;
    color: #0c5460;
}

.password-strength.strong {
    background: #d4edda;
    color: #155724;
}

.password-strength.very-strong {
    background: #d1e7dd;
    color: #0f5132;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .registration-container {
        margin: 1rem;
        border-radius: 0.5rem;
    }
    
    .registration-header {
        padding: 2rem 1rem;
    }
    
    .registration-header h2 {
        font-size: 2rem;
    }
    
    .account-type-selector {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .registration-form {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .skills-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* Header Styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notifications-dropdown,
.user-dropdown {
    position: relative;
}

.notifications-toggle,
.user-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.notifications-toggle:hover,
.user-toggle:hover {
    background: #f3f4f6;
}

.notification-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    min-width: 18px;
    text-align: center;
}

.notifications-panel,
.user-panel {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.notifications-dropdown:hover .notifications-panel,
.user-dropdown:hover .user-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notifications-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notifications-header h3 {
    margin: 0;
    font-size: 1rem;
}

.mark-all-read {
    font-size: 0.875rem;
    color: #3b82f6;
    text-decoration: none;
}

.notifications-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.notification-item:hover {
    background: #f9fafb;
}

.notification-item.unread {
    background: #eff6ff;
}

.notification-item.unread:hover {
    background: #dbeafe;
}

.notification-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.notification-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.notifications-footer {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.notifications-footer a {
    font-size: 0.875rem;
    color: #3b82f6;
    text-decoration: none;
}

.user-info {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.user-details p {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.user-role {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    font-weight: 500;
}

.user-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-menu-items li {
    border-bottom: 1px solid #f3f4f6;
}

.user-menu-items li:last-child {
    border-bottom: none;
}

.user-menu-items a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.user-menu-items a:hover {
    background: #f9fafb;
    color: #3b82f6;
}

.menu-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Icon Styles */
.icon-bell::before {
    content: "🔔";
}

.icon-chevron-down::before {
    content: "▼";
    font-size: 0.75rem;
}

.icon-search::before {
    content: "🔍";
}

.icon-facebook::before {
    content: "📘";
}

.icon-twitter::before {
    content: "🐦";
}

.icon-instagram::before {
    content: "📷";
}

.icon-linkedin::before {
    content: "💼";
}

.icon-youtube::before {
    content: "📺";
}

.icon-tiktok::before {
    content: "🎵";
}

/* Additional Component Styles */
.search-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-submit {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.filter-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-form .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.filter-submit,
.filter-reset {
    margin-top: 1rem;
}

.filter-reset {
    margin-left: 1rem;
    color: #6b7280;
    text-decoration: none;
}

.filter-reset:hover {
    color: #374151;
}

/* Dashboard Specific Styles */
.dashboard-welcome {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-welcome h1 {
    margin-bottom: 0.5rem;
}

.dashboard-welcome p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quick-action-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-action-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.quick-action-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-action-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Campaign Grid */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.campaign-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.campaign-filters h3 {
    margin-bottom: 1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Profile Styles */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-stat {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.profile-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notifications-panel,
    .user-panel {
        width: 280px;
        right: -50px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .notifications-panel,
    .user-panel {
        width: 250px;
        right: -75px;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Styles */
.dashboard-wrapper {
    min-height: 100vh;
    background: #f8fafc;
}

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.dashboard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-welcome h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.dashboard-welcome p {
    margin: 0;
    font-size: 1.125rem;
    opacity: 0.9;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-nav {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-tabs li {
    flex: 1;
}

.nav-tabs a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.nav-tabs a:hover {
    color: #3b82f6;
    background: #f9fafb;
}

.nav-tabs li.active a {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: #eff6ff;
}

.nav-tabs i {
    font-size: 1.125rem;
}

.dashboard-content {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 1.5rem;
}

/* Form Styles */
.athar-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.link-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0.5rem;
    align-items: end;
    margin-bottom: 0.5rem;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-welcome h1 {
        font-size: 2rem;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tabs a {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .link-item {
        grid-template-columns: 1fr;
    }
}

/* Homepage & Landing Pages */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.author-info span {
    font-size: 0.875rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.cta-content p {
    font-size: 1.125rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Campaign Form Styles */
.campaign-form-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.campaign-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.campaign-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.campaign-form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.campaign-form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.campaign-form {
    padding: 2rem;
}

.campaign-message {
    padding: 1rem 2rem;
    margin: 0;
    border-radius: 0;
    font-weight: 500;
}

.campaign-message.success {
    background: #d4edda;
    color: #155724;
    border-bottom: 1px solid #c3e6cb;
}

.campaign-message.error {
    background: #f8d7da;
    color: #721c24;
    border-bottom: 1px solid #f5c6cb;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.input-group input {
    padding-left: 2rem;
}

.image-preview {
    margin-top: 1rem;
    text-align: center;
}

.image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.current-image {
    margin-top: 1rem;
    text-align: center;
}

.current-image img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.total-budget {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* Campaign Cards */
.campaigns-list-wrapper {
    padding: 2rem 0;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.campaign-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-image {
    position: relative;
    height: 200px;
    background: #f8f9fa;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: #dee2e6;
}

.campaign-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-publish {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-draft {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-private {
    background: #f8d7da;
    color: #721c24;
}

.campaign-content {
    padding: 1.5rem;
}

.campaign-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.campaign-title a {
    color: #333;
    text-decoration: none;
}

.campaign-title a:hover {
    color: #667eea;
}

.campaign-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.campaign-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.meta-item i {
    color: #667eea;
}

.campaign-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.campaign-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.campaign-actions .btn-primary {
    background: #0073aa;
    color: #fff;
    border: 1px solid #0073aa;
}

.campaign-actions .btn-primary:hover {
    background: #005a87;
    border-color: #005a87;
}

.campaign-actions .btn-secondary {
    background: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

.campaign-actions .btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
}

.campaign-actions .btn-disabled {
    background: #e9ecef;
    color: #6c757d;
    border: 1px solid #dee2e6;
    cursor: not-allowed;
}

.campaign-actions .btn-disabled:hover {
    background: #e9ecef;
    color: #6c757d;
}

/* Apply Now Button Specific */
.apply-btn {
    background: #28a745 !important;
    color: #fff !important;
    border: 1px solid #28a745 !important;
}

.apply-btn:hover {
    background: #218838 !important;
    border-color: #1e7e34 !important;
}

/* Campaign Cards */
.campaign-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.campaign-card h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.25rem;
}

.campaign-excerpt {
    color: #666;
    margin: 1rem 0;
    line-height: 1.6;
}

.campaign-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

.meta-item i {
    color: #0073aa;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .steps-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-form-container {
        margin: 1rem;
        border-radius: 0.5rem;
    }
    
    .campaign-form-header {
        padding: 2rem 1rem;
    }
    
    .campaign-form-header h2 {
        font-size: 2rem;
    }
    
    .campaign-form {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .campaign-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .campaign-actions {
        flex-direction: column;
    }
}

/* Campaign Discovery Styles */
.campaigns-discovery-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
}

.discovery-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
}

.discovery-header-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.discovery-title {
    text-align: center;
}

.discovery-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.discovery-title p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

.discovery-filters {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.filters-form {
    width: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.filter-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-actions .btn i {
    margin-right: 0.5rem;
}

.filter-actions .btn-primary {
    background: #3b82f6;
    color: #fff;
    border: 1px solid #3b82f6;
}

.filter-actions .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.filter-actions .btn-secondary {
    background: #fff;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.filter-actions .btn-secondary:hover {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.results-count {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-weight: 500;
}

.discovery-content {
    padding: 4rem 0;
}

.campaigns-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.campaigns-stats .stat-item {
    text-align: center;
}

.campaigns-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.campaigns-stats .stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-campaigns {
    text-align: center;
    padding: 4rem 0;
}

.no-campaigns-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-campaigns-content i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-campaigns-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 1rem 0;
}

.no-campaigns-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* Campaign Detail Styles */
.campaign-detail-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 2rem 0;
}

.campaign-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.campaign-header {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.campaign-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.campaign-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.campaign-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.campaign-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #666;
}

.campaign-meta .meta-item i {
    color: #667eea;
}

.campaign-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.applied-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4edda;
    color: #155724;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.campaign-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.campaign-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.campaign-section {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.campaign-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.campaign-description,
.campaign-requirements,
.campaign-guidelines {
    color: #555;
    line-height: 1.8;
}

.campaign-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.campaign-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.campaign-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #666;
}

.detail-value {
    font-weight: 600;
    color: #333;
}

.brand-assets {
    color: #555;
    line-height: 1.6;
}

/* Application Modal Styles */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.application-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.application-form label {
    font-weight: 500;
    color: #333;
}

.application-form input,
.application-form textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.application-form input.error,
.application-form textarea.error {
    border-color: #dc3545;
}

.application-form .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.application-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Discovery Message Styles */
.discovery-message {
    padding: 1rem 2rem;
    margin: 0;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
}

.discovery-message.success {
    background: #d4edda;
    color: #155724;
    border-bottom: 1px solid #c3e6cb;
}

.discovery-message.error {
    background: #f8d7da;
    color: #721c24;
    border-bottom: 1px solid #f5c6cb;
}

/* Responsive Design for Discovery */
@media (max-width: 768px) {
    .discovery-title h1 {
        font-size: 2rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-actions {
        justify-content: center;
    }
    
    .campaigns-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .campaign-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .campaign-title-section h1 {
        font-size: 2rem;
    }
    
    .campaign-meta {
        justify-content: center;
    }
    
    .campaign-actions {
        align-items: center;
    }
    
    .campaign-content-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-sidebar {
        order: -1;
    }
}

@media (max-width: 480px) {
    .discovery-header {
        padding: 2rem 0;
    }
    
    .discovery-filters {
        padding: 1rem;
    }
    
    .campaign-header {
        padding: 2rem 1rem;
    }
    
    .campaign-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .campaign-actions {
        width: 100%;
    }
    
    .campaign-actions .btn {
        width: 100%;
    }
}

/* Content Management Styles */
.content-submission-wrapper,
.content-management-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 2rem 0;
}

.content-submission-header,
.content-management-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-submission-header h1,
.content-management-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.content-submission-header p,
.content-management-header p {
    font-size: 1.25rem;
    color: #666;
    margin: 0;
}

.content-submission-content,
.content-management-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-form {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Upload Area Styles */
.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.upload-area.optional {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.upload-area.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.upload-placeholder {
    color: #666;
}

.upload-placeholder i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.upload-placeholder h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.upload-placeholder p {
    margin: 0 0 1rem 0;
}

.upload-info {
    font-size: 0.875rem;
    color: #999;
}

/* File Preview Styles */
.uploaded-files {
    margin-top: 1.5rem;
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.file-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.file-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-icon i {
    font-size: 1.5rem;
    color: #666;
}

.file-info {
    flex: 1;
}

.file-name {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.file-size {
    font-size: 0.875rem;
    color: #666;
}

.file-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-remove:hover {
    background: #c82333;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Content Management Styles */
.content-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.content-actions {
    display: flex;
    gap: 1rem;
}

/* Content List Styles */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-2px);
}

.content-preview {
    position: relative;
    flex-shrink: 0;
}

.content-preview img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.content-placeholder {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-placeholder i {
    font-size: 2rem;
    color: #dee2e6;
}

.content-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-submitted {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.content-details {
    flex: 1;
}

.content-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.content-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.content-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.content-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.content-meta .meta-item i {
    color: #667eea;
}

.content-feedback {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.content-feedback strong {
    color: #333;
}

.content-feedback p {
    margin: 0.5rem 0 0 0;
    color: #666;
}

.content-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

/* No Content/Applications Styles */
.no-applications,
.no-content {
    text-align: center;
    padding: 4rem 0;
}

.no-applications-content,
.no-content-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-applications-content i,
.no-content-content i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-applications-content h3,
.no-content-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 1rem 0;
}

.no-applications-content p,
.no-content-content p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

/* Content Detail Modal Styles */
.content-detail {
    max-width: 100%;
}

.content-detail .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f4;
}

.content-detail .content-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.content-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.content-info .info-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
}

.content-info .info-item strong {
    color: #333;
}

.content-description,
.content-links,
.content-tags,
.content-feedback {
    margin-bottom: 2rem;
}

.content-description h3,
.content-links h3,
.content-tags h3,
.content-feedback h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.content-files {
    margin-bottom: 2rem;
}

.content-files h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.file-item {
    background: #f8f9fa;
    border-radius: 0.5rem;
    overflow: hidden;
}

.file-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.file-item a {
    display: block;
    padding: 1rem;
    color: #667eea;
    text-decoration: none;
    text-align: center;
}

.file-item a:hover {
    background: #e9ecef;
}

/* Content Message Styles */
.content-message {
    padding: 1rem 2rem;
    margin: 0 0 2rem 0;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.content-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.content-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Content */
@media (max-width: 768px) {
    .content-submission-header h1,
    .content-management-header h1 {
        font-size: 2rem;
    }
    
    .content-form {
        padding: 2rem 1rem;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .content-filters {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .content-actions {
        justify-content: center;
    }
    
    .content-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-preview {
        align-self: center;
    }
    
    .content-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .content-actions {
        align-items: stretch;
    }
    
    .content-actions .btn {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .content-submission-wrapper,
    .content-management-wrapper {
        padding: 1rem 0;
    }
    
    .content-submission-header,
    .content-management-header {
        margin-bottom: 2rem;
    }
    
    .upload-area {
        padding: 1.5rem 1rem;
    }
    
    .upload-placeholder h3 {
        font-size: 1rem;
    }
    
    .file-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .file-preview img,
    .file-icon {
        width: 80px;
        height: 80px;
    }
    
    .content-info {
        grid-template-columns: 1fr;
    }
    
    .files-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment System Styles */
.payment-form-wrapper,
.payment-history-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 2rem 0;
}

.payment-header,
.payment-history-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-header h1,
.payment-history-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.payment-header p,
.payment-history-header p {
    font-size: 1.25rem;
    color: #666;
    margin: 0;
}

.payment-form-content {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.payment-summary {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 2rem;
}

.payment-summary h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.25rem;
    color: #667eea;
    border-top: 2px solid #667eea;
    margin-top: 1rem;
    padding-top: 1rem;
}

.summary-item .label {
    color: #666;
}

.summary-item .value {
    font-weight: 500;
    color: #333;
}

.payment-form {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.payment-method input[type="radio"] {
    margin: 0;
}

.payment-method input[type="radio"]:checked + label {
    color: #667eea;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.payment-method i {
    font-size: 1.5rem;
    color: #667eea;
}

.payment-element {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    background: #f8f9fa;
}

#card-element {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    background: #fff;
}

#card-errors {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.bank-transfer-info {
    color: #555;
}

.bank-transfer-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.bank-details {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.bank-detail:last-child {
    border-bottom: none;
}

.bank-detail strong {
    color: #333;
}

.bank-transfer-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.bank-transfer-note p {
    margin: 0;
    color: #856404;
}

/* Payment History Styles */
.payment-history-content {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.filter-tab:hover,
.filter-tab.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.payment-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.payment-stats .stat-item {
    text-align: center;
}

.payment-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.payment-stats .stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-2px);
}

.payment-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

.payment-details {
    flex: 1;
}

.payment-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.payment-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.payment-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.payment-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.payment-meta .meta-item i {
    color: #667eea;
}

.payment-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.payment-amount .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.payment-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.no-payments {
    text-align: center;
    padding: 4rem 0;
}

.no-payments-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-payments-content i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-payments-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 1rem 0;
}

.no-payments-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Payment Message Styles */
.payment-message {
    padding: 1rem 2rem;
    margin: 0 0 2rem 0;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.payment-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.payment-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Payment */
@media (max-width: 768px) {
    .payment-header h1,
    .payment-history-header h1 {
        font-size: 2rem;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-summary {
        position: static;
    }
    
    .payment-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-amount,
    .payment-actions {
        align-items: stretch;
    }
    
    .payment-actions .btn {
        width: 100%;
    }
    
    .payment-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .payment-form-wrapper,
    .payment-history-wrapper {
        padding: 1rem 0;
    }
    
    .payment-header,
    .payment-history-header {
        margin-bottom: 2rem;
    }
    
    .payment-form,
    .payment-summary {
        padding: 1.5rem 1rem;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-method {
        padding: 0.75rem;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Legal Pages */
.legal-page-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 2.5em;
    color: #23282d;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.5em;
    color: #23282d;
    margin-bottom: 15px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 5px;
}

.legal-section p {
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

/* Contact Page */
.contact-page-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5em;
    color: #23282d;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-section,
.contact-info-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.8em;
    color: #23282d;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #23282d;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5a6fd8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h3 {
    font-size: 1.2em;
    color: #23282d;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
}

.response-time {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-links h3 {
    font-size: 1.2em;
    color: #23282d;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #5a6fd8;
}

.faq-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    font-size: 1.8em;
    color: #23282d;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    font-size: 1.1em;
    color: #23282d;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.5;
}

/* About Page */
.about-page-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3em;
    color: #23282d;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2em;
    color: #23282d;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mission,
.vision {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i,
.vision-icon i {
    color: white;
    font-size: 30px;
}

.mission h3,
.vision h3 {
    font-size: 1.5em;
    color: #23282d;
    margin-bottom: 15px;
}

.mission p,
.vision p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 2em;
    color: #23282d;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 24px;
}

.value-item h3 {
    font-size: 1.3em;
    color: #23282d;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    margin-bottom: 60px;
}

.stats-section h2 {
    font-size: 2em;
    color: #23282d;
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 2em;
    color: #23282d;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3em;
    color: #23282d;
    margin-bottom: 5px;
}

.member-title {
    font-size: 1.1em;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-section h2 {
    font-size: 2em;
    color: #23282d;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #667eea;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: #5a6fd8;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 20px;
    }
    
    .faq-section {
        padding: 20px;
    }
    
    .about-hero h1 {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
}

/* Dashboard Styles */
.business-dashboard-wrapper,
.creator-dashboard-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 2rem 0;
}

.dashboard-header {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-welcome h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.dashboard-welcome p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-nav {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-tabs li {
    flex: 1;
}

.nav-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    color: #6c757d;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-tabs a:hover {
    background: #e9ecef;
    color: #495057;
}

.nav-tabs li.active a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.nav-tabs i {
    font-size: 1.1rem;
}

.dashboard-content {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.recent-activity {
    margin-bottom: 2rem;
}

.recent-activity h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.activity-list {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.activity-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.activity-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.activity-time {
    font-size: 0.8rem;
    color: #adb5bd;
    margin-left: auto;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tab-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.campaigns-list,
.applications-list,
.content-list,
.payments-list {
    display: grid;
    gap: 1rem;
}

.campaign-item,
.application-item,
.content-item,
.payment-item {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.campaign-item:hover,
.application-item:hover,
.content-item:hover,
.payment-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.item-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.item-status.status-pending {
    background: #fff3cd;
    color: #856404;
}

.item-status.status-approved {
    background: #d4edda;
    color: #155724;
}

.item-status.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.item-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.meta-item i {
    font-size: 0.8rem;
}

.item-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
}

.profile-form {
    max-width: 600px;
}

.profile-form .form-group {
    margin-bottom: 1.5rem;
}

.profile-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.profile-form input,
.profile-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.profile-form input:focus,
.profile-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.skills-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.earnings-overview {
    margin-bottom: 2rem;
}

.earnings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.earnings-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.earnings-card h4 {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.earnings-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.recent-payments h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    background: #f8f9fa;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

.portfolio-content {
    padding: 1rem;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.portfolio-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.recommended-campaigns h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-welcome h1 {
        font-size: 1.5rem;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
    }
    
    .nav-tabs li {
        flex: 1 1 calc(50% - 0.25rem);
    }
    
    .nav-tabs a {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .tab-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .item-meta {
        flex-wrap: wrap;
    }
    
    .item-actions {
        flex-wrap: wrap;
    }
    
    .skills-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .earnings-stats {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .business-dashboard-wrapper,
    .creator-dashboard-wrapper {
        padding: 1rem 0;
    }
    
    .dashboard-header,
    .dashboard-nav,
    .dashboard-content {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .nav-tabs li {
        flex: 1 1 100%;
    }
    
    .dashboard-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .dashboard-actions .btn {
        width: 100%;
    }
}

/* Login Page Styles */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #23282d;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 16px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #23282d;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
}

.login-form .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.login-form .checkbox-label input[type="checkbox"] {
    margin-right: 8px;
}

.login-form .btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

.form-links {
    text-align: center;
    margin-top: 20px;
}

.form-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.form-links a:hover {
    text-decoration: underline;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.login-footer p {
    color: #666;
    font-size: 14px;
}

.login-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .login-container {
        padding: 2rem 1rem;
    }
    
    .login-header h2 {
        font-size: 1.75rem;
    }
}

/* Creators Page Styles */
.creators-page-wrapper {
    padding: 2rem 0;
    background: #f8fafc;
    min-height: 100vh;
}

.creators-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.creators-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.creators-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.creators-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.filter-group select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: #fff;
    font-size: 0.875rem;
    min-width: 150px;
}

.filter-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.creator-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.creator-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.creator-header {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.creator-avatar {
    flex-shrink: 0;
}

.creator-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-info {
    flex: 1;
}

.creator-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.creator-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars i {
    color: #d1d5db;
    font-size: 0.875rem;
}

.stars i.filled {
    color: #fbbf24;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.creator-location {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
}

.creator-bio {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.creator-bio p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.creator-skills {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.skill-tag.more {
    background: #e2e8f0;
    color: #64748b;
}

.creator-stats {
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.creator-actions {
    padding: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.creator-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.no-creators {
    text-align: center;
    padding: 3rem 1rem;
    grid-column: 1 / -1;
}

.no-creators-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.no-creators h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.no-creators p {
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.creators-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #667eea;
}

@media (max-width: 768px) {
    .creators-hero h1 {
        font-size: 2rem;
    }
    
    .creators-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .creators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .creator-header {
        padding: 1rem;
    }
    
    .creator-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .creator-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .creators-page-wrapper {
        padding: 1rem 0;
    }
    
    .creators-hero {
        margin-bottom: 2rem;
    }
    
    .creators-hero h1 {
        font-size: 1.75rem;
    }
    
    .creator-header {
        flex-direction: column;
        text-align: center;
    }
    
    .creator-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* Single Campaign Page */
.campaign-single-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.campaign-single {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.campaign-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.campaign-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campaign-status {
    font-size: 0.875rem;
    font-weight: 500;
}

.campaign-date {
    font-size: 0.875rem;
    opacity: 0.9;
}

.campaign-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.campaign-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item .label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.detail-item .value {
    font-size: 1rem;
    font-weight: 600;
}

.campaign-content {
    padding: 2rem;
    line-height: 1.6;
}

.campaign-content h2,
.campaign-content h3,
.campaign-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.campaign-content p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.campaign-content ul,
.campaign-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.campaign-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.campaign-actions {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.campaign-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-actions .btn-primary {
    background: #3b82f6;
    color: #fff;
    border: 1px solid #3b82f6;
}

.campaign-actions .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.campaign-actions .btn-secondary {
    background: #fff;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.campaign-actions .btn-secondary:hover {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .campaign-single-wrapper {
        padding: 1rem;
    }
    
    .campaign-header {
        padding: 1.5rem;
    }
    
    .campaign-title {
        font-size: 1.5rem;
    }
    
    .campaign-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .campaign-content {
        padding: 1.5rem;
    }
    
    .campaign-actions {
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .campaign-actions .btn {
        justify-content: center;
    }
}
