* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}

html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, p, span, textarea, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

body div, body span {
    position: relative;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 3px;
}

nav ul a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav ul a:hover {
    color: #00d4ff;
}

nav ul li {
    font-size: 20px;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.cta-button {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

body, main {
    place-items: center;
    place-content: center;
    justify-content: space-between;
    align-items: center;
}

main {
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
    background: transparent;
    gap: 20px;
    margin-top: 20px;
}

section {
    margin: 0 auto;
    padding: 40px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: transparent;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.primary-btn {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 15px 40px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

/* Featured Section */
.featured-artists, .featured-items {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.featured-title {
    text-align: center;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artists-grid, .feature-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    place-items: center;
    place-content: center;
    justify-content: space-evenly;
}

.artist-item, .featured-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-item:hover, .featured-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.feature-grid img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .feature-grid img {
        max-width: 50px;
        max-height: 50px;
    }
}

/* Section Container */
.section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin-bottom: 60px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.column-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.column-text p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 16px;
}

.column-image {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #00d4ff;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* Stats Section */
.stats-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card.featured {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #b0b0b0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Testimonials */
.testimonial-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(0, 212, 255, 0.05));
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.testimonial-text {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-excerpt {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    padding: 80px 40px;
    text-align: center;
    margin: 100px 40px;
    border-radius: 12px;
}

.cta-banner h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-banner .primary-btn {
    background: white;
    color: #7c3aed;
}

.cta-banner .primary-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00d4ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

/* Auth Pages Styles */
.auth-container {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
}

.auth-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
}

.auth-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
    color: #666;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 70%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #00d4ff;
}

.form-submit {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-link {
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
    margin-top: 20px;
}

.auth-link a {
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: #7c3aed;
}

.response-message {
    min-height: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loader {
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.notification {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.notification.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.notification.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }

    .logo {
        font-size: 18px;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
        background: linear-gradient(to bottom, #0f1425, #0a0e27);
        gap: 10px;
        overflow-x: auto;
        border-radius: 20px;
        min-height: 30px;
        padding: 5px;
    }

    .hero {
        margin-top: 60px;
        min-height: auto;
        padding: 60px 20px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 32px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column-image {
        min-height: 250px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .featured-artists {
        padding: 0 20px;
    }

    .cta-banner {
        margin: 60px 20px;
    }

    .auth-box {
        padding: 30px;
    }

    .auth-box h2 {
        font-size: 24px;
    }
}

.full-width {
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    place-content: center;
    place-items: center;
}

.form-row .input {
    width: auto;
}

.form-group .pricing-card {
    display: flex;
    flex-direction: column;
    color: #00d4ff;
    padding: 3px;
}

.multiple_options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.multiple_options .selected_option {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 25px;
    align-content: end;
    align-items: end;
    justify-content: center;
    width: 100%;
}

.multiple_options .svg {
    position: absolute;
}

.multiple_options .selected_option svg {
    animation: rollIn 0.5s ease-out forwards;
}

.multiple_options .selected_option.removing {
    animation: rollOut 0.4s ease-in forwards;
}

.form-group svg {
    color: #00ff00;
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(-180deg) scale(0.3);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) rotate(15deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    40% {
        opacity: 0.7;
        transform: translateY(-10px) rotate(-90deg) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) rotate(-180deg) scale(0.3);
    }
}

.multiple_options span.selected_option {
    animation: gentleBounce 0.6s ease;
}

@keyframes gentleBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.loader_box {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
}