/* Main CSS Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --dark-color: #000000;
    --light-color: #ecf0f1;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-rounded {
    border-radius: 50px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ff8800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000000;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff8800;
}

.section-title p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: #1a1a1a;
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #333;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff8800;
}

.feature-card p {
    color: #ffffff;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #000000;
    color: white;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #1a1a1a;
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #333;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

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

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff8800;
}

.step-card p {
    color: #ffffff;
}

/* Popular Content */
.popular-content {
    padding: 100px 0;
    background: #ffffff;
    color: #ff8800;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.content-card {
    background: #ffffff;
    color: #ff8800;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #ff8800;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.content-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #ddd;
    position: relative;
}

.content-premium {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.content-info {
    padding: 20px;
}

.content-category {
    color: #ff8800;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.content-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff8800;
}

.content-creator {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.creator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    background: var(--gradient-primary);
}

.creator-name {
    font-weight: 500;
    color: #ff8800;
}

.content-price {
    font-weight: bold;
    color: #ff8800;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #000000;
    color: white;
}

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

.testimonial-card {
    background: #1a1a1a;
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #333;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ffffff;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    background: var(--gradient-primary);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: #000000;
    color: white;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #1a1a1a;
    color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid #333;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    color: #ff8800;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.pricing-duration {
    color: #ffffff;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer-about p {
    margin-bottom: 20px;
    color: #ccc;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #1a1a1a;
    color: white;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: var(--box-shadow);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

.form-text {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

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

.forgot-password {
    color: #ff8800;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.modal-footer {
    text-align: center;
    margin-top: 30px;
}

.modal-footer p {
    margin-top: 20px;
    font-size: 0.9rem;
}

.modal-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Content Page Specific Styles */
.content-header {
    margin-top: 80px;
    padding: 30px 0;
    background: var(--gradient-primary);
    color: white;
}

.content-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.content-header p {
    opacity: 0.9;
}

.content-main {
    padding: 50px 0;
}

.content-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.filter-button {
    padding: 8px 15px;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
    background: var(--gradient-primary);
    color: white;
}

.search-bar {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    background: #f1f1f1;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--gradient-primary);
    color: white;
}

/* Creator Dashboard */
.dashboard {
    margin-top: 80px;
    padding: 30px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-title {
    font-size: 2rem;
    color: var(--primary-color);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.dashboard-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #666;
}

.dashboard-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.dashboard-table {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.dashboard-table h3 {
    padding: 20px;
    margin: 0;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background: #f9f9f9;
    font-weight: 600;
}

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

.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-success {
    background: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
}

.status-pending {
    background: rgba(243, 156, 18, 0.2);
    color: var(--warning-color);
}

.status-danger {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger-color);
}

/* Members Only Page Styles */
.members-only-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.members-only-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.member-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 30px;
    font-size: 1.1rem;
}

.member-status i {
    color: #00ff00;
    font-size: 1.2rem;
}

.exclusive-content {
    padding: 80px 0;
    background: var(--bg-color);
}

.content-card.premium {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #ff8800;
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.1);
}

.content-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 136, 0, 0.2);
}

.content-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8800, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    color: #000;
}

.member-stats {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff8800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
    color: var(--danger-color);
}

/* Video Player */
.video-container {
    width: 100%;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.video-info {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.video-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.video-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.content-sidebar {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.creator-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.creator-profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.creator-profile-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.creator-profile-info p {
    color: #666;
    font-size: 0.9rem;
}

.sidebar-section {
    margin-top: 30px;
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.similar-content {
    display: grid;
    gap: 20px;
}

.similar-item {
    display: flex;
    gap: 15px;
}

.similar-item-img {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    background: #ddd;
    flex-shrink: 0;
}

.similar-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.similar-item-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Account Settings */
.settings {
    margin-top: 80px;
    padding: 50px 0;
}

.settings-container {
    display: flex;
    gap: 30px;
}

.settings-sidebar {
    flex: 1;
    max-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.settings-main {
    flex: 3;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.settings-links {
    list-style: none;
}

.settings-links li {
    margin-bottom: 15px;
}

.settings-links a {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.settings-links a:hover,
.settings-links a.active {
    background: var(--gradient-primary);
    color: white;
}

.settings-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
    min-width: 250px;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .settings-container {
        flex-direction: column;
    }
    
    .settings-sidebar {
        max-width: 100%;
    }
}

/* Loading Spinner */
.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Live Stream Specific */
.live-badge {
    display: inline-block;
    background: var(--danger-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.live-chat {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-user {
    font-weight: 600;
    margin-bottom: 5px;
}

.chat-text {
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 18px;
    display: inline-block;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-right: 10px;
}

.chat-input button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }