:root {
    --primary: #F4A0C8;
    --primary-hover: #E38FB5;
    --secondary: #F7D8C8;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #B0B0B0;
    --border: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 15% 15%, rgba(244, 160, 200, 0.15), transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(247, 216, 200, 0.1), transparent 45%);
}

/* Layout Containers */
.layout-brand {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.layout-public {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    padding: 0;
    background: radial-gradient(circle at 50% 0%, rgba(244, 160, 200, 0.08), transparent 70%);
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.admin-full-container {
    max-width: none !important;
    width: 95% !important;
    margin: 0 auto;
    padding: 2rem 0;
}

.public-container {
    max-width: 680px;
    width: 100%;
    margin-top: 2rem;
}

/* Public Campaign Apply Page */
.public-header {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.public-hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}

.public-header-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 16px 16px;
}


/* Glass Components */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Branding */
.nav-brand,
.nav-admin,
.nav-creator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    text-transform: lowercase;
}

.logo-heart {
    width: 24px;
    height: 24px;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") no-repeat center;
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #fff;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #fff;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(244, 160, 200, 0.4);
}

.btn-primary:disabled {
    opacity: 0.5;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-danger {
    background: rgba(255, 0, 0, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ddd;
}

.form-helper {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

input:disabled,
textarea:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

/* Password Input Enhancement */
input[type="password"] {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
}

input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

input[type="password"]:focus {
    background: rgba(255, 255, 255, 0.12);
}

/* Switches / Toggles */
.toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.toggle-group:last-child {
    border-bottom: none;
}

/* Admin Dashboard */
.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-trend {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dashboard-campaign-list {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    max-height: 100px;
    overflow-y: auto;
}

.dashboard-campaign-item {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #fff !important;
    text-decoration: none;
}

.dashboard-campaign-item:hover {
    opacity: 1;
    color: #FFB3D9 !important;
    text-decoration: underline;
}

.trend-up {
    color: #00ff80;
}

.trend-down {
    color: #ff6b6b;
}

.applicant-count-large {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.gb-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.gb-table th {
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border);
}

.gb-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: #fff;
}

.gb-table tr:last-child td {
    border-bottom: none;
}

.gb-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Campaign Name Link Styling */
.gb-table a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.gb-table a:hover {
    color: var(--primary);
}

/* Badges */
.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-draft {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.badge-published {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
}

.badge-recruitment {
    background: rgba(244, 160, 200, 0.9) !important;
    color: #000 !important;
    border: none !important;
}

.badge-closed {
    background: rgba(136, 136, 136, 0.9) !important;
    color: #000 !important;
    border: none !important;
}

/* Campaign Status Badges - English */
.badge-waiting {
    background: rgba(128, 128, 128, 0.2);
    color: #999;
}

.badge-recruiting {
    background: rgba(0, 255, 128, 0.2);
    color: #00ff80;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.3);
}

.badge-selection-closed {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.badge-video-upload {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.3);
}

.badge-completed {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    font-weight: 700;
}

.badge-active {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
}

.badge-applied {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.badge-selected {
    background: rgba(244, 160, 200, 0.2);
    color: var(--primary);
}

.badge-pending {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

/* Tabs */
.campaign-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #fff;
}

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

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

/* TikTok Card */
.tiktok-login-card {
    text-align: center;
    padding: 0;
    border-radius: 20px;
    transition: border-color 0.3s;
}

.tiktok-login-card:hover {
    /* No hover effect needed */
}

.tiktok-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--secondary);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--primary);
}

.tiktok-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    padding: 2px;
}

.tiktok-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #000;
}

/* Consent Item */
.consent-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

@keyframes dot-blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

.loading-dots {
    display: inline-flex;
    align-items: center;
}

.loading-dots::after {
    content: '...';
    display: inline-block;
    width: 1.2ch;
    white-space: nowrap;
    overflow: hidden;
    animation: dot-loading 1.5s infinite steps(4);
}

@keyframes dot-loading {
    0% { width: 0; }
    100% { width: 3ch; }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-full {
    width: 100%;
}

.text-muted {
    color: var(--text-muted);
}

.hidden {
    display: none;
}

/* Custom Field Editor Card */
.field-editor-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.field-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* Form Section Refinement */
.form-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 2rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-subsection {
    margin-bottom: 2.5rem;
}

.form-subsection-light {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.form-row-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.form-row-simple:last-child {
    border-bottom: none;
}

.footer-brand {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(244, 160, 200, 0.3);
}

.footer-social-icon svg {
    transition: transform 0.2s ease;
}

.footer-social-icon:hover svg {
    transform: scale(1.1);
}

/* Alert / Info Box */
.alert {
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-info {
    background: rgba(244, 160, 200, 0.1);
    border: 1px solid rgba(244, 160, 200, 0.2);
    color: var(--primary);
}

.d-inline {
    display: inline !important;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-heart {
    color: var(--primary);
    font-size: 1rem;
}

/* Landing Page Sections */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .step-arrow {
        display: none;
    }

    .how-it-works {
        flex-direction: column;
    }

    .step-card {
        max-width: 100%;
    }
}

/* Layout: Auth & Public Navigation */
.layout-auth {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.nav-public {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* Landing Page */
.landing-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}



/* Ensure hero content is above the 3D element */
.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}



.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    opacity: 0.7;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Selection Cards */
.landing-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.selection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(244, 160, 200, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.selection-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.selection-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary-alt {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.selection-card:hover .btn-primary-alt {
    background: #fff;
    color: #000;
}

/* Auth Pages */
.auth-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-form-card {
    max-width: 440px;
    width: 100%;
}

.auth-choice-card {
    max-width: 480px;
    width: 100%;
}

.role-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(244, 160, 200, 0.15);
    color: var(--primary);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-text {
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

/* Discovery Grids */
.discovery-grid,
.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Campaign Discover Card */
.campaign-discover-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 19px 19px 0 0;
}

.campaign-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.campaign-discover-card:hover .campaign-image {
    transform: scale(1.05);
}

.badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content .desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Creator Card */
.creator-avatar-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--secondary);
}

.exp-tag {
    background: rgba(244, 160, 200, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* User Pill / Session */
.user-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--primary);
    transition: all 0.2s;
    overflow: hidden;
}

.user-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Profile Setup */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.checkbox-pill {
    position: relative;
    cursor: pointer;
}

.checkbox-pill input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-pill span {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.2s;
}

.checkbox-pill input:checked+span {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 600;
}

.h-15 {
    height: 60px;
}

/* Language Switcher */
.lang-switcher {
    margin: 0 0.5rem;
}

.lang-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: auto;
}

.lang-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.lang-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Tab Buttons */
.pool-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s;
    position: relative;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.tab-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Utility Classes */
.text-red-500 {
    color: #ff6b6b;
}

.mt-6 {
    margin-top: 1.5rem;
}

.gap-1 {
    gap: 0.25rem;
}

.w-32 {
    width: 8rem;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.italic {
    font-style: italic;
}

.rounded-full {
    border-radius: 9999px;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.border-white\/10 {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-left {
    text-align: left;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-6 {
    gap: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.p-0 {
    padding: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.ml-auto {
    margin-left: auto;
}

.text-primary {
    color: var(--primary);
}

/* Input Groups & Form Enhancements */
.input-group {
    display: flex;
    align-items: stretch;
}

.input-group select,
.input-group input {
    margin-bottom: 0 !important;
}

.input-group-prepend {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    white-space: nowrap;
}

.input-group-append {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    white-space: nowrap;
}

.input-group input {
    flex: 1;
}

.input-group-prepend+input {
    border-radius: 0 12px 12px 0 !important;
}

.input-group input:has(+ .input-group-append) {
    border-radius: 12px 0 0 12px !important;
}

.price-input-container {
    display: grid;
    grid-template-columns: 100px 1fr;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.price-input-container select {
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-right: 1px solid var(--border) !important;
    border-radius: 0 !important;
    font-weight: 600;
}

.price-input-container input {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.consent-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.consent-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.consent-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.consent-card-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.consent-content h4 {
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.consent-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

.phone-input-container {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0.75rem;
}

/* ===== TikTok Showcase Page ===== */
.tiktok-showcase-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.showcase-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.showcase-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner-icon {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(244, 160, 200, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.tiktok-video-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

.tiktok-video-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(244, 160, 200, 0.3);
}

.tiktok-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    /* 3:4 aspect ratio for TikTok */
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.tiktok-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Video thumbnail styles */
.tiktok-thumbnail-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tiktok-thumbnail-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tiktok-video-card:hover .tiktok-thumbnail,
.tiktok-video-card:hover .tiktok-thumbnail-video,
.tiktok-video-card:hover .tiktok-thumbnail-fallback {
    transform: scale(1.05);
}

.tiktok-video-card:hover .tiktok-thumbnail-video {
    filter: brightness(1.1);
}


.tiktok-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tiktok-video-card:hover .tiktok-play-overlay {
    opacity: 1;
}

.play-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.tiktok-video-card:hover .play-icon {
    transform: scale(1.1);
}

.tiktok-card-info {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.4);
}

.tiktok-username {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.tiktok-video-title {
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.9;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.tiktok-video-card:hover .tiktok-play-overlay {
    opacity: 1;
}

.tiktok-embed-container {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
    /* 16:9 Aspect Ratio for vertical video */
    background: #000;
}

.tiktok-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: var(--radius);
    color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-title {
        font-size: 2rem;
    }

    .showcase-subtitle {
        font-size: 1rem;
    }

    .tiktok-video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tiktok-showcase-page {
        padding: 2rem 1rem;
    }

    .showcase-hero {
        margin-bottom: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tiktok-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* KOC Creator Showcase Page - Refined */
.koc-showcase-container {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 20px 2rem 0 2rem;
}

.koc-header {
    text-align: center;
    margin-bottom: 2rem;
}

.koc-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.koc-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.koc-tabs-container {
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
}

.koc-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.koc-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.koc-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.koc-tab-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.koc-category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    animation: fadeIn 0.5s ease-out forwards;
}

.koc-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.koc-category-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.selection-in-progress {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border);
    border-radius: 28px;
    margin-top: 2rem;
}

.selection-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.koc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.koc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.koc-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(244, 160, 200, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(244, 160, 200, 0.1);
}

/* Top 3 Highlighting - Refined with Crown */
.koc-card.top-active {
    border: 2px solid rgba(244, 160, 200, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(244, 160, 200, 0.08) 100%);
    box-shadow: 0 0 40px rgba(244, 160, 200, 0.2);
}

.koc-rank-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #e84393 100%);
    color: #fff;
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(244, 160, 200, 0.6), 0 3px 9px rgba(0, 0, 0, 0.3);
    z-index: 10;
    clip-path: polygon(
            /* Top left bump */
            14% 0%, 14% 6%, 20% 6%, 20% 12%, 26% 12%, 26% 18%, 32% 18%, 32% 24%, 38% 24%, 38% 30%,
            /* Center top */
            44% 30%, 44% 24%, 50% 24%, 50% 18%,
            /* Top right bump */
            56% 18%, 56% 24%, 62% 24%, 62% 30%, 68% 30%, 68% 24%, 74% 24%, 74% 18%, 80% 18%, 80% 12%, 86% 12%, 86% 6%, 92% 6%, 92% 0%,
            /* Right side */
            86% 0%, 86% 6%, 80% 6%, 80% 12%, 74% 12%, 74% 18%, 68% 18%, 68% 24%, 62% 24%, 62% 30%, 56% 30%, 56% 36%, 56% 42%, 56% 48%,
            /* Bottom right */
            56% 54%, 56% 60%, 50% 60%, 50% 66%, 50% 72%, 50% 78%, 50% 84%, 50% 90%, 50% 96%, 50% 100%,
            /* Bottom point */
            44% 100%, 44% 96%, 44% 90%, 44% 84%, 44% 78%, 44% 72%, 44% 66%, 44% 60%, 38% 60%,
            /* Bottom left */
            38% 54%, 38% 48%, 38% 42%, 38% 36%, 38% 30%, 32% 30%, 32% 24%, 26% 24%, 26% 18%, 20% 18%, 20% 12%, 14% 12%, 14% 6%, 14% 0%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(244, 160, 200, 0.4));
}

.koc-rank-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(244, 160, 200, 0.8), 0 4px 12px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 5px 10px rgba(244, 160, 200, 0.6));
}

.koc-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.koc-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.koc-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    background: #111;
}

.koc-card:hover .koc-avatar {
    border-color: var(--primary);
    transform: scale(1.05);
}

.koc-tiktok-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.koc-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.koc-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.koc-username-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.koc-username {
    font-size: 0.6rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.koc-username:hover {
    text-decoration: underline;
}

/* Large TikTok Username (2x size) */
.koc-username-large {
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.koc-username-large:hover {
    text-decoration: underline;
}

/* Large Follower Count */
.koc-followers-stat-large {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.koc-followers-stat-large strong {
    color: #fff;
    font-weight: 700;
}

.followers-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.koc-stats-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

/* New Stats Section */
.koc-stats-section {
    margin-bottom: 1.25rem;
}

.koc-collabs-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.koc-collabs-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

/* Key Strengths Section */
.koc-strengths-section {
    margin-top: 1rem;
}

.koc-strengths-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.koc-strengths-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.koc-strength-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    background: rgba(244, 160, 200, 0.15);
    border: 1px solid rgba(244, 160, 200, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.2s ease;
}

.koc-strength-tag:hover {
    background: rgba(244, 160, 200, 0.25);
    border-color: rgba(244, 160, 200, 0.5);
    transform: translateY(-1px);
}

.koc-collabs-label {
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.koc-collabs-label span {
    font-size: 0.9rem;
}

.koc-collabs-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.koc-collabs-desc strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.koc-followers-stat {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.koc-followers-stat strong {
    color: #fff;
    font-weight: 700;
}

.koc-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.8rem;
    /* 1.6 * 3 */
}

.koc-history-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.koc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.koc-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
}

/* KOC Team Review Section */
.koc-review-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.koc-review-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.koc-review-bubble {
    position: relative;
    background: linear-gradient(135deg, rgba(244, 160, 200, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(244, 160, 200, 0.2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.koc-review-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(244, 160, 200, 0.2);
}

.koc-review-bubble::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 21px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(244, 160, 200, 0.08);
}

.koc-card:hover .koc-review-bubble {
    background: linear-gradient(135deg, rgba(244, 160, 200, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(244, 160, 200, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments for KOC cards */
@media (max-width: 768px) {
    .koc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .koc-header h1 {
        font-size: 2.5rem;
    }

    .koc-header p {
        font-size: 1rem;
    }

    .koc-review-bubble {
        font-size: 0.8rem;
        padding: 0.9rem 1rem;
    }
}

/* Simplified Creator Cards for Category Tabs */
.koc-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.koc-simple-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.koc-simple-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(244, 160, 200, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 12px rgba(244, 160, 200, 0.1);
}

.koc-simple-header {
    margin-bottom: 0.75rem;
}

.koc-simple-username {
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: block;
    transition: color 0.2s ease;
}

.koc-simple-username:hover {
    color: #fff;
    text-decoration: underline;
}

.koc-simple-collabs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.koc-simple-collabs strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

@media (max-width: 768px) {
    .koc-simple-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}