body {
            background-color: #1b1e2b !important;
            color: white;
            font-family: 'Arial', sans-serif;
        }
        .container-custom {
            background: none !important;
            max-width: 1000px;
            margin: auto;
        }
        .card {
            background: #262a3b !important;
            border-radius: 10px;
            padding: 20px;
        }
        .stat-box {
            background: #32384e;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            font-weight: bold;
        }
        .header-footer {
            max-width: 1000px;
            margin: auto;
        }
        .navbar {
            background-color: #2e353f !important; /* Dark background color for the navbar */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .navbar-nav .nav-item .nav-link {
            color: white !important;
            font-weight: bold;
            transition: background-color 0.3s ease-in-out;
        }
        .navbar-nav .nav-item .nav-link:hover {
            background-color: rgba(255, 69, 0, 0.7) !important; /* Hover effect */
            border-radius: 5px;
        }
        .navbar-nav .nav-item .nav-link.active {
            background-color: rgba(255, 69, 0, 0.9) !important; /* Highlight active link */
            color: white !important;
            border-radius: 5px;
        }
        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }
        .dropdown-menu {
            background-color: #32384e !important; /* Dark background for dropdown */
            border-radius: 5px;
        }
        .dropdown-item {
            color: white !important;
        }
        .dropdown-item:hover {
            background-color: rgba(255, 69, 0, 0.7) !important; /* Hover effect for dropdown items */
            color: white !important;
        }
        footer {
            background-color: #2e353f;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.5);
        }
        h1 {
    color: white !important;
        }

        .ability-box {
        background: #32384e;
        padding: 15px;
        border-radius: 8px;
    }

    .ability-img {
        width: 150px;
        height: auto;
        object-fit: contain;
    }

    .ability-box h5 {
        font-weight: bold;
        color: #4CAF50;
    }

    .ability-box div {
        margin-bottom: 5px;
        color: white; /* Ensures all text inside the ability box is white */
    }
.gaming-btn {
    background: #222; /* Darker shade for a gaming feel */
    color: #0ff; /* Neon cyan for a futuristic glow */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 28px;
    border: 2px solid #0ff; /* Cyan border */
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
   
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
}

.gaming-btn:hover {
    background: #111; /* Slightly darker on hover */
    transform: scale(1.05);
    border-color: #00e1ff;
}

.gaming-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.9);
}

/* Make card fully responsive */
.card {
    width: 100%;
}

/* Adjust image and text layout for mobile */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center; /* Center items */
        text-align: center;
    }

    .me-4 {
        margin-right: 0 !important; /* Remove margin on mobile */
        margin-bottom: 15px; /* Add spacing between image and text */
    }


    .text-white {
        width: 100%;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
    }

    .fw-bold {
        font-size: 16px; /* Adjust font size for better readability */
    }
}

/* Card wrapper */
.card {
    background: #121212; /* dark background */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Each item card */
.costume-card {
    background: #1e1e1e;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 15px;
    width: 180px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Hover effect to encourage clicks */
.costume-card:hover {
    border-color: #ff9800; /* highlight on hover */
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255,152,0,0.6);
}

/* Image styling */
.costume-card img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Slight zoom on hover */
.costume-card:hover img {
    transform: scale(1.1);
}

/* Name text */
.costume-card p:first-of-type {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
}

/* Details text */
.costume-card p:last-of-type {
    color: #bbb;
}

/* Link inside */
.costume-card a {
    text-decoration: none;
    display: inline-block;
}
