@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:wght@700&display=swap');

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

:root {
    --primary-gradient: linear-gradient(135deg, #FF006E 0%, #FB5607 50%, #FF006E 100%);
    --primary-color: #FF006E;
    --primary-dark: #E10057;
    --accent-pink: #FF006E;
    --accent-orange: #FB5607;
    --accent-teal: #FF006E;
    --secondary-color: #FF006E;
    --text-dark: #FFFFFF;
    --text-gray: #D0D0D0;
    --bg-light: #1A1A1A;
    --bg-white: #0D0D0D;
    --border-color: #333333;
    --shadow-sm: 0 1px 2px 0 rgba(255, 0, 110, 0.1);
    --shadow-md: 0 4px 12px 0 rgba(255, 0, 110, 0.2);
    --shadow-lg: 0 15px 35px 0 rgba(255, 0, 110, 0.25);
    --shadow-xl: 0 20px 50px 0 rgba(255, 0, 110, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #0D0D0D;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #FB5607;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 0, 110, 0.15);
    color: #FF006E;
    border: 2px solid #FF006E;
}

.btn-secondary:hover {
    background: #FF006E;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF006E;
    font-family: 'DM Sans', sans-serif;
}

.nav-brand i {
    color: #FF006E;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF006E;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        transition: var(--transition);
        border-bottom: 1px solid #333333;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
    }
}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1A0F2E 50%, #000000 100%);
    color: white;
    text-align: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 86, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #D0D0D0;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .hero-cta {
        flex-direction: column;
    }
}

.how-it-works, .categories, .cta-section {
    padding: 5rem 0;
}

.how-it-works {
    background: #0D0D0D;
}

.how-it-works h2, .categories h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #D0D0D0;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #1A1A1A;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    transition: var(--transition);
    border: 2px solid #333333;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF006E, #FB5607);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 0, 110, 0.25);
    border-color: #FF006E;
    background: #222222;
}

.step-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    transition: var(--transition);
    text-align: center;
    display: block;
    color: #FFFFFF;
    border: 2px solid #333333;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(251, 86, 7, 0.08));
    transition: top 0.3s ease;
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 0, 110, 0.25);
    border-color: #FF006E;
    background: #222222;
}

.category-card:hover::before {
    top: 0;
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.category-link {
    color: #FF006E;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.category-card:hover .category-link {
    color: #FB5607;
    transform: translateX(4px);
}

.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1A0F2E 50%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
}

.footer {
    background: #000000;
    color: #D0D0D0;
    position: relative;
    border-top: 2px solid #FF006E;
}

.footer-top {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(251, 86, 7, 0.03) 100%);
    padding: 4rem 0;
}

.footer-content-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 1200px) {
    .footer-content-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand-section {
    padding-right: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    color: #FF006E;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.footer-tagline {
    color: #D0D0D0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 0, 110, 0.1);
    border: 2px solid rgba(255, 0, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF006E;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.3);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 3px;
    background: linear-gradient(90deg, #FF006E, #FB5607);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #D0D0D0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: #FF006E;
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.newsletter-section {
    background: rgba(255, 0, 110, 0.08);
    border-left: 4px solid #FF006E;
    padding: 1.5rem;
    border-radius: 1rem;
}

.newsletter-text {
    color: #D0D0D0;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 0.5rem;
    background: rgba(26, 26, 26, 0.7);
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FF006E;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 0, 110, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF006E, transparent);
}

.footer-bottom-section {
    background: #0D0D0D;
    padding: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer-badges {
        justify-content: center;
        width: 100%;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    color: #FF006E;
    font-weight: 600;
}

.onboarding {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    background: #0D0D0D;
}

.onboarding-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.progress-step {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #1A1A1A;
    border: 2px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #D0D0D0;
    transition: var(--transition);
}

.progress-step.active {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
    transform: scale(1.05);
}

.progress-step.completed {
    background: #14B8A6;
    border-color: #14B8A6;
    color: white;
}

.progress-line {
    width: 4rem;
    height: 3px;
    background: #333333;
    margin: 0 0.5rem;
}

.progress-line.completed {
    background: #14B8A6;
}

.onboarding h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.onboarding-subtitle {
    text-align: center;
    color: #D0D0D0;
    margin-bottom: 3rem;
}

.profession-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.profession-card {
    position: relative;
    cursor: pointer;
}

.profession-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.profession-card .card-content {
    background: #1A1A1A;
    border: 2px solid #333333;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    color: #FFFFFF;
}

.profession-card input[type="radio"]:checked + .card-content {
    border-color: #FF006E;
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
}

.profession-card:hover .card-content {
    border-color: #FF006E;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.2);
}

.profession-card i {
    font-size: 3rem;
    color: #FF006E;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #333333;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #1A1A1A;
    color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF006E;
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.2);
    background: #222222;
}

.form-group small {
    display: block;
    color: #D0D0D0;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: var(--transition);
    border: 2px solid #333333;
    color: #FFFFFF;
}

.checkbox-label:hover {
    background: #222222;
    border-color: #FF006E;
}

.checkbox-label input {
    margin-right: 0.5rem;
    accent-color: #FF006E;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.payment-card {
    background: #1A1A1A;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.15);
    overflow: hidden;
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid #333333;
}

.profile-preview {
    background: #222222;
    padding: 2rem;
    text-align: center;
}

.preview-image, .preview-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 4px solid #FF006E;
}

.preview-placeholder {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.profession-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 0, 110, 0.3);
}

.location {
    color: #D0D0D0;
    font-size: 0.875rem;
}

.bio-preview {
    color: #D0D0D0;
    margin-top: 1rem;
}

.pricing-info {
    padding: 2rem;
}

.price {
    text-align: center;
    margin: 1rem 0;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: #FF006E;
}

.price .period {
    font-size: 1.5rem;
    color: #D0D0D0;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: #FF006E;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.payment-note {
    text-align: center;
    color: #D0D0D0;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.directory-hero, .page-hero {
    background: linear-gradient(135deg, #000000 0%, #1A0F2E 50%, #000000 100%);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.directory-hero h1, .page-hero h1 {
    color: white;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    color: #D0D0D0;
}

.directory-content {
    padding: 4rem 0;
    background: #0D0D0D;
}

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

.profile-card {
    background: #1A1A1A;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: #FFFFFF;
    border: 2px solid #333333;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 0, 110, 0.25);
    border-color: #FF006E;
    background: #222222;
}

.profile-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    background: linear-gradient(135deg, #FF006E, #FB5607);
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h3 {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.bio {
    color: #D0D0D0;
    font-size: 0.875rem;
    margin: 1rem 0;
}

.genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.genre-tag {
    background: rgba(255, 0, 110, 0.1);
    color: #FF006E;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.profile-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #333333;
}

.view-profile {
    color: #FF006E;
    font-weight: 700;
    transition: var(--transition);
}

.profile-card:hover .view-profile {
    color: #FB5607;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-info {
    color: #D0D0D0;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: #FF006E;
    margin-bottom: 1rem;
}

.profile-hero {
    background: linear-gradient(135deg, #000000 0%, #1A0F2E 50%, #000000 100%);
    color: white;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-header-image img, .placeholder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FF006E;
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
}

.placeholder-avatar {
    background: rgba(255, 0, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.profession-badge-large {
    display: inline-block;
    background: rgba(255, 0, 110, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    color: #FFFFFF;
}

.profile-content {
    padding: 4rem 0;
    background: #0D0D0D;
}

.profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

.profile-section {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #FF006E;
    border: 1px solid #333333;
}

.profile-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333333;
    color: #FFFFFF;
}

.bio-full {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #D0D0D0;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

.audio-player {
    background: #222222;
    padding: 1.25rem;
    border-radius: 0.875rem;
    border-left: 4px solid #FF006E;
    transition: var(--transition);
}

.audio-player:hover {
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.2);
}

.audio-player audio {
    width: 100%;
}

.sample-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #D0D0D0;
    font-weight: 600;
}

.sidebar-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid #333333;
    border-top: 4px solid #FF006E;
}

.sidebar-card h3 {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.contact-note {
    color: #D0D0D0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.portfolio-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #222222;
    border-radius: 0.75rem;
    transition: var(--transition);
    border: 1px solid #333333;
    color: #FFFFFF;
}

.portfolio-link:hover {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    color: white;
    transform: translateX(4px);
    border-color: transparent;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    color: #FF006E;
    border: 2px solid #333333;
}

.share-btn:hover {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    color: white;
    transform: scale(1.15);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #FF6B6B;
    border-left: 4px solid #EF4444;
}

.alert-success {
    background: rgba(16, 185, 129, 0.2);
    color: #52E0B8;
    border-left: 4px solid #10B981;
}

.pricing-content, .about-content, .contact-content {
    padding: 4rem 1.5rem;
    background: #0D0D0D;
}

.about-content {
    padding: 4rem 1.5rem;
}

.contact-content {
    padding: 4rem 1.5rem;
}

.pricing-card-main {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: #1A1A1A;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.15);
    overflow: hidden;
    border: 1px solid #333333;
}

.pricing-header {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.price-display {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.period {
    font-size: 1.25rem;
    opacity: 0.95;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FFFFFF;
    padding: 0.75rem 0;
}

.pricing-features i {
    color: #10B981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-cta {
    padding: 2rem;
    border-top: 1px solid #333333;
}

.secure-note {
    text-align: center;
    color: #D0D0D0;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.secure-note i {
    color: #10B981;
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #333333;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.faq-subtitle {
    text-align: center;
    color: #D0D0D0;
    margin-bottom: 2.5rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #1A1A1A;
    border: 2px solid #333333;
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #FF006E;
}

.faq-item.active {
    border-color: #FF006E;
    background: rgba(255, 0, 110, 0.05);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 1rem;
}

.faq-trigger:hover {
    background: rgba(255, 0, 110, 0.05);
}

.faq-item.active .faq-trigger {
    background: rgba(255, 0, 110, 0.1);
}

.faq-question {
    color: #FFFFFF;
    font-weight: 600;
    text-align: left;
    flex: 1;
}

.faq-icon {
    color: #FF006E;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: #D0D0D0;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.7;
}

/* Contact Page */
.contact-wrapper {
    margin-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info {
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 1.5rem;
    border: 1px solid #333333;
}

.contact-info h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #D0D0D0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #222222;
    border-radius: 1rem;
    border-left: 4px solid #FF006E;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 0, 110, 0.08);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.5rem;
    color: #FF006E;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: #D0D0D0;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: #FF006E;
}

.contact-details a:hover {
    color: #FB5607;
}

.contact-form-container {
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 1.5rem;
    border: 1px solid #333333;
}

.contact-form-container h2 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #333333;
    border-radius: 0.75rem;
    font-size: 1rem;
    background: #222222;
    color: #FFFFFF;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #FF006E;
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.2);
    background: rgba(255, 0, 110, 0.05);
}

.form-note {
    text-align: center;
    color: #D0D0D0;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* About Page */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 1.5rem;
    border: 1px solid #333333;
}

.about-section h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.about-section p {
    color: #D0D0D0;
    line-height: 1.8;
    margin: 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

.two-column h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.two-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.two-column li {
    color: #D0D0D0;
    padding-left: 1.5rem;
    position: relative;
}

.two-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #FF006E;
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #FF006E;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #D0D0D0;
    font-size: 0.95rem;
}

.cta-section-inline {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    border-radius: 1.5rem;
    margin-top: 3rem;
    color: white;
}

.cta-section-inline h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-section-inline p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.page-404 {
    text-align: center;
    padding: 4rem 2rem;
}

.page-404 h1 {
    font-size: 5rem;
    margin: 1rem 0;
    color: #FF006E;
}

.page-404 p {
    font-size: 1.25rem;
    color: #D0D0D0;
    margin-bottom: 2rem;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    border-top: 2px solid #FF006E;
    box-shadow: 0 -5px 20px rgba(255, 0, 110, 0.2);
    z-index: 8888;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-notice-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-notice-text h4 {
    color: #FF006E;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-notice-text p {
    color: #D0D0D0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-notice-text a {
    color: #FF006E;
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: #FB5607;
}

.cookie-notice-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-notice-buttons button {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .cookie-notice-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .cookie-notice-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-notice-buttons button {
        width: 100%;
    }
}

/* Dashboard */
.dashboard-content {
    padding: 4rem 0;
    background: #0D0D0D;
    min-height: calc(100vh - 300px);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
}

.dashboard-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.dashboard-user-card {
    background: #1A1A1A;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    border: 1px solid #333333;
    margin-bottom: 2rem;
}

.dashboard-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF006E;
    margin: 0 auto 1rem;
    display: block;
}

.dashboard-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF006E, #FB5607);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1rem;
    border: 4px solid #FF006E;
}

.dashboard-user-card h3 {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.username-display {
    color: #FF006E;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.subscription-status {
    margin-top: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border: 1px solid #10B981;
}

.status-inactive {
    background: rgba(107, 114, 128, 0.2);
    color: #9CA3AF;
    border: 1px solid #9CA3AF;
}

.dashboard-nav {
    background: #1A1A1A;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    border: 1px solid #333333;
}

.dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    color: #D0D0D0;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.dashboard-nav-link:hover {
    background: #222222;
    color: #FF006E;
    border-left-color: #FF006E;
}

.dashboard-nav-link.active {
    background: rgba(255, 0, 110, 0.1);
    color: #FF006E;
    border-left-color: #FF006E;
    font-weight: 600;
}

.dashboard-main {
    background: #1A1A1A;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
    border: 1px solid #333333;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333333;
}

.section-header h2 {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h2 i {
    color: #FF006E;
    font-size: 1.5rem;
}

.section-header p {
    color: #D0D0D0;
    margin-top: 0.5rem;
}

.dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.image-upload-wrapper {
    border: 2px dashed #333333;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.image-upload-wrapper:hover {
    border-color: #FF006E;
    background: rgba(255, 0, 110, 0.05);
}

.image-upload-wrapper input[type="file"] {
    display: block;
    margin: 1rem 0;
}

.preview-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 0.5rem;
    object-fit: cover;
    border: 2px solid #FF006E;
}

.current-image {
    margin-bottom: 1.5rem;
}

.info-box {
    background: #222222;
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 4px solid #FF006E;
    color: #FFFFFF;
}

.genre-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
}

.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #222222;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #333333;
}

.info-card-header {
    background: linear-gradient(135deg, #FF006E, #FB5607);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.125rem;
}

.info-card-body {
    padding: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
}

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

.info-label {
    color: #D0D0D0;
    font-weight: 500;
}

.info-value {
    color: #FFFFFF;
    font-weight: 600;
}

.subscription-actions {
    margin-top: 1.5rem;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #EF4444;
    padding: 1.25rem;
    border-radius: 0.75rem;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.warning-box i {
    flex-shrink: 0;
    font-size: 1.25rem;
}

.cancel-form {
    margin-top: 1.5rem;
}

.no-subscription {
    text-align: center;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.no-subscription p {
    color: #D0D0D0;
    margin-bottom: 1.5rem;
}

.billing-note {
    background: #222222;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #FF006E;
    margin-top: 2rem;
}

.billing-note h4 {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.billing-note h4 i {
    color: #FF006E;
}

.billing-note p {
    color: #D0D0D0;
    margin: 0;
}
