:root {
    --bg-color: #080808;
    --text-color: #ffffff;
    --pink-brand: #ff4b82;
    --pink-hover: #ff2d6d;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(0, 0, 0, 0.6);
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: #000;
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.mobile-container {
    width: 100%;
    max-width: 450px;
    background-color: var(--bg-color);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

/* Character Portrait Background */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.char-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-color) 20%, transparent 100%);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    color: var(--pink-brand);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.icon-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* Content */
.content {
    position: relative;
    margin-top: -120px;
    padding: 20px;
    z-index: 5;
    text-align: center;
}

.char-info {
    margin-bottom: 30px;
}

.char-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.char-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #ccc;
    border: 1px solid var(--border-color);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
}

.cta-btn {
    width: 100%;
    padding: 18px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--pink-brand);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 75, 130, 0.3);
}

.btn-primary:hover {
    background-color: var(--pink-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

/* Bottom Navigation */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--border-color);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    font-size: 11px;
    gap: 4px;
    transition: 0.3s;
}

.nav-item i {
    font-size: 20px;
}

.nav-item.active {
    color: var(--pink-brand);
}

.nav-item:hover {
    color: white;
}
