        header {
            height: 8vh; /* Adjusted to 8% of viewport height */
            background-color: #101720; /* Background color set to #101720 */
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            position: relative; /* Enable relative positioning */
        }

        /* Logo styling */
        .logo {
            display: flex;
            align-items: center;
            margin-left: -5px; /* Adjusted to 20px from the left side of the screen */
            text-decoration: none; /* Remove underline */
            color: white; /* Text color */
        }

        .logo img {
            height: 6vh; /* Adjusted to 6% of viewport height */
            margin-right: 20px; /* Space between logo and text */
        }

        .logo-text {
            font-family: Impact, sans-serif; /* Use Impact font */
            font-weight: bold; /* Font weight adjusted to 300 */
            font-size: 1.6rem; /* Increased font size for Project Neutron text */
            color: white; /* Adjust text color */
            position: relative; /* Enable relative positioning */
        }

        /* Navigation text styling */
        .nav-text {
            font-family: Impact, sans-serif; /* Use Impact font */
            font-weight: bold; /* Font weight adjusted to 100 */
            font-size: 1.2rem; /* Adjust font size as needed */
            color: white; /* Adjust text color */
            text-decoration: none; /* Remove underline */
            margin-right: 50px; /* Adjust space between navigation items */
            position: relative; /* Enable relative positioning */
        }

        .nav-text::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px; /* Adjust position as needed */
            width: 0;
            height: 3px; /* Height of the underline */
            background-color: white; /* Underline color */
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-text:hover::after {
            width: 100%;
            left: 0;
        }

        /* Thin line */
        .top-line {
            position: absolute;
            top: 100%; /* Positioned 100% from the top */
            left: 0;
            width: 100%;
            height: 1.5px; /* 1.5px height for the line */
            background-color: #303747; /* Color set to #303747 */
        }

        /* Rectangle styling */
        .rectangle {
            height: 75%; /* Height set to 70% */
            width: 175px; /* Increased width */
            background-color: transparent; /* Background color set to transparent */
            border-radius: 10px; /* Rounded edges */
            border: 2px solid #d4af37; /* Darker gold outline */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease; /* Add transition for smooth animation */
        }

        .rectangle:hover {
            transform: scale(1.1); /* Scale up the rectangle on hover */
        }

        .rectangle-text {
            font-family: Impact, sans-serif; /* Use Impact font */
            font-weight: 300; /* Font weight adjusted to 300 */
            font-size: 1.2rem; /* Font size for the text */
            color: #d4af37; /* Darker gold color for the text */
            text-decoration: none; /* Remove underline */
            padding: 10px; /* Add padding for better click area */
        }

        /* Positioning */
        .home-text {
            position: absolute;
            left: 282px; /* Original position for Home */
            top: 50%; /* Align vertically */
            transform: translateY(-50%); /* Center vertically */
        }

        .games-text {
            position: absolute;
            left: 347px; /* Original position for Games */
            top: 50%; /* Align vertically */
            transform: translateY(-50%); /* Center vertically */
        }

        .apps-text {
            position: absolute;
            left: 422px; /* Original position for Apps */
            top: 50%; /* Align vertically */
            transform: translateY(-50%); /* Center vertically */
        }

        .movies-text {
            position: absolute;
            left: 482px; /* Original position for Movies */
            top: 50%; /* Align vertically */
            transform: translateY(-50%); /* Center vertically */
        }

        .tv-text {
            position: absolute;
            left: 559px; /* Original position for TV Shows */
            top: 50%; /* Align vertically */
            transform: translateY(-50%); /* Center vertically */
        }

        /* New styling for the large text */
        .large-text {
            position: absolute;
            top: 50%; /* Center vertically */
            left: 16%; /* Positioned 25% from the left */
            transform: translateY(-50%); /* Center vertically */
            font-family: Impact, sans-serif; /* Use Impact font */
            font-weight: bold; /* Font weight adjusted to 300 */
            font-size: 6rem; /* Large font size */
            color: white; /* Text color */
            text-align: center; /* Center text */
        }

        .left-circle,
        .right-circle {
            width: 50px; /* Circle width */
            height: 50px; /* Circle height */
            background-color: transparent; /* Circle color */
            border-radius: 50%; /* Border radius to make it circular */
            border: 1.5px solid #303747; /* Circle border */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white; /* Arrow color */
            font-size: 1.2rem; /* Adjust arrow size */
        }

        .left-circle {
            position: absolute;
            left: 54%; /* Positioned 54% from the left */
            top: 50%; /* Center vertically */
            transform: translateY(-50%); /* Center vertically */
        }

        .right-circle {
            position: absolute;
            right: 6%; /* Positioned 54% from the left */
            top: 50%; /* Center vertically */
            transform: translateY(-50%); /* Center vertically */
        }
        
        .centered-image {
            width: 30%; /* Image width set to 35% */
            max-width: 100%; /* Ensure image doesn't exceed its container */
            height: auto; /* Maintain aspect ratio */
            display: block; /* Ensure image is centered properly */
            margin: 0 auto; /* Center horizontally */
            position: absolute; /* Positioning */
            left: 59%; /* Positioned 56.5% from the left */
            top: 50%; /* Center vertically */
            transform: translateY(-50%); /* Center vertically */
        }
    
        .gallery-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-color: #101720;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
        }

        .gallery-spot {
            width: calc(100% / 3 - 20px); /* Adjust spacing between gallery spots */
            height: 80%;
            background-color: #333;
            border-radius: 10px;
        }

        .gallery-button {
            width: 50px;
            height: 50px;
            background-color: #555;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .image-container {
            position: absolute;
            top: 50%;
            left: 74%; /* Adjusted to 75% from the left */
            transform: translateX(-50%) translateY(-50%);
            width: 30%;
        }

        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .image-container img {
            opacity: 1;
            transition: opacity 0.5s ease; /* Smooth transition for opacity */
        }

        .image-fade-out {
            opacity: 0;
        }

        .left-circle, .right-circle {
            cursor: pointer; /* Change cursor to pointer */
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            align-items: center;
            margin-right: 175px; /* Adjust space from the time display */
            margin-left: auto; /* Push icons to the left */
        }
        
        .social-icon {
            font-family: Impact, sans-serif; /* Use Impact font */
            font-size: 1.15rem; /* Size of the icons */
            color: white; /* Icon color */
            margin-right: 10px; /* Reduced space between icons */
            transition: color 0.3s ease, background 0.3s ease; /* Smooth color transition on hover */
            position: relative; /* Relative positioning for background */
        }
        
        .social-icon:hover {
            color: white; /* Default color stays white for hover */
        }
        
        /* Specific hover colors */
        .social-icon.snap:hover {
            color: #FFFC00; /* Snapchat color */
        }
        
        .social-icon.discord:hover {
            color: #5865F2; /* Discord color */
        }
        
        .social-icon.instagram:hover {
            color: #C13584;
        }
        
        .social-icon.tiktok:hover {
            color: #FE2c55; /* TikTok color */
        }
        
        .social-icon.youtube:hover {
            color: #FF0000; /* YouTube color */
        }
        
        /* Time display styling */
        .time-display {
            font-family: Impact, sans-serif; /* Use Impact font */
            font-weight: bold; /* Font weight adjusted to 300 */
            font-size: 1.8rem; /* Font size for the time */
            color: white; /* Text color */
            position: absolute;
            right: 20px; /* Space from the right edge */
            top: 50%; /* Align vertically */
            transform: translateY(-50%); /* Center vertically */
        }
        
        .updates {
            position: fixed;
            background-color: #303747;
            width: 100%;
            height: calc(0.25vh + 50px);
            bottom: 0;
        }
        
        .updates-text {
            font-size: 1.1rem;
            color: white;
            text-align: center;
            top: 50%;
            transform: translateY(50%);
        }

        .embed-container {
            position: absolute;
            left: 2vh;
            width: 70vw;
            height: auto; /* 16:9 aspect ratio */
            top: 10vh;
            bottom: 2vh;
            background-color: #f0f0f0; /* Optional background color for visibility */
            border-radius: 10px;
            box-sizing: border-box; /* Ensures padding is included in the total height */
        }

        .embed-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }

        .button-container {
            position: fixed;
            bottom: 3vh; /* Position 3vh from the bottom */
            right: 5vw; /* Increase this value to move buttons further to the right */
            display: flex;
            gap: 10px; /* Space between buttons */
        }

        .square-button {
            width: 50px; /* Width of the button */
            height: 50px; /* Height of the button */
            background-color: white; /* Button background color */
            color: white; /* Text color */
            border: none; /* Remove border */
            border-radius: 5px; /* Slightly rounded corners */
            font-family: Impact, sans-serif; /* Font */
            font-size: 1.2rem; /* Font size for icons */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth color and scale transition */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .square-button i {
            font-size: 1.2rem; /* Adjust icon size */
            color: #101720;
        }

        .square-button:hover {
            transform: scale(1.12); /* Scale up the button on hover */
        }

        .button-container a {
            text-decoration: none; /* Remove underline */
        }

        .square-image {
            position: fixed; /* Fix the position relative to the viewport */
            top: 10vh; /* 10% of the viewport height from the top */
            right: 10vw; /* 10% of the viewport width from the right */
            width: 8vw; /* Set a fixed width */
            height: 8vw; /* Set the height to match the width to keep it square */
            object-fit: cover; /* Ensure the image covers the square area without distortion */
            border-radius: 10px; /* Optional: rounded corners */
        }

        .image-text {
            position: fixed; /* Fix the position relative to the viewport */
            top: 27vh; /* Position it below the image */
            right: 14vw; /* Align with the image */
            font-family: Impact, sans-serif; /* Use Impact font */
            font-weight: 300; /* Adjust font weight */
            font-size: 1.5rem; /* Font size */
            color: white; /* Text color */
            text-align: center; /* Center the text */
            width: 25vw; /* Match the width of the image */
            transform: translateX(50%); /* Move the text to center it */
        }

        .changelog-title {
            font-size: 2.1rem;
            color: white;
            text-align: center;
            font-weight: bold;
            margin-top: 36px;     
        }

        .changelog-date {
            font-size: 1rem;
            color: lightgray;
            text-align: center;
            font-weight: bold;
            margin-top: 0;   
            position: relative;
        }

        .updates-container {
            width: 65%;
            max-width: 800px;
            background-color: transparent;
            margin-top: 20px;
            margin-left: 50%;
            position: relative;
            transform: translateX(-50%);
            border-radius: 10px;
            border: 1px solid white;
        }
        
        .newest-update {
            margin-top: 35px;
        }
        
        .oldest-update {
            margin-bottom: 25px;
        }

        .updates-title {
            font-size: 1.8rem;
            color: white;
            text-align: left;
            font-weight: bold;
            margin-top: 8px;
            margin-left: 15px;
        }
        
        .update-date {
            font-size: 1.1rem;
            color: lightgray;
            text-align: left;
            font-weight: bold;
            margin-left: 15px;
        }
        
        .updates-description {
            font-size: 1rem;
            color: white;
            text-align: left;
            margin-top: 15px;
            margin-left: 15px;
            margin-right: 15px;
            margin-bottom: 10px;
        }

        .centered-text {
            position: absolute;
            left: 50%; /* Updated position */
            top: 16vh;
            transform: translate(-50%, -50%);
            font-family: Impact, sans-serif;
            font-weight: 300;
            font-size: 3rem;
            color: white;
        }

        .themes-text {
            position: absolute;
            left: 50%; /* Updated position */
            top: 35vh;
            transform: translate(-50%, -50%);
            font-family: Impact, sans-serif;
            font-weight: 300;
            font-size: 1.5rem;
            color: white;
        }

        .cloak-text {
            position: absolute;
            left: 50%; /* Updated position */
            top: 52.5vh;
            transform: translate(-50%, -50%);
            font-family: Impact, sans-serif;
            font-weight: 300;
            font-size: 1.5rem;
            color: white;
        }
        
        #ab-cloak {
            position: absolute;
            left: 50%; /* Center the button horizontally */
            top: 22vh; /* Position 20px below the search bar */
            transform: translateX(-50%); /* Center the button horizontally */
            background-color: transparent; /* Transparent background */
            color: white; /* White text color */
            font-family: Impact, sans-serif; /* Font family */
            font-size: 1.2rem; /* Font size */
            border: 1.5px solid #fff; /* 1.5px white border */
            border-radius: 12px; /* Rounded corners */
            padding: 10px 20px; /* Padding for button */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
            transform-origin: center; /* Scale from the center */
        }

        #ab-cloak:hover {
            background-color: #303747; /* Slightly visible white background on hover */
            color: #fff; /* Ensure text remains white on hover */
            transform: translateX(-50%) scale(1.1); /* Slightly enlarge the button on hover */
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Add shadow for 3D effect */
        }
        
        /* Dropdown styling */
        .dropdown {
            position: absolute;
            left: 50%; /* Center the dropdown horizontally */
            top: 39vh; /* Position it appropriately on the page */
            transform: translateX(-50%); /* Center the dropdown horizontally */
            background-color: transparent; /* Transparent background */
            color: white; /* White text color */
            font-family: Impact, sans-serif; /* Font family */
            font-size: 1.2rem; /* Font size */
            border: 1.5px solid #fff; /* 1.5px white border */
            border-radius: 12px; /* Rounded corners */
            padding: 10px 20px; /* Padding for dropdown */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
            transform-origin: center; /* Scale from the center */
        }

        .dropdown:hover {
            background-color: #303747; /* Slightly visible white background on hover */
            color: #fff; /* Ensure text remains white on hover */
            transform: translateX(-50%) scale(1.1); /* Slightly enlarge the dropdown on hover */
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Add shadow for 3D effect */
        }

        .dropdown-content {
            display: none; /* Hidden by default */
            position: absolute;
            background-color: #101720; /* Background color for dropdown content */
            border: 1.5px solid #fff; /* Border matching the button */
            border-radius: 12px; /* Rounded corners */
            min-width: 160px; /* Minimum width */
            z-index: 1; /* Stack on top */
        }

        .dropdown-content a {
            color: white; /* White text color */
            padding: 12px 16px; /* Padding for links */
            text-decoration: none; /* No underline */
            display: block; /* Block display for links */
            font-family: Impact, sans-serif; /* Font family */
            font-size: 1rem; /* Font size */
            border-bottom: 1px solid #fff; /* Border for separation */
        }

        .dropdown-content a:hover {
            background-color: #303747; /* Background color on hover */
        }

        .dropdown:hover .dropdown-content {
            display: block; /* Show dropdown content on hover */
        }
        
        .text-cloak-container {
            position: absolute;
            top: 60vh; /* Center vertically in the viewport */
            left: 50%; /* Center horizontally in the viewport */
            transform: translate(-50%, -50%); /* Center both horizontally and vertically */
            display: flex; /* Use flexbox for alignment */
            align-items: center; /* Align items vertically in the center */
            gap: 10px; /* Space between the text box and button */
        }

        /* Styling for text box */
        .text-cloak-box {
            height: 40px;
            width: 300px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 10px;
            padding: 10px;
            margin: 0; /* Remove margin to avoid extra spacing */
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Styling for Set Tab Name button */
        .set-tab-name-button {
            height: 40px;
            width: 160px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 12px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0; /* Remove margin to avoid extra spacing */
        }
        
        .icon-cloak-container {
            position: absolute;
            top: 68vh; /* Center vertically in the viewport */
            left: 50%; /* Center horizontally in the viewport */
            transform: translate(-50%, -50%); /* Center both horizontally and vertically */
            display: flex; /* Use flexbox for alignment */
            align-items: center; /* Align items vertically in the center */
            gap: 10px; /* Space between the text box and button */
        }

        /* Styling for icon text box */
        .icon-cloak-box {
            height: 40px;
            width: 300px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 10px;
            padding: 10px;
            margin: 0; /* Remove margin to avoid extra spacing */
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Styling for Set Tab Icon button */
        .set-tab-icon-button {
            height: 40px;
            width: 160px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 12px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0; /* Remove margin to avoid extra spacing */
        }
        
        .panic-key-text {
            position: absolute;
            left: 50%; /* Updated position */
            top: 87vh;
            transform: translate(-50%, -50%);
            font-family: Impact, sans-serif;
            font-weight: 300;
            font-size: 1.5rem;
            color: white;
        }
        
        .preset-buttons {
            position: absolute;
            left: 50%; /* Center horizontally */
            top: 74vh; /* Adjust vertical position as needed */
            transform: translateX(-50%); /* Center horizontally */
            display: flex; /* Use flexbox for alignment */
            gap: 10px; /* Space between buttons */
        }

        .preset-button {
            height: 40px; /* Height of each button */
            width: 40px; /* Width of each button */
            background-color: transparent; /* Transparent background */
            background-size: 16px 16px; /* Scale the background image to fit within the button */
            background-position: center; /* Center the background image */
            background-repeat: no-repeat; /* Prevent repeating the background image */
            color: white; /* Text color */
            font-family: Impact, sans-serif; /* Font family */
            font-size: 1.2rem; /* Font size */
            border: 1.5px solid #fff; /* Border */
            border-radius: 8px; /* Slightly rounded corners */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
        }

        .preset-button:hover {
            background-color: #303747; /* Slightly visible background on hover */
            color: #fff; /* Ensure text remains white on hover */
            transform: scale(1.1); /* Slightly enlarge the button on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Add shadow for 3D effect */
        }
        
        .set-panic-key-container {
            position: absolute;
            top: 94vh; /* Center vertically in the viewport */
            left: 50%; /* Center horizontally in the viewport */
            transform: translate(-50%, -50%); /* Center both horizontally and vertically */
            display: flex; /* Use flexbox for alignment */
            align-items: center; /* Align items vertically in the center */
            gap: 10px; /* Space between the text box and button */
        }

        /* Styling for text box */
        .set-panic-key-box {
            height: 40px;
            width: 300px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 10px;
            padding: 10px;
            margin: 0; /* Remove margin to avoid extra spacing */
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Styling for Set Tab Name button */
        .set-panic-key-button {
            height: 40px;
            width: 160px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 12px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0; /* Remove margin to avoid extra spacing */
        }
        
        .set-panic-url-container {
            position: absolute;
            top: 102vh; /* Center vertically in the viewport */
            left: 50%; /* Center horizontally in the viewport */
            transform: translate(-50%, -50%); /* Center both horizontally and vertically */
            display: flex; /* Use flexbox for alignment */
            align-items: center; /* Align items vertically in the center */
            gap: 10px; /* Space between the text box and button */
        }

        /* Styling for text box */
        .set-panic-url-box {
            height: 40px;
            width: 300px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 10px;
            padding: 10px;
            margin: 0; /* Remove margin to avoid extra spacing */
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Styling for Set Tab Name button */
        .set-panic-url-button {
            height: 40px;
            width: 160px;
            background-color: transparent;
            color: white;
            font-family: Impact, sans-serif;
            font-size: 1.2rem;
            border: 1.5px solid #fff;
            border-radius: 12px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0; /* Remove margin to avoid extra spacing */
        }
        
        #ad-panic-key {
            position: absolute;
            left: 50%; /* Center the button horizontally */
            top: 8vh; /* Position 20px below the search bar */
            transform: translateX(-50%); /* Center the button horizontally */
            background-color: transparent; /* Transparent background */
            color: white; /* White text color */
            font-family: Impact, sans-serif; /* Font family */
            font-size: 1.2rem; /* Font size */
            border: 1.5px solid #fff; /* 1.5px white border */
            border-radius: 12px; /* Rounded corners */
            padding: 10px 20px; /* Padding for button */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
            transform-origin: center; /* Scale from the center */
        }

        #ad-panic-key:hover {
            background-color: #303747; /* Slightly visible white background on hover */
            color: #fff; /* Ensure text remains white on hover */
            transform: translateX(-50%) scale(1.1); /* Slightly enlarge the button on hover */
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Add shadow for 3D effect */
        }
        
        .hidden-text-container {
            position: absolute;
            top: 120vh;
            width: 100%;
            text-align: center;
        }

        .hidden-text {
            font-size: 24px;
            color: transparent;
        }

        .statistics {
            position: fixed;
            bottom: 10px;
            left: 10px;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            width: 250px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif; /* Specify Arial here */
        }
        
        .statistics h2 {
            margin: 0;
            font-size: 18px;
            color: #333;
            border-bottom: 2px solid #101720;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .statistics p {
            margin: 8px 0;
            color: #555;
        }
        
        .statistics p span {
            font-weight: bold;
        }
