:root {
    --background-color: #ffffff;
    --primary-color: #FE6287;
    --text-color: #000000;
    --font-family: "Poppins", serif;
}

[data-theme="dark"] {
    --background-color: #12151E;
    --primary-color: #FE6287;
    --text-color: #ffffff;
    --font-family: "Poppins", serif;
}

body {
    background-color: var(--background-color) !important;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #12151E;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 5px solid #ffffff;
    border-top: 5px solid #FE6287;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

#toast-container {
    font-family: var(--font-family);
}

.navbar {
    position: sticky !important;
    top: 0;
    background: var(--background-color) !important;
    border-bottom: .5px solid #2b2c2d;
    z-index: 1;
}

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

.navbar-burger {
    color: var(--text-color);
}

.nav-item {
    margin-right: 20px;
}

.nav-link {
    color: var(--text-color) !important;
    font-size: 16px !important;
    font-family: var(--font-family);
}

.nav-link:hover {
    text-decoration: underline;
}

.primary-button {
    background-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    font-size: 16px !important;
    font-family: var(--font-family) !important;
}

#modeToggleBtn {
    border: 1px solid #2b2c2d;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    color: var(--text-color) !important;
}

.showcase h1 {
    font-family: var(--font-family);
    color: var(--primary-color);
}

.showcase p {
    font-family: var(--font-family);
    color: var(--text-color);
}

.showcase textarea {
    background-color: transparent;
    border: 1px solid #2b2c2d;
    min-height: 150px !important;
    color: var(--text-color) !important;
    font-family: var(--font-family);
}

.showcase textarea::placeholder {
    color: var(--text-color);
}

.showcase textarea:focus {
    box-shadow: none;
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.showcase button {
    position: relative;
    bottom: 50px;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer !important;
}

.discover {
    height: 300px;
    border: 1px solid #2b2c2d;
    display: flex;
    flex-direction: column;
}

.discover div {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discover div button {
    width: auto;
    color: #fff !important;
    border-radius: 999px;
}

.discover div h3 {
    font-family: var(--font-family);
    color: #fff;
}

.reggae {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/reggae.png);
    background-size: cover;
    background-position: center;
}

.soul {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/soul.png);
    background-size: cover;
    background-position: center;
}

.jazz {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/jazz.png);
    background-size: cover;
    background-position: center;
}

.pop {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/pop.png);
    background-size: cover;
    background-position: center;
}

.hiphop {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/hiphop.png);
    background-size: cover;
    background-position: center;
}

.edm {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/edm.png);
    background-size: cover;
    background-position: center;
}

.rock {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/rock.png);
    background-size: cover;
    background-position: center;
}

.faq-section h2 {
    margin-top: 100px;
    color: var(--text-color);
    font-family: var(--font-family);
}

.faq-section .accordion-item {
    background-color: transparent !important;
    border: 1px solid #2b2c2d;
}

.faq-section .accordion-button {
    background-color: transparent !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
    font-family: var(--font-family);
}

.faq-section .accordion-button::after {
    color: #ff6347 !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
    color: #32cd32;
}

.faq-section .accordion-collapse {
    color: var(--text-color);
    font-family: var(--font-family);
}

.blog-section h2 {
    margin-top: 100px;
    font-family: var(--font-family);
    color: var(--text-color);
}

.blog-section p {
    color: var(--text-color);
    font-family: var(--font-family);
}

.blog-section .card {
    background-color: transparent;
    border: 1px solid #2b2c2d;
}

.blog-section .card h5, .blog-section .card h5 {
    color: var(--text-color);
    font-family: var(--font-family);
}

footer {
    border-top: 1px solid #2b2c2d;
}

footer img {
    width: auto;
    height: 60px;
}

footer p, footer h4 {
    font-family: var(--font-family);
    color: var(--text-color);
}

footer h4 {
    font-weight: 600;
}

footer ul li a {
    font-family: var(--font-family);
    color: var(--text-color) !important;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

.page-title {
    font-family: var(--font-family);
    color: var(--text-color);
}

.page-subtitle {
    font-family: var(--font-family);
    color: var(--text-color);
    font-size: 18px;
}

.feature {
    border: 1px solid #2b2c2d;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature img {
    width: 80px;
    height: 80px;
}

.feature h3, .feature p {
    color: var(--text-color);
    font-family: var(--font-family);
}

.pricing .card {
    background-color: transparent;
    border: 1px solid #2b2c2d;
}

.pricing .card .card-header {
    border-bottom: 1px solid #2b2c2d;
}

.pricing .card .card-header h4 {
    color: var(--text-color);
    font-family: var(--font-family);
}

.pricing .card .primary-background {
    background-color: var(--primary-color);
}

.pricing .card .card-body .card-title {
    color: var(--text-color);
    font-family: var(--font-family);
}

.pricing .card .card-body ul li {
    color: var(--text-color);
    font-family: var(--font-family);
}

.blog-content {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 18px;
}

.blog-cover {
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}

.music-nodata {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 18px;
}

.music-spinner {
    color: var(--text-color);
    width: 80px;
    height: 80px;
}

.privacy-policy-title, .terms-of-use-title {
    font-family: var(--font-family);
    color: var(--text-color);
}

.privacy-policy-content, .terms-of-use-content {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 18px;
}

.form-label {
    color: var(--text-color);
    font-family: var(--font-family);
}

.form-control {
    background-color: transparent !important;
    border: 1px solid #3d3f40 !important;
    color: var(--text-color) !important;
    font-family: var(--font-family);
    padding: 10px 20px !important;
}

.form-control::placeholder {
    color: var(--text-color) !important;
}

.form-control:focus {
    box-shadow: none !important;
    background-color: transparent;
    border: 1px solid var(--primary-color) !important;
}

.register-acknowledgement, .auth-link {
    color: var(--text-color);
    font-family: var(--font-family);
}

.register-acknowledgement a, .auth-link a {
    color: var(--primary-color);
}

.forgot-password-link {
    color: var(--primary-color);
    font-family: var(--font-family);
}

.remember-me label {
    color: var(--text-color);
    font-family: var(--font-family);
}

.remember-me input {
    background-color: transparent;
    border: 1px solid #3d3f40;
    box-shadow: none !important;
}

.remember-me input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.oauth-buttons p {
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 14px;
}

.oauth-buttons a {
    background-color: transparent;
    border: 1px solid #3d3f40;
    color: var(--text-color);
    font-family: var(--font-family);
}

.oauth-buttons a:hover {
    color: var(--text-color);
    border: 1px solid #3d3f40;
}

.oauth-buttons a:focus {
    color: var(--text-color) !important;
}

.cookie-consent-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    z-index: 999;
    text-align: center;
    padding: 20px;
    border-top: .5px solid #2b2c2d;
}

.cookie-consent-popup p {
    margin: 0;
    font-size: 16px;
}

.cookie-consent-popup p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.payment-modal .modal-dialog {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.payment-modal .modal-dialog .modal-content {
    background-color: var(--background-color);
}

.stripe-button {
    background-color: #6772e5 !important;
    border-color: #6772e5 !important;
    font-family: var(--font-family) !important;
    color: #fff !important;
}

.paypal-button {
    background-color: #ffc439 !important;
    border-color: #ffc439 !important;
    color: #000 !important;
    font-family: var(--font-family) !important;
}