/* Stat Icon Styles */
        .stat-icon {
            width: 20px;
            height: 20px;
            vertical-align: middle;
            font-weight: 600;
        }

        /* OX King Guide Specific Styles */

        /* Hero Card Styles for OX King - HOCHKANT wie characterlist, 25% kleiner */
        .hero-card {
            position: relative;
            display: inline-block;
            width: 105px;
            height: 150px;
            margin: 0 6px 6px 0;
            transition: all 0.3s ease;
            border-radius: 9px;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Rarity-spezifische Gradient Backgrounds für 7kRebirth genau wie in characterlist */
        .hero-card.rarity-r {
            background: linear-gradient(135deg, #8A2BE2, #4B0082); /* Lila Gradient für R */
        }

        .hero-card.rarity-l {
            background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold Gradient für L */
        }

        .hero-card.rarity-l-plus {
            background: linear-gradient(135deg, #FFA500, #FF8C00); /* Hell Orange Gradient für L+ und S+ */
        }

        .hero-card.rarity-l-plus-plus {
            background: linear-gradient(135deg, #FF4500, #FF6347); /* Dunkel Orange Gradient für L++ */
        }

        .hero-card.rarity-s-plus {
            background: linear-gradient(135deg, #FFA500, #FF8C00); /* Hell Orange Gradient für S+ (gleich wie L+) */
        }

        /* Border-Verzierungen für Character Karten */
        .hero-card.rarity-l-plus::after,
        .hero-card.rarity-s-plus::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55px;
            height: 55px;
            background-image: url('https://ik.imagekit.io/frnrxcqkq/7krebirth/LPlusBorder.png');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 30;
        }

        .hero-card.rarity-l-plus-plus::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55px;
            height: 55px;
            background-image: url('https://ik.imagekit.io/frnrxcqkq/7krebirth/LPlusPlusBorder.png');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 30;
        }

        /* L Charaktere bekommen keine Border-Verzierung */

        /* Hero Name Overlay wie in characterlist, 25% kleiner */
        .hero-name-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
            color: white;
            padding: 9px 3px 6px;
            text-align: center;
            font-weight: bold;
            font-size: 0.825rem;
            z-index: 25;
            transition: opacity 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
            -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.6);
        }

        /* Hero Image - mit Zuschneiden */
        .hero-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Bild zuschneiden statt verzerren */
            object-position: center top; /* Fokussiert auf obere Hälfte */
            border-radius: 6px;
            z-index: 1;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            image-rendering: -webkit-optimize-contrast;
            backface-visibility: hidden;
            perspective: 1000px;
            will-change: transform;
        }

        .hero-image:hover {
            transform: scale(1.08) translateY(-2px);
            filter: contrast(1.1);
            image-rendering: -webkit-optimize-contrast;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            cursor: pointer;
        }

        /* Type Icons oben links, 25% kleiner */
        .hero-type-icon {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 24px;
            height: 24px;
            z-index: 24;
            border-radius: 4px 0px 4px 0px;
            padding: 2px;
        }

        .hero-type-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        /* Team composition styles like dungeon-teams.html */
        .tier-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }

        .tier-title {
            color: #ffd93d;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {

            .hero-card {
                width: 70px;
                height: 70px;
            }
        }


