: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: 2rem 1rem;
    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: 1.5rem;
}

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

/* 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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    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);
}

/* 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;
}

/* Table */
.table-container,
.gb-table-wrapper {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-top: 1rem;
}

.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);
}

/* 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-closed {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

/* TikTok Card */
.tiktok-login-card {
    text-align: center;
    padding: 2.5rem;
    border: 2px dashed var(--border);
    border-radius: 20px;
    transition: border-color 0.3s;
}

.tiktok-login-card:hover {
    border-color: var(--primary);
}

.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);
    }
}

.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 {
    text-align: center;
    padding: 4rem 1rem;
    opacity: 0.5;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

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

/* 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: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.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;
}

/* 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;
    background: rgba(0, 255, 128, 0.9);
    color: #000;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
}

.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;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.6rem 0.4rem 0.8rem;
    border-radius: 99px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.user-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.logout-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
}

/* 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.4rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    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;
}