/* Character Content Layout */
.character-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.character-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.character-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid #ded0b7;
    border-radius: 8px;
    background: #151f25;
    color: #ded0b7;
    text-align: left;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.character-nav-btn:hover {
    background: #ded0b7;
    color: #151f25;
}

.character-nav-btn.active {
    background: #ded0b7;
    color: #151f25;
    font-weight: bold;
}

.character-tab-content {
    margin-top: 2rem;
}

.character-tab {
    display: none;
}

.character-tab.active {
    display: block;
}

.content-card {
    background: #151f25;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border: 1px solid #ded0b7;
    color: #ded0b7;
}

/* Premium Cards use existing #bigass-register-card styling from styles8.css */

/* Background Tab */
.character-background {
    line-height: 1.8;
    font-size: 1.1rem;
}

.character-background p {
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .character-nav {
        flex-direction: column;
        width: 100%;
    }

    .character-nav-btn {
        width: 100%;
        justify-content: center;
    }

    #character-nav-hamburger {
        background: #151f25;
        border: 1px solid #ded0b7;
        color: #ded0b7;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Quest and Development Sections */
.quest-section,
.development-section,
.relationships-section,
.hooks-section {
    margin-top: 2rem;
}

.quest-grid,
.development-grid,
.relationships-grid,
.hooks-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Ensure existing styles work with tabs */
.character-tab .info-card {
    margin-bottom: 2rem;
}

.character-tab .character-header {
    margin-bottom: 2rem;
}