@font-face {
  font-family: defused;
  src: url(defused.ttf);
}

footer {
    text-align: center;
    color: #ffffff;
}

#map {
    margin-top: 200px; /* Adjust the value to control spacing from the top */
}

h1 {
    color: #ffffff;
    text-align: center;
    font-family: defused;
    margin-top: 90px;
    font-size: 8.5vw;
    
}

h6 {
    color: #ffffff;
    text-align: center;
    margin-top: 70px;
    font-size: 6.0em;
    
}

h2 {
    color: #FF5733;
    font-size: 1.5em;
    font-family: defused;
    position: relative;
}

h2 span{
    position: absolute;
    top: -150px;
}

h8 {
    color: #FF5733;
    font-size: 2.5em;
    font-family: defused;
}

h3 {
    color: #fdfdfd;
    font-size: 1.0em;
}

h4 {
    color: #FF5733;
    font-size: 1.25em;
}

h5 {
    padding-top: 65px; /* Adds padding below each paragraph */
    text-decoration: underline;
    text-align: center;
}

.rules-section ul {
    font-size: 1.1em;
    line-height: 1.6;
}

.nested {
    padding-left: 20px;
    font-size: 1.1em;
    line-height: 1.6;
}

.underlined {
    text-decoration: underline;
}

l {
    border-bottom: 1.6px solid #ccc;
}

body {
    background-color: #222222;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    padding: 20px;
    background-image: url('images/back1.png');
    background-size: cover;
    background-attachment: fixed;
}

.rules-section {
    background-color: #161616;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(211, 211, 211, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}


.rules-section:hover {
    transform: translateY(-5px); /* Adjust the hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
/* Style for the horizontal list */
.horizontal-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.horizontal-links li {
    display: inline-block;
    margin-right: 5px; /* Adjust spacing between links */
    position: relative;
}

.horizontal-links li::after {
        content: "";
        position: absolute;
        top: 1px; /* Adjust the vertical position */
        bottom: 3px; /* Adjust the vertical position */
        right: -6px; /* Distance between the separator and the link */
        border-right: 2px solid rgb(255, 255, 255); /* Separator style */
    }

.horizontal-links li:last-child::after {
        display: none; /* Hide separator for the last item */
    }

.horizontal-links li:last-child {
    margin-right: 0; /* Remove right margin from the last item */
}

/* Style for the links */
.horizontal-links a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 1.25em;
    font-weight: bold;
}

.horizontal-links a:hover {
    color: #ffffff; /* Change to your desired hover color */
}

table {
    width: 60%;
    border-collapse: collapse;
    margin: 0 auto;
}

th, td {
    text-align: left;
    padding: 8px;
    border: 1px solid #3a3939;
}
.back-to-top {
        display: none; /* Initially hide the button */
        position: fixed; /* Fixed position on the screen */
        bottom: 20px; /* Adjust distance from bottom */
        right: 20px; /* Adjust distance from left */
        z-index: 99; /* Ensure it appears above other elements */
        background-color: #007bff; /* Button background color */
        color: #fff; /* Text color */
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
    }

span {
    margin-right: 10px;
}
    
button {
    background-color: #00ff4000;
    color: white;
    border: #ccc;
    border-width: 1px;
    padding: 1px 1px;
    cursor: pointer;
    font-size: 0.6em;
}

.button-approve{
    background-color: #00c241;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
    font-size: 1.5ex;
    display: inline-block;
}

.button-deny{
    background-color: #c20000;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
    font-size: 1.5ex;
    display: inline-block;
}

.button-save{
    background-color: #007bff;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
    font-size: 1.5ex;
    display: inline-block;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.faq-item h3:hover{
    font-weight: bold;
    color: #FF5733;
}

.faq-answer {
    display: none;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.faq-answer p{
    font-weight: normal;
}

.navbar {
    position: fixed;
    border-radius: 10px; /* Adjust the value as needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 98%;
    padding: 10px;
}

.logged-in-section {
    display: flex;
    align-items: center;
}

.logged-in-section img {
    border-radius: 50%; /* Make the avatar image round */
    margin-right: 10px; /* Add some space between image and text */
}

.logged-in-section .username {
    font-weight: bold; /* Emphasize the username */
    margin-right: 10px; /* Add some space between username and button */
}

.profile-frame {
    display: flex;
    align-items: center;
    border-radius: 10px; /* Make the frame round */
    border: 2px solid #1b1b1b; /* White border around the frame */
    padding: 5px; /* Adjust padding for the frame */
    background-color: #161616;
}

.profile-frame img {
    border-radius: 50%; /* Make the avatar image round */
    margin-right: 10px; /* Add some space between image and text */
    border: solid 2px #777777;
}

.profile-frame .username {
    font-weight: bold; /* Emphasize the username */
    margin-right: 10px; /* Add some space between username and button */
}

.tutorial {
    background-color: #777777;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            width: calc(50% - 20px); /* Adjust width for 2 tutorials in a row */
            float: left;
            box-sizing: border-box;
}

.tutorial h2 {
    color: #868686;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.tutorial p {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio for 16:9 videos */
    margin-bottom: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align items at the top */
    flex-wrap: wrap; /* Allow items to wrap */
    padding: 20px;
}

.card {
    background-color: #161616;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px 20px;
    padding: 20px;
    width: calc(33.33% - 20px); /* Adjust the width to fit 3 cards */
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

.card img {
    width: 100%; /* Adjust image width */
    border-radius: 8px; /* Rounded corners for image */
    margin-bottom: 10px;
}

.card:hover {
    transform: translateY(-5px); /* Adjust the hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card h3 {
    color: #868686;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

.card.application{
    width: fit-content;
}

.card.app_list{
    text-align: center;
}

.links {
    display: flex;
    flex-direction: column;
}

.links a {
    text-decoration: none;
    color: #666;
    font-size: 1.2em;
    margin-bottom: 5px;
    line-height: 1.4;
    text-align: center;
}

.links a:hover {
    color: #dadada; /* Change color on hover */
}

.title {
    font-size: 2.5em;
}

.bank-card {
    background-color: #161616;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
    display: flex; /* Use flexbox to arrange elements */
    justify-content: space-between; /* Align items with space between */
    align-items: center; /* Align items vertically */
    width: 100%;
}

.balance {
    text-align: left; /* Align text to the left */
}

.balance h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
}

.balance-amount {
    font-size: 2.5em;
    font-weight: bold;
}

.actions {
    display: flex; /* Use flexbox for action buttons */
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px; /* Reduce horizontal margin */
    border-radius: 5px;
    font-size: 1.2em;
    white-space: nowrap; /* Prevent text wrapping */
    min-width: 100px; /* Set a minimum width for the buttons */
    display: inline-block; /* Ensure inline block to allow width adjustment */
    text-overflow: ellipsis; /* Show ellipsis for overflowed text */
    overflow: hidden; /* Hide the overflowing text */
}

.btn-deposit {
    background-color: #28a745;
    color: white;
    width: auto;
}

.btn-withdraw {
    background-color: #dc3545;
    color: white;
    width: auto;
}

.stats-box {
    text-align: center;
    background-color: #666;
    padding: 10px;
    /* Other styles */
}

.server-stats {
    border: 4px solid #FF5733; /* Add a border around the stats */
    border-radius: 5px;
    padding: 10px; /* Add padding inside the border */
    margin-top: 15px; /* Adjust spacing from other elements */
    /* Add other styles as needed */
}

.stats-container {
    text-align: center;
    background-color: #161616;
    padding: 10px;
}

.stats-container h4 {
    text-align: center;
    background-color: #161616;
    padding: 10px;
    margin-bottom: 5px; /* Adjust spacing between label and stats */
}

.staff-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Other styles for spacing, alignment, etc. */
}

.staff-card {
    background-color: #161616;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px 20px;
    padding: 20px;
    flex: 0 0 calc(25% - 20px);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.staff-cards.application {
    width: fit-content;
    text-align: center;
}

.staff-image {
    width: 100%; /* Adjust as needed */
    height: auto; /* This keeps the aspect ratio */
    margin-bottom: 20px;
    /* Add other styles like border-radius, object-fit, etc., if required */
}

.staff-card:hover {
    transform: translateY(-5px); /* Adjust the hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.staff-card input[type="submit"]{
    background-color: #4CAF50; /* Set the background color */
    border: none; /* Remove the border */
    color: white; /* Set font color */
    text-align: center; /* Align text in the center */
    text-decoration: none; /* Remove default text decoration */
    display: inline-block;
    font-size: 16px; /* Set font size */
    cursor: pointer; /* Add pointer cursor */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Add border radius */
    transition: background-color 0.3s ease; /* Add transition effect */
    width: 100%;
}

.app-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    /* Other styles for spacing, alignment, etc. */
}

.app-card.questions{
    align-items: stretch;
}

.app-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #161616;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px 20px;
    padding: 20px;
    flex: 0 0 calc(75% - 20px);
    margin-bottom: 30px;
    /* Other styles for card appearance */
}

.app-card h3 {
    color: #c2c2c2;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.app-card textarea {
    width: 100%; /* Adjust width of textarea */
    background-color: #333; /* Change background color of the textarea */
    color: #fff; /* Change font color */
    border: 1px solid #ccc; /* Change border color */
    border-radius: 5px; /* Add border radius */
    padding: 10px; /* Add some padding for better readability */
    transition: transform 0.3s ease-in-out;
}

.app-card:hover {
    transform: translateY(-5px); /* Adjust the hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.app-card input[type="submit"] {
    background-color: #4CAF50; /* Set the background color */
    border: none; /* Remove the border */
    color: white; /* Set font color */
    text-align: center; /* Align text in the center */
    text-decoration: none; /* Remove default text decoration */
    display: inline-block;
    font-size: 16px; /* Set font size */
    cursor: pointer; /* Add pointer cursor */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Add border radius */
    transition: background-color 0.3s ease; /* Add transition effect */
}

.app-card input[type="submit"]:hover {
    background-color: #45a049; /* Change background color on hover */
}

.table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}

.table thead {
    background-color: #333; /* Dark background for header */
    color: #fff; /* Light color for text */
}

.table tbody tr:nth-child(odd) {
    background-color: #202020; /* Lighter background for odd rows */
    color: #ffffff; /* Lighter text color */
}

.table tbody tr:nth-child(even) {
    background-color: #505050; /* Even lighter background for even rows */
    color: #ffffff; /* Lighter text color */
}

.table tbody tr:hover {
    background-color: #000000; /* Hover background color */
    color: #ffffff; /* Text color on hover */
}

.input-output-container, .loot-timer-container, .user-input-container, .calculator-results-container {
    background-color: rgba(255, 255, 255, 0.1); /* Consistent with section-container styles */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-container-combinations, 
.section-container-loot-timer, 
.section-container-fuse-calculator {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Reuse button styles */
.generate-button, .loot-timer-start-button, .loot-timer-pause-button, .plus-five-minutes-button, .plus-ten-minutes-button, .fuse-calculate, .fuse-timer-start, .fuse-timer-pause, .fuse-timer-reset {
    background-color: #007bff; /* Primary button color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    margin: 5px; /* Spacing between buttons */
}

.generate-button:active, .loot-timer-start-button:active, .loot-timer-pause-button:active, .plus-five-minutes-button:active, .plus-ten-minutes-button:active {
    background-color: #0056b3; /* Darker shade for active state */
}

/* Input Styles */
input[type="number"] {
    padding: 10px;
    margin: 5px 0; /* Spacing between inputs */
    border-radius: 5px;
    border: 1px solid #ddd; /* Light border */
    width: calc(100% - 22px); /* Full width with padding */
}

/* Output container */
.combination-outputs, .calculator-results, .loot-timer {
    color: white;
    font-family: 'Defused', sans-serif;
    padding: 10px;
    border-radius: 5px;
    background-color: #333; /* Dark background for contrast */
    margin-top: 10px;
    text-align: center;
    font-size: xx-large;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .input-output-container, .loot-timer-container, .user-input-container, .calculator-results-container, .section-container-combinations, .section-container-loot-timer, .section-container-fuse-calculator {
        width: 100%; /* Full width on small screens */
        padding: 10px; /* Reduced padding */
    }
    .generate-button, .loot-timer-start-button, .loot-timer-pause-button, .plus-five-minutes-button, .plus-ten-minutes-button, .fuse-calculate, .fuse-timer-start, .fuse-timer-pause, .fuse-timer-reset {
        font-size: 0.8em; /* Smaller font size for buttons */
    }
}

.keypad-inputs {
    display: flex; /* Use flexbox to layout children inline */
    align-items: center; /* Align items vertically in the center */
    justify-content: space-between; /* Distribute space evenly */
    flex-wrap: wrap; /* Allow items to wrap in small screens */
    gap: 10px; /* Space between items */
}

.keypad-inputs input[type="number"] {
    flex-grow: 1; /* Inputs grow to fill available space */
}

.generate-button-container {
    flex-grow: 1; /* Button container grows to fill available space */
}

.btn-red {
    background-color: #dc3545; /* Red background color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    margin: 5px;
    display: inline-block;
}

.btn-red:hover {
    background-color: #c82333; /* Slightly darker shade of red for hover state */
}

.generate-button:hover,
.loot-timer-start-button:hover,
.loot-timer-pause-button:hover,
.plus-five-minutes-button:hover,
.plus-ten-minutes-button:hover,
.fuse-calculate:hover,
.fuse-timer-start:hover,
.fuse-timer-pause:hover,
.fuse-timer-reset:hover {
    background-color: #0069d9; /* Darker shade for hover */
}

marketing-materials{
    font-size: 1.3em;
}

marketing-materials h1{
    font-size: 1.4em;
}

marketing-materials p{
    text-align: center;
}

.marketing-materials .card{
    width: 100%;
}

