body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e3e6ec 100%);
    color: #23272f;
    min-height: 100vh;
}
.premium-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.85);
    /* box-shadow: 0 2px 16px 0 rgba(30,34,90,0.06); */
    border-bottom: none;
    padding: 24px 48px;
    backdrop-filter: blur(8px);
}
.header-left {
    gap: 12px;
}
.tiktok-logo {
    width: 38px;
    height: 38px;
}
.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #23272f;
}
.premium-btn {
    background: #FE2C55;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 4px 24px 0 rgba(254,44,85,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    outline: none;
    text-decoration: none !important;
}
.premium-btn:hover {
    background: linear-gradient(90deg, #ff6f61 0%, #fe2c55 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(254,44,85,0.18);
}
.premium-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}
.premium-card {
    display: flex;
    flex-direction: row;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 8px 48px 0 rgba(30,34,90,0.10);
    border-radius: 32px;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    min-height: 540px;
    backdrop-filter: blur(16px);
    margin: -160px 0 24px 0;
    border: 1.5px solid rgba(255,255,255,0.25);
    animation: fadeIn 1.2s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: none; }
}
.left-side {
    flex: 1;
    position: relative;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(120deg, #f8fafc 60%, #e3e6ec 100%);
}
.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    filter: brightness(0.82) blur(1.5px) saturate(1.1);
    transition: filter 0.3s;
}
.profile-img {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 340px;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
    margin-top: 60px;
    box-shadow: 0 8px 32px rgba(30,34,90,0.13);
    border: 4px solid #fff;
    transition: box-shadow 0.2s;
}
.profile-img:hover {
    box-shadow: 0 16px 48px rgba(30,34,90,0.18);
}
.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 40px;
    min-width: 320px;
    background: none;
}
.tiktok-verified {
    width: 180px;
    margin-bottom: 28px;
    filter: drop-shadow(0 4px 16px #fe2c5533);
}
.right-side h1 {
    font-size: 2.7rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    letter-spacing: -1px;
    color: #23272f;
}
.right-side p {
    font-size: 1.18rem;
    color: #3a3f4b;
    margin-bottom: 36px;
    text-align: center;
    max-width: 440px;
    line-height: 1.6;
    word-break: break-word;
    hyphens: auto;
    padding-left: 8px;
    padding-right: 8px;
}
.footer {
    width: 100%;
    background: rgba(255,255,255,0.85);
    color: #23272f;
    padding: 18px 0 8px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -2px 16px 0 rgba(30,34,90,0.06);
    backdrop-filter: blur(8px);
}
.premium-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.footer-content a {
    color: #fe2c55;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-content a:hover {
    color: #ff6f61;
    text-decoration: underline;
}
.header-watch-btn {
    margin-right: 0;
    text-decoration: none !important;
}
@media (max-width: 1100px) {
    .premium-card {
        flex-direction: column;
        min-height: 0;
        max-width: 98vw;
    }
    .left-side, .right-side {
        min-width: 100vw;
        width: 100vw;
    }
    .profile-img {
        width: 180px;
        height: 220px;
        margin-top: 32px;
    }
    .tiktok-verified {
        width: 140px;
    }
    .right-side h1 {
        font-size: 2rem;
    }
}
@media (max-width: 700px) {
    .premium-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 12px 8px;
        text-align: left;
    }
    .premium-footer .footer-content {
        flex-direction: column;
        gap: 8px;
        padding: 12px 8px;
        text-align: center;
    }
    .premium-card {
        margin: 16px 0 48px 0;
        border-radius: 18px;
    }
    .main-content {
        min-height: 60vh;
    }
    .profile-img {
        width: 110px;
        height: 130px;
        margin-top: 12px;
    }
    .tiktok-verified {
        width: 100px;
    }
    .right-side {
        padding: 18px 8px;
    }
    .right-side h1 {
        font-size: 1.3rem;
    }
    .right-side p {
        font-size: 0.98rem;
        max-width: 98vw;
        padding-left: 8px;
        padding-right: 8px;
    }
} 