:root{
    --amj-blue:#00b7ff;
    --amj-purple:#7a2cff;
    --amj-pink:#ff1fa8;
    --amj-orange:#ff8c1a;
    --amj-dark:#06060a;
    --amj-card:#111827;
    --amj-text:#ffffff;
    --amj-muted:#cbd5e1;
}

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

html,
body{
    min-height:100%;
}

body{
    font-family:'Poppins',sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0,183,255,.22), transparent 35%),
        radial-gradient(circle at top right, rgba(255,31,168,.24), transparent 35%),
        radial-gradient(circle at bottom center, rgba(255,140,26,.16), transparent 35%),
        var(--amj-dark);
    color:var(--amj-text);
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
}

.gradient-text{
    background:linear-gradient(
        135deg,
        var(--amj-blue),
        var(--amj-purple),
        var(--amj-pink),
        var(--amj-orange)
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

/* HEADER */

.amj-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(6,6,10,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.amj-nav{
    max-width:1400px;
    margin:auto;
    padding:4px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.amj-logo img{
    height:120px;
    display:block;
}

.amj-nav-links{
    display:flex;
    align-items:center;
    gap:22px;
}

.amj-nav-links a,
.amj-dropdown-btn{
    color:#e5e7eb;
    font-weight:600;
    font-family:inherit;
    font-size:1rem;
}

.amj-nav-links a:hover,
.amj-dropdown-btn:hover{
    color:var(--amj-pink);
}

.amj-header-search{
    width:260px;
}

.amj-header-search input{
    height:48px;
    border-radius:16px;
    padding:0 16px;
    background:rgba(0,0,0,.28);
}

.amj-header-search button{
    display:none;
}

.amj-dropdown{
    position:relative;
}

.amj-dropdown-btn{
    background:transparent;
    border:0;
    cursor:pointer;
    padding:10px 0;
}

.amj-dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    right:0;
    min-width:175px;
    padding:10px;
    border-radius:16px;
    background:#0b0b12;
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 18px 40px rgba(0,0,0,.38);
    z-index:999;
}

.amj-dropdown:hover .amj-dropdown-menu{
    display:grid;
    gap:4px;
}

.amj-dropdown-menu a{
    display:block;
    padding:10px 12px;
    border-radius:10px;
    white-space:nowrap;
}

.amj-dropdown-menu a:hover{
    background:rgba(255,255,255,.08);
}

.amj-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:999px;
    padding:13px 24px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--amj-blue),
        var(--amj-purple),
        var(--amj-pink),
        var(--amj-orange)
    );
    box-shadow:0 12px 35px rgba(255,31,168,.28);
}

/* FOOTER */

.amj-footer{
    margin-top:80px;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.35);
}

.amj-footer-inner{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
}

.amj-footer-logo{
    height:60px;
    margin-bottom:15px;
}

.amj-footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:20px 0;
}

.amj-footer-links a{
    color:#cbd5e1;
}

.amj-footer-copy{
    color:#94a3b8;
    font-size:.9rem;
}

/* CARDS */

.amj-card{
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.04)
    );
    border:1px solid rgba(255,255,255,.10);
    border-radius:28px;
    box-shadow:0 18px 55px rgba(0,0,0,.24);
}

/* FORMS */

.amj-input,
.amj-textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(0,0,0,.35);
    color:#fff;
    border-radius:14px;
    padding:13px 14px;
    font-family:inherit;
    font-size:1rem;
}

.amj-input:focus,
.amj-textarea:focus{
    outline:none;
    border-color:var(--amj-pink);
    box-shadow:0 0 0 3px rgba(255,31,168,.16);
}

.amj-textarea{
    min-height:130px;
    resize:vertical;
}

/* MOBILE */

@media(max-width:900px){

    .amj-nav{
        flex-direction:column;
        gap:14px;
        align-items:flex-start;
        padding:12px 18px;
    }

    .amj-logo img{
        height:70px;
    }

    .amj-nav-links{
        width:100%;
        flex-wrap:wrap;
        gap:14px;
    }

    .amj-header-search{
        width:100%;
        order:10;
    }

    .amj-header-search input{
        width:100%;
    }

    .amj-dropdown-menu{
        left:0;
        right:auto;
    }
}

.page{
    max-width:1180px;
    margin:auto;
    padding:60px 22px;
    display:grid;
    grid-template-columns:1fr 560px;
    gap:36px;
    align-items:start;
}

.copy h1{
    font-size:clamp(2.4rem,5vw,4.6rem);
    line-height:1.02;
    letter-spacing:-.05em;
    margin-bottom:20px;
}

.copy p{
    color:var(--amj-muted);
    font-size:1.1rem;
    line-height:1.75;
    max-width:650px;
    margin-bottom:22px;
}

.bullets{
    display:grid;
    gap:14px;
    margin-top:28px;
}

.bullet{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:18px;
    padding:18px;
    color:#e5e7eb;
}

.form-card{
    background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));
    border:1px solid rgba(255,255,255,.12);
    border-radius:28px;
    padding:28px;
    box-shadow:0 22px 65px rgba(0,0,0,.35);
}

.form-card h2{
    font-size:1.65rem;
    margin-bottom:8px;
}

.form-card .hint{
    color:#cbd5e1;
    font-size:.95rem;
    margin-bottom:22px;
}

.form-section-title{
    font-size:1rem;
    font-weight:800;
    margin:22px 0 14px;
    color:#fff;
}

.error{
    background:#3b0d0d;
    color:#ffb4b4;
    border:1px solid rgba(255,180,180,.35);
    padding:12px;
    border-radius:14px;
    margin-bottom:18px;
}

label{
    display:block;
    font-size:.88rem;
    font-weight:700;
    margin-bottom:7px;
    color:#f8fafc;
}

input,
textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(0,0,0,.35);
    color:#fff;
    border-radius:14px;
    padding:13px 14px;
    font-family:inherit;
    font-size:1rem;
    outline:none;
}

textarea{
    min-height:130px;
    resize:vertical;
}

input:focus,
textarea:focus{
    border-color:var(--amj-pink);
    box-shadow:0 0 0 3px rgba(255,31,168,.16);
}

.field{
    margin-bottom:16px;
}

.two{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:999px;
    padding:15px 24px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,var(--amj-blue),var(--amj-purple),var(--amj-pink),var(--amj-orange));
    box-shadow:0 12px 35px rgba(255,31,168,.28);
    cursor:pointer;
    font-size:1rem;
    margin-top:8px;
    text-decoration:none;
}

.small-note{
    color:#94a3b8;
    font-size:.82rem;
    line-height:1.55;
    margin-top:14px;
}


@media(max-width:900px){
    .page{
        grid-template-columns:1fr;
        padding-top:34px;
    }

    .two{
        grid-template-columns:1fr;
    }
}
.hero{
    position:relative;
    overflow:hidden;
    min-height:calc(100vh - 94px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px 22px;
}

.hero::before{
    content:"";
    position:absolute;
    width:620px;
    height:620px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(0,183,255,.25),rgba(255,31,168,.18),rgba(255,140,26,.16));
    filter:blur(40px);
    opacity:.9;
    z-index:0;
}

.hero-inner{
    position:relative;
    z-index:1;
    max-width:1050px;
    margin:auto;
    text-align:center;
}

.hero-logo{
    width:min(400px,76vw);
    margin:0 auto 24px;
    display:block;
    filter:drop-shadow(0 20px 55px rgba(0,0,0,.75));
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:9px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    color:#f8fafc;
    font-size:.9rem;
    margin-bottom:22px;
}

.badge-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--amj-orange);
    box-shadow:0 0 18px var(--amj-orange);
}

.hero h1{
    font-size:clamp(2.45rem,6vw,5.3rem);
    line-height:1.02;
    font-weight:800;
    letter-spacing:-.06em;
    margin-bottom:22px;
}

.hero p{
    max-width:760px;
    margin:0 auto 34px;
    font-size:1.18rem;
    line-height:1.8;
    color:var(--amj-muted);
}

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

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:13px 24px;
    font-weight:700;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
}

.section{
    max-width:1400px;
    margin:auto;
    padding:80px 22px;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 44px;
}

.section-header h2{
    font-size:clamp(2rem,4vw,3.4rem);
    line-height:1.1;
    margin-bottom:14px;
}

.section-header p{
    color:var(--amj-muted);
    line-height:1.7;
}

.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.1);
    border-radius:28px;
    padding:30px;
    min-height:230px;
    box-shadow:0 18px 55px rgba(0,0,0,.24);
}

.card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,rgba(255,31,168,.22),transparent 45%);
    opacity:.8;
    pointer-events:none;
}

.card h3,
.card p,
.card .icon{
    position:relative;
    z-index:1;
}

.icon{
    width:54px;
    height:54px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    background:linear-gradient(135deg,var(--amj-blue),var(--amj-pink),var(--amj-orange));
    font-size:1.6rem;
    box-shadow:0 12px 32px rgba(255,31,168,.25);
}

.card h3{
    font-size:1.25rem;
    margin-bottom:12px;
}

.card p{
    color:#cbd5e1;
    line-height:1.65;
    font-size:.96rem;
}

.earnings{
    background:rgba(255,255,255,.05);
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.earnings-box{
    max-width:1050px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
}

.earnings-panel{
    background:#0b1020;
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    padding:30px;
    box-shadow:0 22px 65px rgba(0,0,0,.35);
}

.calc-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#e5e7eb;
}

.calc-row:last-child{
    border-bottom:none;
}

.calc-row strong{
    color:#fff;
}

@media(max-width:1000px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .earnings-box{
        grid-template-columns:1fr;
    }
}

@media(max-width:720px){
    .hero{
        min-height:auto;
        padding-top:54px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .hero-buttons a{
        width:100%;
    }

    .card{
        min-height:auto;
    }
}
.dashboard-wrap{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

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

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

.artist-card{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
    padding:25px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:rgba(255,255,255,.03);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    text-align:center;
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.stat-card h2{
    font-size:2rem;
    margin-bottom:10px;
}

.dashboard-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.amj-stream-session-btn,
.amj-stream-cancel {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 13px 14px;
    cursor: pointer;
    font-weight: 700;
}

.amj-stream-session-btn {
    background: #f5c542;
    color: #111;
}

.amj-stream-cancel {
    background: #333;
    color: #fff;
}

@media(max-width:768px){

    .artist-card{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

}