:root {
    --primary-color: #7C3AED;
    --primary-hover: #6D28D9;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --darker-bg: #0B1120;
    --light-text: #F9FAFB;
    --gray-text: #9CA3AF;
    --card-bg: #1F2937;
    --border-color: #374151;
}

body.dark-theme {
    background-image: url('../images/music crowd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--light-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;

}

body.dark-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Navigation */
.navbar {
    background: var(--dark-bg);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-spacing {
    gap: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-text) !important;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0.8rem !important;
}

.nav-link:hover {
    color: var(--light-text) !important;
}

.nav-link.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-right: 0.5rem;
}

.nav-link.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-link.btn-primary:hover {
    background-color: var(--primary-hover);
}

.nav-link.btn-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.nav-link.btn-outline.active {
    background-color: var(--primary-color);
    color: white !important;
}

.nav-link.btn-primary.active {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 12rem 0 8rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(11, 17, 32, 0.9),
        rgba(11, 17, 32, 0.85)
    );
    z-index: 0;
}

/* Hero Section */
.hero-section {
    padding: 12rem 0 8rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content .lead {
    font-size: 1.6rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--gray-text);
    color: var(--light-text);
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--light-text);
}

.trust-badges {
    margin-top: 6rem;
}

.trust-badges span {
    display: block;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.platform-logos {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 2rem 0;
}

.platform-logos img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.platform-logos img:hover {
    opacity: 1;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background-color: var(--darker-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: visible;
    line-height: 1;
}

.stat-item h3 span {
    display: inline-block;
}

.stat-item p {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
    padding-top: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-text);
    margin: 0;
}

/* Creators Section */
.creators-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background-color: var(--darker-bg);
}

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

.creator-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.creator-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.creator-info {
    padding: 1.5rem;
}

.creator-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.creator-info p {
    color: var(--gray-text);
    margin: 0;
}


/* CTA Section */
.cta-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-hover));
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background-color: var(--light-text);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-buttons .btn {
    margin: 0.5rem;
    min-width: 140px;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul a:hover {
    color: var(--light-text);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--gray-text);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-text);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-link.btn-primary {
        margin: 0.5rem 0;
    }
    
    /* Mobile Navigation - Cleaned up version */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(11, 17, 32, 0.98);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        border: 1px solid rgba(124, 58, 237, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    .navbar-collapse.collapsing {
        height: auto !important;
        transition: height 0.35s ease;
    }
    
    /* Ensure navbar items are properly styled */
    .navbar-nav {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(124, 58, 237, 0.1);
        color: var(--primary-color) !important;
    }
    
    /* Fix button styling in mobile nav */
    .navbar-nav .nav-link.btn-primary,
    .navbar-nav .nav-link.btn-outline {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Ensure toggler works properly */
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        margin-right: 1rem;
        z-index: 1000;
    }
    
    .navbar-toggler:hover {
        border-color: var(--primary-hover);
        background-color: rgba(124, 58, 237, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
        border-color: var(--primary-color);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28124, 58, 237, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: all 0.3s ease;
    }
    
    /* Fix logo positioning on mobile */
    .navbar-brand {
        margin-right: auto;
        margin-left: 0;
        padding-left: 1rem;
        z-index: 1000;
    }
    
    .navbar-brand img {
        height: 45px;
        width: auto;
    }
    
    /* Fix CTA buttons on mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.25rem 0;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item h3 {
        font-size: 3rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .platform-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .creator-grid {
        grid-template-columns: 1fr;
    }
    
    /* Additional CTA button fixes for small screens */
    .cta-buttons {
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    /* Additional mobile navigation improvements */
    .navbar-brand {
        padding-left: 0.75rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-toggler {
        margin-right: 0.75rem;
        padding: 0.4rem;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Fix for very small screens */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 150px;
        margin: 0.25rem 0;
        font-size: 0.9rem; 
        padding: 0.75rem 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .trust-badges {
        margin-top: 3rem;
    }
    
    .trust-badges span {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .platform-logos {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .platform-logos img {
        height: 30px;
        width: 30px;
    }
    
    /* Final mobile navigation adjustments for very small screens */
    .navbar-brand {
        padding-left: 0.5rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-toggler {
        margin-right: 0.5rem;
        padding: 0.35rem;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

/* Auth Container Styles */
body {
    min-height: 100vh;
    background-color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    padding-top: 76px; /* Navbar height + padding */
}

.auth-container {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-left {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.auth-left h2 {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: 24px;
    color: #000;
}

.auth-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.form-text {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid #eee;
    width: 100%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.auth-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.auth-button:hover {
    background: var(--primary-hover);
}

.form-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.auth-text {
    color: #666;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.alert-danger {
    background-color: #fee2e2;
    color: #dc2626;
}

.alert-success {
    background-color: #dcfce7;
    color: #16a34a;
} 

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.partners-section .section-title {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.partners-section p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* Responsive adjustments for partners */
@media (max-width: 768px) {
    .partner-item {
        min-width: 100px;
        height: 60px;
        margin: 0 1rem;
    }
    
    .partners-section {
        padding: 3rem 0;
    }
}

/* Distribution Section */
.distribution-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(109, 40, 217, 0.1));
    position: relative;
    overflow: hidden;
}

.distribution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/music crowd.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
}

.distribution-section .container {
    position: relative;
    z-index: 1;
}

.distribution-content {
    padding-right: 2rem;
}

.distribution-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    animation: slideInLeft 1s ease-out;
}

.distribution-content .lead {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.distribution-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.8s;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.feature-text p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.95rem;
}

.distribution-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 1s both;
}

.distribution-cta .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.laptop-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
}

.laptop-image {
    max-width: 150%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* Entry Motion Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive adjustments for distribution */
@media (max-width: 991px) {
    .distribution-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .distribution-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .distribution-section {
        padding: 4rem 0;
        margin: 2rem 0;
    }
    
    .distribution-content .section-title {
        font-size: 2rem;
    }
    
    .distribution-content .lead {
        font-size: 1.1rem;
    }
    
         .laptop-image {
         max-width: 120%;
     }
 }

/* Top Artists Section */
.top-artists-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.95), rgba(31, 41, 55, 0.95));
    position: relative;
    overflow: hidden;
}

.top-artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/music crowd.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
}

.top-artists-section .container {
    position: relative;
    z-index: 1;
}

.top-artists-section .section-title {
    color: var(--light-text);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.top-artists-section p {
    color: var(--gray-text);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.artists-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.artists-track {
    display: flex;
    animation: scrollArtists 25s linear infinite;
    width: max-content;
}

.artists-track:hover {
    animation-play-state: paused;
}

.artist-frame {
    flex-shrink: 0;
    margin: 0 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.artist-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(109, 40, 217, 0.1));
    z-index: 0;
}

.artist-frame:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.artist-frame .artist-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.artist-frame .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-frame:hover .artist-image img {
    transform: scale(1.1);
}

.artist-frame .artist-info {
    position: relative;
    z-index: 1;
}

.artist-frame .artist-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.artist-frame .artist-info .listeners {
    color: var(--gray-text);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

@keyframes scrollArtists {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Responsive adjustments for top artists */
@media (max-width: 991px) {
    .artist-frame {
        min-width: 250px;
        margin: 0 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .top-artists-section {
        padding: 4rem 0;
        margin: 2rem 0;
    }
    
    .artist-frame {
        min-width: 220px;
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .artist-frame .artist-image {
        width: 100%;
        height: 150px;
    }
    
    .artist-frame .artist-info h4 {
        font-size: 1.2rem;
    }
    
    .artist-frame .artist-info .listeners {
        font-size: 0.9rem;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(109, 40, 217, 0.05));
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 1.5rem;
}

.story-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.story-text {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats span {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-stats i {
    margin-right: 0.5rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background: var(--darker-bg);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 300px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-color);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.95), rgba(31, 41, 55, 0.95));
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.pricing-card.professional {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-text);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-text);
}

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

.plan-features li {
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Responsive adjustments for new sections */
@media (max-width: 991px) {
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, var(--primary-color), transparent);
    }
    
    .step-connector::after {
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid var(--primary-color);
        border-bottom: none;
    }
    
    .pricing-card.professional {
        transform: none;
    }
    
    .pricing-card.professional:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .success-stories-section,
    .how-it-works-section,
    .pricing-section {
        padding: 4rem 0;
        margin: 2rem 0;
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
}
/* Subscribe Form Styles */
.subscribe-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.subscribe-content {
    flex: 1;
    max-width: 500px;
}

.subscribe-image {
    flex-shrink: 0;
    margin-left: 2rem;
}

.subscribe-image img {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.email-input-group {
    min-width: 300px;
}

.subscribe-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.subscribe-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
}

.subscribe-form .form-control::placeholder {
    color: #666;
}

.subscribe-form .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
}

.subscribe-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Subscribe Form Alert Messages */
.subscribe-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.3s ease-out;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-buttons .btn {
    margin: 0.5rem;
    min-width: 140px;
}

/* Responsive adjustments for subscribe form */
@media (max-width: 768px) {
    .subscribe-form {
        padding: 1.5rem;
    }
    
    .subscribe-form .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-content {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .subscribe-image {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .subscribe-image img {
        max-width: 150px;
    }
    
    .email-input-group {
        min-width: 100%;
        width: 100%;
    }
    
    .subscribe-form form {
        flex-direction: column;
        width: 100%;
    }
    
    .subscribe-form .btn {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .subscribe-form {
        padding: 1rem;
    }
    
    .subscribe-form .d-flex {
        gap: 1rem;
    }
    
    .subscribe-image img {
        max-width: 120px;
    }
    
    .subscribe-content {
        margin-bottom: 1rem;
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 4rem 0 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.95), rgba(31, 41, 55, 0.95));
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/music crowd.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero-content .lead {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    margin-top: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stats .stat-item p {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: var(--darker-bg);
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.mission-card .card-icon, .vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-card .card-icon i, .vision-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(109, 40, 217, 0.05));
}

.story-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.story-content .lead {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--darker-bg);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: var(--darker-bg);
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.95), rgba(31, 41, 55, 0.95));
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-info .bio {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-info .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-info .social-links a {
    color: var(--gray-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-info .social-links a:hover {
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(109, 40, 217, 0.05));
}

.why-choose-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.why-choose-content .lead {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.features-list .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.features-list .feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.features-list .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.features-list .feature-text p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

.why-choose-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for About page */
@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -1.25rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 3rem 0 2rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .mission-vision-section,
    .our-story-section,
    .values-section,
    .team-section,
    .why-choose-section {
        padding: 3rem 0;
        margin: 1.5rem 0;
    }
    
    .story-content .section-title {
        font-size: 2rem;
    }
    
    .why-choose-content .section-title {
        font-size: 2rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .features-list .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .features-list .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats .row {
        gap: 1rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .team-info {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page-section {
    padding: 8rem 0 4rem;
    margin: 2rem 0;
    background: var(--darker-bg);
    min-height: 100vh;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-updated {
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-section ul {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.contact-info strong {
    color: var(--primary-color);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 6rem 0 3rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section ul {
        padding-left: 1.5rem;
    }
}

/* Custom X (Twitter) Icon */
.fab.fa-twitter {
    position: relative;
}

.fab.fa-twitter::before {
    content: "X";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    color: inherit;
}
