        body, html {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        .navbar {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        .navbar-transparent {
            background: none;
        }
        .bg-image {
            background-image: url("/static/images/eve-online-background.png");
            background-size: cover;
            background-position: center;
            position: relative;
            height: 135%;
            z-index: 1;
        }
        
        .bg-image:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.5); /* Adjust color and opacity to your preference */
            z-index: 2;
        }
        
        .content-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            text-align: center;
            color: white;
            /* Add your font styling here */
        }
        
        .footer {
            position: fixed; /* Change from absolute to fixed */
            bottom: 0;
            width: 100%;
            height: 60px; /* Keep this height in mind for positioning the cookie consent */
            background-color: #101010;
            color: #8f8f89;
            text-align: center;
            padding: 20px;
            z-index: 100;
        }
        
        .btn-stylized {
            background-color: #333; /* Button background color */
            border: none;
            color: white; /* Text color */
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            transition-duration: 0.4s;
            cursor: pointer;
        }
        
        .btn-stylized:hover {
            background-color: #555;
            color: white;
        }
        @font-face {
            font-family: 'Shentox';
            src: url("/static/fonts/ShentoxTRIAL-Bd.otf") format('opentype');
            font-weight: normal;
            font-style: normal;
        }

        .navbar-brand {
            display: flex;
            align-items: center; /* This will vertically center the logo if it's smaller than the navbar height */
            height: 80px; /* Adjust the height as needed */
        }
        .homepage_logo {
            width: 40vw;
            margin-top: -4em;
            margin-bottom: -3em;
        }
        .btn_container {
            position: absolute;
            top: 75%;
            left: 50%;
            z-index: 2;
            transform: translate(-50%, -50%);
            width: 20em;
        }
        .btn_container .login_btn {
            width: 20em;
            border-radius: 1em;
        }

        .btn_container .about_btn {
            display: block;
            width: 20em;
            text-decoration: none;
            color: #fff; /* White text color */
            text-align: center;
            padding-top: .5em;
            cursor: pointer;
            background-color: transparent; /* Make the button background transparent */
            border: none; /* Remove any border */
        }
        
        /* Ensure btn-stylized does not override the transparency with its own background or border */
        .btn_container .btn-stylized {
            background-color: transparent;
            border: none;
        }

        /* Modal Dialog */
        .modal-dialog {
            max-width: 80%;
            margin: 1.75rem auto;
        }

        /* Modal Content */
        .modal-content {
            background-color: #282c34; /* Dark background for the modal */
            color: #FFF; /* Light text for readability */
            border: 1px solid #444; /* Slight border to help the modal stand out */
        }

        /* Modal Header */
        .modal-header {
            border-bottom: 1px solid #444; /* Subtle border for the header */
        }

        /* Modal Title */
        .modal-title {
            color: #007bff; /* Example accent color - adjust based on your site */
        }

        .modal-title-logo {
            height: auto;
            max-height: 40px; /* Adjust the max height as needed */
            width: auto;
            max-width: 100%; /* Ensures the image is responsive and fits within the modal */
            vertical-align: middle; /* Aligns the image with the text */
            margin-right: 10px; /* Adds some space between the logo and the following text */
        }

        /* Modal Body */
        .modal-body {
            padding: 20px;
            line-height: 1.5; /* Improve readability */
        }

        /* Headings within Modal Body */
        .modal-body h1, .modal-body h2 {
            color: #FFF;
        }

        /* List items within Modal Body */
        .modal-body li {
            margin-bottom: 10px;
        }

        /* Modal Footer */
        .modal-footer {
            border-top: 1px solid #444; /* Subtle border for the footer */
        }

        .modal-footer .btn {
            background-color: #333; /* Dark buttons */
            color: #FFF; /* Light text */
        }

        .modal-footer .btn:hover {
            background-color: #1DB954; /* Accent color on hover */
        }

        /* Custom scrollbar for modal content */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: #555; /* Scrollbar color */
            border-radius: 4px;
        }

        /* Adding a fade-in effect for the modal */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            animation-name: fadeIn;
            animation-duration: 0.5s;
        }

        /* Changes the color of the 'X' close button */
        .close {
            color: #fff; /* or any color you prefer */
            opacity: 1; /* Bootstrap usually has some opacity set, so ensure it's fully visible */
        }

        /* Changes the color of the 'X' close button on hover */
        .close:hover,
        .close:focus {
            color: #aaa; /* lighter grey to indicate hover state */
            text-decoration: none;
            opacity: 1; /* Ensures the hover state is also fully visible */
        }

        #privacyPolicyModal .close {
            color: white; /* Or any color that suits the design */
            opacity: 1; /* No transparency for better visibility */
        }

        .cookie-consent-container {
            position: fixed; /* Ensure it's fixed to be visible always */
            left: 0;
            bottom: 60px; /* Height of the footer */
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: white;
            z-index: 100; /* Ensure this is less than the footer's z-index if you want the footer to be on top */
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: bottom 0.3s; /* Smooth transition for when the cookie consent is shown/hidden */
        }

        .cookie-consent-content {
            flex-grow: 1; /* This makes the content take up the extra space and push the button to the right */
            display: flex;
            justify-content: flex-start; /* Align text to the start of the content area */
        }

        .cookie-consent-content p {
            margin: 0; /* Removes default margin */
            padding: 0; /* Removes default padding */
            text-align: left; /* Aligns the text to the left within the content area */
        }
        
        .cookie-consent-content a {
            color: #007bff;
            text-decoration: underline;
        }
        
        .cookie-consent-btn {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .cookie-consent-btn:hover {
            background-color: #0069d9;
        }
        
        .buy-me-a-beer-btn:hover {
            background-color: #4e6dd6;
        }