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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0D1117;
    color: #E6EDF3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #161B22;
    border-bottom: 1px solid #30363D;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #388BFF;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: #C9D1D9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #388BFF;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid #30363D;
}

.lang-btn {
    background: none;
    border: none;
    color: #8B949E;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #C9D1D9;
    background-color: rgba(56, 139, 255, 0.1);
}

.lang-btn.active {
    color: #388BFF;
    background-color: rgba(56, 139, 255, 0.15);
}

.lang-divider {
    color: #30363D;
    font-size: 14px;
    user-select: none;
}

main {
    flex: 1;
}

.flash-messages {
    max-width: 600px;
    margin: 1rem auto;
    padding: 0 20px;
}

.alert {
    background-color: #388BFF;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #C9D1D9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.access-granted {
    background-color: #161B22;
    border: 2px solid #3FB950;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-badge {
    width: 80px;
    height: 80px;
    background-color: #3FB950;
    color: #FFFFFF;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.access-granted h2 {
    font-size: 2rem;
    color: #3FB950;
    margin-bottom: 1rem;
}

.access-granted p {
    color: #C9D1D9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.subscribe-prompt {
    background-color: #161B22;
    border: 2px solid #388BFF;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-prompt h3 {
    font-size: 1.5rem;
    color: #E6EDF3;
    margin-bottom: 2rem;
}

.pricing-note {
    color: #8B949E;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.result-badge {
    background-color: #161B22;
    border: 2px solid #388BFF;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.result-badge h2 {
    font-size: 2.5rem;
    color: #388BFF;
    margin-bottom: 0.5rem;
}

.type-description {
    color: #C9D1D9;
    font-size: 1.125rem;
}

.upgrade-section {
    margin-top: 3rem;
    padding: 3rem 20px;
}

.upgrade-card {
    background-color: #161B22;
    border: 2px solid #388BFF;
    border-radius: 12px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.upgrade-card h2 {
    font-size: 2rem;
    color: #388BFF;
    margin-bottom: 1.5rem;
}

.upgrade-description {
    color: #C9D1D9;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.upgrade-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.upgrade-features li {
    color: #E6EDF3;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #30363D;
}

.upgrade-features li:last-child {
    border-bottom: none;
}

.status-free {
    color: #8B949E;
}

.question-card {
    margin-bottom: 2rem;
    display: block;
}

.btn {
    padding: 0.875rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #388BFF;
    color: #FFFFFF;
}

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

.btn-secondary {
    background-color: #30363D;
    color: #E6EDF3;
}

.btn-secondary:hover {
    background-color: #484F58;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.features {
    padding: 4rem 20px;
    background-color: #161B22;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #0D1117;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #30363D;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #388BFF;
}

.feature-card p {
    color: #C9D1D9;
    line-height: 1.6;
}

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 2rem 20px;
}

.auth-box {
    background-color: #161B22;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #30363D;
    max-width: 450px;
    width: 100%;
}

.auth-box h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.auth-subtitle {
    color: #8B949E;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #C9D1D9;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background-color: #0D1117;
    color: #E6EDF3;
    border: 2px solid #30363D;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #388BFF;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #8B949E;
    font-size: 0.875rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #8B949E;
}

.auth-footer a {
    color: #388BFF;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.dashboard-header {
    margin-bottom: 3rem;
}

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

.dashboard-header p {
    color: #8B949E;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background-color: #161B22;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #30363D;
}

.dashboard-card h3 {
    font-size: 1.125rem;
    color: #8B949E;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #388BFF;
    margin-bottom: 1rem;
}

.status-active {
    color: #3FB950;
}

.status-inactive {
    color: #F85149;
}

.status-cancelled {
    color: #8B949E;
}

.success-text {
    color: #3FB950;
}

.quick-links {
    margin-top: 3rem;
}

.quick-links h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mbti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mbti-card {
    background-color: #161B22;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #30363D;
    text-decoration: none;
    transition: all 0.3s;
}

.mbti-card:hover {
    border-color: #388BFF;
    transform: translateY(-4px);
}

.mbti-card h4 {
    font-size: 1.5rem;
    color: #388BFF;
    margin-bottom: 0.5rem;
}

.mbti-card p {
    color: #C9D1D9;
}

.pricing-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    color: #C9D1D9;
    font-size: 1.125rem;
}

.pricing-card {
    background-color: #161B22;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #388BFF;
    text-align: center;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #388BFF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #388BFF;
}

.price-period {
    font-size: 1.25rem;
    color: #8B949E;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #30363D;
    color: #C9D1D9;
}

.features-list li:before {
    content: "✓ ";
    color: #3FB950;
    font-weight: 700;
    margin-right: 0.5rem;
}

.secure-text {
    margin-top: 1rem;
    color: #8B949E;
    font-size: 0.875rem;
}

.success-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem 20px;
}

.success-box {
    background-color: #161B22;
    padding: 4rem 3rem;
    border-radius: 12px;
    border: 2px solid #3FB950;
    max-width: 600px;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #3FB950;
    margin-bottom: 1.5rem;
}

.success-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-box p {
    font-size: 1.125rem;
    color: #C9D1D9;
    margin-bottom: 1rem;
}

.success-actions {
    margin-top: 2rem;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-subtitle {
    color: #8B949E;
    font-size: 1.125rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #388BFF;
}

.analysis-box {
    background-color: #161B22;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #30363D;
}

.analysis-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.analysis-box h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: #388BFF;
}

.analysis-box p {
    color: #C9D1D9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.analysis-box ul {
    margin-left: 1.5rem;
    color: #C9D1D9;
}

.analysis-box li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.diagnostic-card {
    background-color: #161B22;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #30363D;
}

.diagnostic-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #388BFF;
}

.diagnostic-card p {
    color: #C9D1D9;
    line-height: 1.5;
}

.content-actions {
    margin-top: 3rem;
    text-align: center;
}

.test-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.test-header {
    text-align: center;
    margin-bottom: 3rem;
}

.test-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.test-subtitle {
    color: #C9D1D9;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #30363D;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #388BFF;
    transition: width 0.3s ease;
}

.progress-text {
    color: #8B949E;
    font-size: 0.875rem;
}

.questions-container {
    margin-bottom: 2rem;
}

.question-card.hidden {
    display: none;
}

.question-card {
    background-color: #161B22;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #30363D;
}

.question-card h3 {
    color: #388BFF;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.question-text {
    font-size: 1.25rem;
    color: #E6EDF3;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background-color: #0D1117;
    border: 2px solid #30363D;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    border-color: #388BFF;
    background-color: #161B22;
}

.option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.option span {
    color: #C9D1D9;
    font-size: 1rem;
    line-height: 1.5;
}

.option input[type="radio"]:checked + span {
    color: #388BFF;
    font-weight: 600;
}

.test-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.test-navigation .btn {
    flex: 1;
}

.result-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.result-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background-color: #161B22;
    border-radius: 12px;
    border: 2px solid #388BFF;
}

.mbti-type-display {
    font-size: 4rem;
    font-weight: 700;
    color: #388BFF;
    margin: 1rem 0;
    letter-spacing: 0.5rem;
}

.result-subtitle {
    font-size: 1.5rem;
    color: #C9D1D9;
}

.result-content {
    margin-top: 2rem;
}

.result-section {
    background-color: #161B22;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #30363D;
    margin-bottom: 2rem;
}

.result-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.type-item {
    text-align: center;
}

.type-item h4 {
    font-size: 2rem;
    color: #388BFF;
    margin-bottom: 0.5rem;
}

.type-item p {
    color: #C9D1D9;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.score-bar {
    width: 100%;
    height: 8px;
    background-color: #30363D;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.score-fill {
    height: 100%;
    background-color: #388BFF;
}

.type-item small {
    color: #8B949E;
    font-size: 0.75rem;
}

.result-section .description {
    color: #C9D1D9;
    line-height: 1.6;
    font-size: 1.125rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

footer {
    background-color: #161B22;
    border-top: 1px solid #30363D;
    padding: 2rem 20px;
    text-align: center;
    color: #8B949E;
    margin-top: auto;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #30363D;
}

.admin-header h1 {
    font-size: 2rem;
    color: #E6EDF3;
}

.admin-nav {
    display: flex;
    gap: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: #161B22;
    border: 1px solid #30363D;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 0.875rem;
    color: #8B949E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #388BFF;
    margin: 0;
}

.admin-section {
    background-color: #161B22;
    border: 1px solid #30363D;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.admin-section h2 {
    font-size: 1.5rem;
    color: #E6EDF3;
    margin-bottom: 1.5rem;
}

.mbti-distribution {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.mbti-item {
    background-color: #0D1117;
    border: 1px solid #30363D;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbti-label {
    font-weight: 600;
    color: #388BFF;
}

.mbti-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E6EDF3;
}

.filters-bar {
    margin-bottom: 1.5rem;
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-input,
.filter-select {
    padding: 0.75rem;
    background-color: #0D1117;
    border: 1px solid #30363D;
    border-radius: 8px;
    color: #E6EDF3;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
}

.filter-input {
    flex: 1;
    min-width: 200px;
}

.filter-select {
    min-width: 150px;
}

.users-table {
    overflow-x: auto;
}

.users-table table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #30363D;
}

.users-table th {
    background-color: #0D1117;
    color: #8B949E;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.users-table td {
    color: #E6EDF3;
}

.users-table tbody tr:hover {
    background-color: #0D1117;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-free {
    background-color: #8B949E;
    color: #0D1117;
}

.status-active {
    background-color: #3FB950;
    color: #0D1117;
}

.status-cancelled {
    background-color: #F85149;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-info {
    color: #8B949E;
    font-size: 0.875rem;
}

.user-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background-color: #0D1117;
    border: 1px solid #30363D;
    border-radius: 8px;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1rem;
    color: #388BFF;
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 0.75rem;
    color: #C9D1D9;
}

.info-card strong {
    color: #E6EDF3;
}

.admin-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-actions {
    margin-top: 2rem;
}

.danger-zone {
    background-color: #2D1519;
    border-color: #F85149;
}

.danger-zone h2 {
    color: #F85149;
}

.danger-zone p {
    color: #C9D1D9;
    margin-bottom: 1rem;
}

.btn-danger {
    background-color: #F85149;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-danger:hover {
    background-color: #D73A3A;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .dashboard-grid,
    .feature-grid,
    .mbti-grid,
    .diagnostic-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-box {
        padding: 2rem;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-input,
    .filter-select {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MBTI CHARACTER IMAGES
   =================================== */

/* Result Page - Cyber Tarot Card */
.mbti-character-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 20px;
}

.character-tarot-card {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(56, 139, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.character-tarot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(56, 139, 255, 0.7);
}

.character-placeholder {
    max-width: 300px;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #161B22 0%, #1C2128 100%);
    border-radius: 12px;
    border: 2px solid #30363D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbti-type-badge-large {
    font-size: 4rem;
    font-weight: 700;
    color: #388BFF;
    text-shadow: 0 0 20px rgba(56, 139, 255, 0.5);
}

/* Dashboard - MBTI Avatar */
.welcome-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mbti-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(56, 139, 255, 0.4);
    border: 2px solid #388BFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbti-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(56, 139, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .character-tarot-card {
        max-width: 250px;
    }
    
    .mbti-avatar {
        width: 60px;
        height: 60px;
    }
    
    .welcome-section {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .character-tarot-card {
        max-width: 200px;
    }
    
    .mbti-avatar {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .welcome-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
