        .char-item {
            max-width: 100%;
        }

        .char-img img {
            max-width: 100%;
            height: auto;
        }

        .character-view-container {
            padding: 40px 0;
            animation: fadeIn 0.6s ease-out;
        }

        .character-card {
            background: var(--card-bg);
            border: var(--glass-border);
            border-radius: 30px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: row;
            min-height: 500px;
        }

        .char-view-image-wrap {
            flex: 0 0 400px;
            position: relative;
            overflow: hidden;
        }

        .char-view-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
        }

        .character-card:hover .char-view-image {
            transform: scale(1.05);
        }

        .char-view-info {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .char-view-name {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .char-view-meta {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .badge-premium {
            padding: 6px 16px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-nsfw {
            background: rgba(255, 152, 42, 0.15);
            color: #ff982a;
            border: 1px solid rgba(255, 152, 42, 0.3);
        }

        .badge-tag {
            background: rgba(0, 132, 198, 0.1);
            color: var(--primary-color);
            border: 1px solid rgba(0, 132, 198, 0.2);
        }

        .char-view-description {
            font-size: 1.2rem;
            line-height: 1.4;
            color: var(--text-color);
            margin-bottom: 30px;
            opacity: 0.9;
            flex-grow: 1;
        }

        .char-view-actions {
            display: flex;
            gap: 20px;
            margin-top: auto;
        }

        .btn-chat-premium {
            padding: 18px 25px;
            font-size: 1.25rem;
            font-weight: 700;
            border-radius: 15px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            color: white !important;
            box-shadow: 0 10px 25px rgba(0, 132, 198, 0.3);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-chat-premium:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 132, 198, 0.4);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Background Glow */
        .bg-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 20% 30%, rgba(0, 132, 198, 0.05), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(157, 80, 187, 0.05), transparent 40%);
            pointer-events: none;
        }

        /* Interactive Mode Promo */
        .interactive-promo-card {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 87, 34, 0.08));
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-top: auto;
            color: rgba(202, 101, 23, 1);
        }

        .dark-mode .interactive-promo-card {
            color: #ffffffc3;
        }

        .dark-mode .interactive-promo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
            border-color: rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 87, 34, 0.12));
        }

        .interactive-badge {
            display: inline-block;
            background: #ffc107;
            color: #000;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-bottom: 10px;
            box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
            animation: pulse-gold 2s infinite;
        }

        .interactive-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .interactive-desc {
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .btn-interactive {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, #ffc107, #ff5722);
            color: #000 !important;
            font-weight: 800;
            padding: 12px 20px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
            border: none;
        }

        .btn-interactive:hover {
            filter: brightness(1.1);
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
            color: #000 !important;
        }

        .btn-interactive i {
            margin-right: 8px;
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }



        .char-item {
            height: 336;
            background: var(--card-bg);
            border: var(--glass-border);
            border-radius: 15px;
            padding: 12px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .char-img {
            display: block;
            margin-bottom: 12px;
            height: 220px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .char-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
        }

        @media (max-width: 991px) {

            .hero-title {
                font-size: 1.8rem;
            }

            .character-card {
                flex-direction: column;
            }

            .char-view-image-wrap {
                flex: 0 0 320px;
            }

            .char-view-info {
                padding: 20px;
            }

            .char-view-name {
                font-size: 1.8rem;
            }

            .char-view-actions {
                flex-direction: column;
            }

            .btn-chat-premium {
                width: 100%;
                justify-content: center;
            }
        }


        @media (max-width: 768px) {

            .char-view-name {
                font-size: 1.5rem;
            }

            .hero-title {
                font-size: 1.5rem;
            }
        }