* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at top, #102060, #020617 40%);
    min-height: 100vh;
    color: white;
    padding: 125px 20px 40px;
    overflow-x: hidden;
}

.topbar {
    position: fixed;
    top: 14px;
    left: 22px;
    right: 22px;
    height: 74px;
    background: rgba(10, 15, 45, 0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    overflow: hidden;
    z-index: 5000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.menu-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    cursor: pointer;
    transition: .3s;
    margin-left: 6px;
}

.menu-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.18);
}


.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100%;
    padding: 18px;
    background: #070d2b;
    transition: .35s ease;
    z-index: 6000;
    border-right: 1px solid rgba(255, 255, 255, .05);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 32px;
}

.logo-box {
    width: 85px;
    height: 85px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(76, 125, 255, 0.3);
}


.sidebar-header h2 {
    font-size: 22px;
}
.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 16px 22px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: .25s;
}

.sidebar a:hover {
    background: rgba(76, 125, 255, 0.12);
    padding-left: 28px;
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 4500;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.sidebar-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 390px;
    margin: auto;
}

.logo h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #73a5ff, #3d6cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 17px;
    margin-top: 10px;
    color: #9ea7d6;
    margin-bottom: 28px;
}

.upload-box {
    min-height: 240px;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(18,26,70,.92), rgba(5,10,35,.92));
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    margin-bottom: 22px;
}

.upload-box:hover {
    transform: translateY(-2px);
    border-color: #4c7dff;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#file-name {
    font-size: 17px;
    color: #dfe5ff;
    text-align: center;
    padding: 0 15px;
}

input {
    width: 100%;
    height: 62px;
    border: none;
    outline: none;
    border-radius: 22px;
    padding: 0 22px;
    font-size: 16px;
    background: rgba(10, 15, 45, .95);
    color: white;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, .04);
}

button {
    width: 100%;
    height: 68px;
    border: none;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    background: linear-gradient(135deg, #5d8fff, #3763ff);
    box-shadow: 0 10px 30px rgba(67, 108, 255, .3);
    transition: .3s;
}

button:hover {
    transform: translateY(-2px);
}

#status {
    margin-top: 22px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(10, 15, 45, .9);
    font-size: 16px;
    text-align: center;
    word-break: break-word;
    border: 1px solid rgba(255, 255, 255, .04);
}

#status a {
    color: #78a2ff;
    text-decoration: none;
    font-weight: 600;
}

.footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #7d85aa;
}

.creator-page {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #071133, #020617);
    z-index: 2500;
    overflow-y: auto;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .45);
}

.creator-page.active {
    bottom: 0;
}

.creator-header {
    margin-top: 105px;
    padding: 18px;
}

.creator-banner {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: white;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.creator-content {
    padding: 0 18px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card,
.media-card {
    background: rgba(15, 20, 55, .92);
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .04);
    animation: fadeUp .4s ease;
}

.info-card h3,
.media-card h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4c7dff, #2563ff);
    font-size: 16px;
    margin-bottom: 18px;
}

.info-card p,
.info-card li {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    color: white;
}

.info-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-box {
    width: 80px;
    height: 80px;
    background: #111a55;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.social-box:hover {
    transform: translateY(-5px) scale(1.05);
    background: #1b2b8f;
}

.social-box img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.sidebar a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.upload-box .icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}




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