body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
    font-family: ATTFShinGoProBold, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.index {
    background: url("https://darkytxworld.com/images/home-bg.webp"), url("https://darkytxworld.com/images/home-bg.png") center center; /* Correct way to add your custom background image */
    background-size: cover; /* Ensure the background covers the entire body */
    background-repeat: repeat-y;
	height: 100%;
	min-height: 100vh;
}


.installation-guides {
    background: url("https://darkytxworld.com/images/installation-guide-bg.webp"), url("https://darkytxworld.com/images/installation-guide-bg.png") center center; /* Correct way to add your custom background image*/
    background-size: cover; /* Ensure the background covers the entire body */
    background-repeat: repeat-y;
	height: 100%;
	min-height: 100vh;
}



.community {
    background: url("https://darkytxworld.com/images/community-bg.webp"), url("https://darkytxworld.com/images/community-bg.png") center center; /* Correct way to add your custom background image */
    background-size: cover; /* Ensure the background covers the entire body */
    background-repeat: repeat-y;
	height: 100%;
	min-height: 100vh;
}




.support {
    background: url("https://darkytxworld.com/images/support-bg.webp"), url("https://darkytxworld.com/images/support-bg.png") center center; /* Correct way to add your custom background image */
    background-size: cover; /* Ensure the background covers the entire body */
    background-repeat: repeat-y;
	height: 100%;
	min-height: 100vh;
}

.section-bg {
    background: url("https://darkytxworld.com/images/home-bg.webp") center center; /* Correct way to add your custom background image */
	height: 100%;
}

/* Rest of your CSS */
.header, .footer {
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 1em;
    position: relative;
}

.header-image {
    width: 100%;
    height: auto;
    max-height: 200px; /* Adjust as necessary */
    display: block;
    margin: 0 auto;
}

.nav {
    background-color: #333;
}

.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.nav ul li {
    float: left;
}

.nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.nav ul li a:hover {
    background-color: #111;
}

.container {
    padding: 20px;
}

.content {
    margin-top: 20px;
}

/*
.Installation Guides {
    width: 100%;
    max-width: 300px;
    padding: 5px;
}
*/

/* Default light theme styles */
body {
    font-family: ATTFShinGoProBold, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.nav ul li button {
    background: none;
    border: none;
    color: white;
    padding: 14px 16px;
    cursor: pointer;
}

/* Dark theme styles */
body.dark-theme {
    color: #fff;
    background-color: #222;
}

body.dark-theme .nav {
	backdrop-filter: var(--content-bg-blur);
}

body.dark-theme .nav ul li a, 
body.dark-theme .nav ul li button {
    color: #fff;
}

body.dark-theme .nav ul li a:hover, 
body.dark-theme .nav ul li button:hover {
    background-color: #555;
}

/* Flexbox */

:root {
    --bg-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    --content-bg-color: rgba(255, 255, 255, 0.3); /* Semi-transparent white background */
	--content-bg-blur: blur(20px);
    --border-color: #ddd;
    --text-color: #333;
    --link-color: #FFF;
    --link-hover-color: #0056b3;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --bullet-color: #666;
}

.dark-theme {
    --bg-color: rgba(44, 44, 44, 0.8); /* Semi-transparent dark background */
    --content-bg-color: rgba(58, 58, 58, 0.4); /* Semi-transparent dark background */
	--content-bg-blur: blur(20px);
    --border-color: #555;
    --text-color: #ddd;
    --link-color: #4da3ff;
    --link-hover-color: #82caff;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --bullet-color: #999;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    font-family: Arial, sans-serif;
}

header, footer {
    background-color: #007bff;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

header h1, header p, footer p {
    margin: 0;
}

.nav {
    background-color: var(--content-bg-color);
    color: var(--text-color);
    padding: 10px 0;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav li {
    display: inline;
}

.nav a {
    color: var(--link-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.nav a:hover {
    background-color: var(--link-hover-color);
    color: #ffffff;
}

.nav button {
    background: none;
    border: none;
    color: var(--link-color);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.nav button:hover {
    background-color: var(--link-hover-color);
    color: #ffffff;
}

@media screen and (max-width: 600px) {
    .nav {
        /* Adjust styles for mobile devices here */
        /* For example: */
        padding: 5px 0;
    }
}

.mods-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.mods-content {
    max-width: 800px;
    width: 100%;
    padding: 30px;
    background-color: var(--content-bg-color); /* Semi-transparent background */
	backdrop-filter: var(--content-bg-blur);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 10px var(--shadow-color);
}

#videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

h2 {
    margin-top: 0;
    color: var(--text-color);
    text-align: center;
}

iframe {
    max-width: 100%;
    border: none;
}

h3, h4 {
    margin-top: 0;
    color: var(--text-color);
}

p, ul {
    margin: 1em 0;
    line-height: 1.6;
}
ul {
	list-style: none;
}

ul.requirements, ul.mods-list {
    padding-left: 20px;
    list-style: disc;
}

ul.mods-list {
    list-style: none;
}

ul.mods-list li::before {
    content: '•';
    color: var(--bullet-color);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

a:link {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--link-hover-color);
}

strong {
    color: var(--text-color);
}

.content {
    margin: 20px;
}
