/*
 * CSS for styling for all shared css styling for the black fruit studios pages
 */
        :root {
            --primary-light: #d5d6da;
            --primary-dark: #08060a;
            --accent-color: #00BFFF;
        }
        body {
            font-family: 'Nova Flat', cursive;
            background-color: #ffffff;
            color: var(--primary-light);
            margin: 0;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
			height: 100%;
        }
        html, body {
            height: 100%;
        }
        .digital-grid-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: var(--primary-dark);
            background-image:
                linear-gradient(to right, rgba(0, 191, 255, 0.15) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 191, 255, 0.15) 1px, transparent 1px);
            background-size: 50px 50px;
            background-attachment: fixed;
            animation: grid-fade 20s infinite alternate;
            opacity: 0.7;
        }
        @keyframes grid-fade {
            0% { opacity: 0.7; }
            50% { opacity: 0.65; }
            100% { opacity: 0.7; }
        }
        .navbar {
            background-color: var(--primary-dark);
            border-bottom: 2px solid var(--primary-light);
            border-radius: 0 0 15px 15px;
            padding: 1rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .navbar-brand {
            color: var(--primary-light) !important;
            font-weight: 700;
            font-size: 1.8rem;
            text-shadow: 0 0 5px var(--accent-color);
            transition: color 0.3s ease, text-shadow 0.3s ease;
            display: flex;
            align-items: center;
        }
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            text-shadow: 0 0 10px var(--accent-color);
        }
        .navbar-logo {
            height: 40px;
            width: 40px;
            margin-right: 10px;
            border-radius: 8px;
        }
        .nav-link {
            color: var(--primary-light) !important;
            font-weight: 600;
            margin: 0 0.8rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            text-shadow: 0 0 10px var(--accent-color);
        }
        .hero-section {
            padding: 8rem 0;
            text-align: center;
            background: linear-gradient(rgba(8, 6, 10, 0.2), rgba(8, 6, 10, 0.8));
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 90%;
            border: 2px solid var(--primary-light);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }
        .hero-logo {
            max-width: 200px;
            height: auto;
            margin-bottom: 1.5rem;
            border-radius: 15px;
        }
        .hero-statement {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary-light);
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }
        .btn-more-about {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--primary-dark);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
            margin-top: 2rem;
        }
        .btn-more-about:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
            color: var(--primary-dark);
        }
        .game-showcase {
            padding: 4rem 0;
            text-align: center;
        }
        .game-card {
            background-color: rgba(8, 6, 10, 0.7);
            border: 2px solid var(--primary-light);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
            text-decoration: none;
            color: var(--primary-light);
            display: block;
            height: 100%;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2), 0 0 20px var(--accent-color);
            color: var(--accent-color);
        }
        .game-card-img {
            max-width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
            border: 2px solid var(--accent-color);
            box-shadow: 0 0 8px var(--accent-color);
        }
        .game-card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: inherit;
        }
        .game-card-genre {
            font-size: 1rem;
            font-weight: 400;
            color: rgba(213, 214, 218, 0.7);
        }
        footer {
            background-color: var(--primary-dark);
            border-top: 2px solid var(--primary-light);
            border-radius: 15px 15px 0 0;
            padding: 1.5rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(213, 214, 218, 0.7);
            margin-top: 3rem;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
        }
        footer a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--primary-light);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 4rem 1rem; }
            .hero-statement { font-size: 1.2rem; }
            .game-card-title { font-size: 1.5rem; }
        }
		/* Game Pages Styling */
		.disavow-section { background-color: rgba(0, 191, 255, 0.1); border: 1px solid var(--accent-color); border-radius: 10px; padding: 1.5rem; margin-top: 2rem; font-size: 0.9rem; }
        .carousel-item img { border-radius: 10px; border: 2px solid var(--accent-color); box-shadow: 0 0 10px rgba(0, 191, 255, 0.5); max-height: 500px; object-fit: cover; margin: 0 auto; width: 100%; aspect-ratio: 16/9; }
        .trailer-placeholder-wrapper { display: block; position: relative; border-radius: 10px; overflow: hidden; border: 2px solid var(--accent-color); box-shadow: 0 0 10px rgba(0, 191, 255, 0.5); aspect-ratio: 16/9; }
        .trailer-placeholder-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .trailer-placeholder-wrapper:hover img { transform: scale(1.05); }
        .play-icon-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.4); transition: background-color 0.3s ease; }
        .play-icon-overlay i { font-size: 5rem; color: var(--accent-color); text-shadow: 0 0 15px rgba(0, 191, 255, 0.7); transition: transform 0.3s ease; }
        .trailer-placeholder-wrapper:hover .play-icon-overlay i { transform: scale(1.1); }
        .carousel-indicators [data-bs-target] { background-color: var(--primary-light); }
        .carousel-indicators .active { background-color: var(--accent-color); }
        .platform-icons { margin-top: 1rem; }
        .platform-icons a { text-decoration: none; }
        .platform-icons i { font-size: 2rem; margin: 0 0.5rem; color: var(--primary-light); transition: color 0.3s ease; }
        .platform-icons i:hover { color: var(--accent-color); }
