.hero {
    background-size: cover;
    background-image: var(--bg-image);
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 70px 5vw;
}

.hero h1 {
    font-size: clamp(32px, 10vw, 100px);
    max-width: 700px;
    margin-bottom: -30px;
    font-weight: 800;
    color: #93e6dc;
}

.hero>h1,
.hero>p {
    position: relative;
    z-index: 1;
}

.hero-h1-sub-bg {
    position: absolute;
    padding: 60px 430px;
    margin-top: 26px;
    background-color: #000000cd;
    filter: blur(6px);
    border-radius: 14px;
}

.hero-h1-fee-bg {
    position: absolute;
    padding: 60px 110px;
    margin-top: 156px;
    background-color: #000000cd;
    filter: blur(6px);
    border-radius: 14px;
}

.hero p {
    max-width: 600px;
    font-family: var(--font3);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: bold;
    margin-top: -30px;
    margin-left: auto;
    margin-right: 0;
    color: #ccc;
    text-align: center;
}

.subscription-notice {
    border: 1px dashed #ce2e2e;
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 1rem;
    font-weight: bold;
    color: #ccc;
    text-align: left;
}

.subscription-notice a {
    color: #93e6dc;
    text-decoration: none;
    font-weight: 600;
}

.compare {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 5vw;
}

.compare h1 {
    font-size: clamp(36px, 6vw, 72px);
    max-width: 800px;
    color: #93e6dc;
}

.pricing-section {
    background-color: #141414;
    width: 100%;
    border-top: 3px solid #93e6dc;
    border-bottom: 3px solid #93e6dc;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 60px 5vw;
    text-align: center;
}

.pricing-section h1 {
    text-align: left;
    font-size: 48px;
    font-family: var(--font1);
    padding: 30px 0px;
    max-width: 800px;
    color: #fffb00;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--pricing-card);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 70px;
    width: 350px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    color: #7de9ff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(102, 100%, 68%);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #ffffff;
}

.pricing-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}

.pricing-button:hover {
    background-color: #222;
}

.compare-plans {
    width: 90%;
    margin: 60px auto;
    text-align: left;
    background-color: #000;
}

.compare-plans h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: var(--font1);
}

.compare-plans table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font1);
    background-color: black;
    color: white;
}

.compare-plans th,
.compare-plans td {
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    border-left: none;
    border-right: none;
    padding: 24px;
    font-size: 1rem;
}

.compare-plans th {
    background-color: #000000;
    font-weight: bold;
    border-top: none;
    text-align: center;
}

.compare-plans tr:nth-child(even) {
    background-color: black;
}


.log_in_bar {
    background-color: #131313;
    color: #00ffe0;
    text-align: right;
    padding: 10px 4vw;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #333;
    white-space: nowrap;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.log_in_bar a {
    color: #00ffe0;
    margin-left: 8px;
    text-decoration: none;
    padding: 0 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.log_in_bar a img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #93e6dc;
    margin-top: 0px;
}

.log_in_bar a:hover {
    color: #00c8b4;
    text-decoration: underline;
}

.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.faq {
    background-color: #000000;
    padding: 60px 5vw;
    color: #fff;
    max-width: 100%;
    margin: 0 auto;
}

.faq h1 {
    font-size: clamp(28px, 5vw, 48px);
    color: #93e6dc;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-family: var(--font1);
    text-align: left;
    cursor: pointer;
    padding: 10px 0;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #ccc;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
}

.animated-title {
    font-size: 36px;
    font-weight: bold;
    color: #00ffe0;
    animation: pulseColor 2s infinite;
    transition: color 1s ease;
}

.income {
    font-size: 14px;
    font-weight: 100;
}

input[type="range"] {
    width: 100%;
    height: 12px;
    border-radius: 8px;
    background: #444;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
    background: #00e0b8;
    border-radius: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-top: -7px;
}


@keyframes pulseColor {
    0% {
        color: #00ffe0;
    }

    25% {
        color: #fffb00;
    }

    50% {
        color: #ff4c4c;
    }

    75% {
        color: #00ff88;
    }

    100% {
        color: #00ffe0;
    }
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
    }

    nav {
        margin-top: 10px;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 40px 7vw;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero p {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        font-size: 14px;
    }

    .info {
        padding: 40px 20px;
    }

    .info h1 {
        font-size: 32px;
        max-width: 100%;
    }

    .info p {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
    }

    .btn {
        height: 60px;
        font-size: 20px;
    }

    .small-text {
        font-size: 12px;
        margin-left: 10px;
        margin-bottom: 6px;
    }

    .platform_logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .platform_logos img {
        max-width: 70px;
    }


    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    nav.main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        padding: 10px 0;
        gap: 10px;
    }

    nav.main-nav.show {
        display: flex;
    }

    nav.main-nav a {
        text-align: center;
        padding: 10px 0;
    }

    .compare-plans td {
        font-size: 0.8rem;
    }

    .compare-plans th {
        font-size: 0.9rem;
    }

    .basic-pro {
        font-size: 64px !important;
    }

    .pricing-section h1 {
        font-size: 28px;
    }

    .income {
        font-size: 12px !important;
    }

    .artist-base-pro {
        font-size: 28px !important;
    }

    .artist-base-pro-plan {
        font-size: 32px !important;
    }

    .hero-h1-sub-bg {
        margin-top: 0px;
        padding: 110px 180px;
        border-radius: 0;
    }

    .hero-h1-fee-bg {
        display: none;
    }

}