
        .guide-hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.3) 0%, var(--background) 70%), url('image/banner.jpeg') no-repeat center center/cover;
            text-align: center;
            color: var(--foreground);
        }
        .guide-hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        .guide-hero h1 {
            margin-top: 50px;
            font-family: var(--font-orbitron);
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .guide-hero p {
            font-size: 1.3rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
        }
        .tip-box {
            background: rgba(220, 38, 38, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: var(--radius);
        }
        .combo-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        .combo-table th, .combo-table td {
            padding: 1rem;
            border: 1px solid var(--border);
            text-align: left;
        }
        .combo-table th {
            background: var(--card);
            font-weight: 600;
        }
        .progress-bar {
            background: var(--muted);
            border-radius: 20px;
            height: 20px;
            margin: 1rem 0;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: var(--primary);
            transition: width 1s ease-in-out;
        }
        .glossary-term {
            cursor: pointer;
            color: var(--primary);
            text-decoration: underline;
        }
        .glossary-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--card);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            z-index: 1000;
            max-width: 400px;
            display: none;
        }
        .glossary-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            cursor: pointer;
            color: var(--muted-foreground);
        }
.character-card img {
   height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.w0 {
    width: 0%;
}
.arena-image {
    width: 100%; border-radius: var(--radius);
}
@media (max-width: 768px) {
    .guide-hero h1 {
        font-size: 3rem;
    }
    .guide-hero p {
        font-size: 1.2rem;
    }
    
}
@media (max-width: 480px) {
    .guide-hero h1 {
        font-size: 2.5rem;
    }
    .guide-hero p {
        font-size: 1.1rem;
    }
    .combo-table th, .combo-table td {
        padding: 0.5rem;
    }
    
}