    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #0e0e0e;
      color: #ccc;
	  text-shadow: 1px 1px 2px #000;
	 /* background: url('background.png') no-repeat center center fixed;
      background-size: cover;
      backdrop-filter: brightness(0.4); /* Optional: dim the background for readability */
    }
    header {
      background: #000;
      padding: 30px;
      text-align: center;
	        font-family: 'Orbitron', sans-serif;
      border-bottom: 2px solid #222;
	  background: url('img/image.webp') no-repeat center;
      background-size: cover;
      backdrop-filter: brightness(0.4); /*Optional: dim the background for readability */
    }
	.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;

	}
	.header-image {
    width: 100px;
    height: auto;
	}
	.header-image.left {
    transform: scaleX(-1); /* Mirror the left image */
	}
    header h1 {
      margin: 0;
      color: #58aaff;
	  
    }
    nav {
      display: flex;
      justify-content: center;
      background: #111;
	  	        font-family: 'Orbitron', sans-serif;
      padding: 10px;

	  nav img {
		        height: 40px;
      margin-right: 15px;
	  }
    }
    nav a {
      color: #aaa;
      margin: 0 15px;
      text-decoration: none;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #fff;
    }
    section {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
    }
    h2 {
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
      color: #58aaff;
    }
	   h3 {
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
      color: #58aaff;
	        text-align: center;
    }
	   h4 {
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
      color: #58aaff;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #111;
      color: #666;
    }
	/* Discord Join Button Styling */
#discordJoinButton {
    position: fixed;
    bottom: 75px; /* Position just above the footer */
    right: 20px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #5865F2;  /* Discord blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure it's above other elements */
    transition: background-color 0.3s ease;
}

#discordLogo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

#discordJoinButton:hover {
    background-color: #4752c4;  /* Darker blue when hovered */
}

    #toggleContent {
      display: none;
      margin-top: 10px;
      padding: 10px;
      background-color: #f0f0f0;
    }

    .contact {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .contact:last-child {
      border-bottom: none;
    }

    .name {
      font-weight: bold;
    }

    .title {
    }
    
	a {
      color: #aaa;
      margin: 0 15px;
      text-decoration: none;
      transition: color 0.3s;
    }
    a:hover {
      color: #fff;
    }
	
	/* Button Style */
.styled-button {
    background-color: #2a7ab0; /* Background color that matches the theme */
    color: #fff;
    border: 1px solid #e0d9c6; /* Border color to complement the design */
    padding: 12px 25px;
    font-family: 'Merriweather', serif;
    font-size: 1.2em;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.styled-button:hover {
    background-color: #aaa; /* Change to a darker blue on hover */
    border-color: #2a7ab0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
}

/* Focus Effect */
.styled-button:focus {
    outline: none;
    box-shadow: 0 0 6px 2px #c6ae7f; /* Outline to indicate focus */
}

.styled-button.active {
    background-color: #aaa; /* Same as hover or choose another "active" color */
    border-color: #2a7ab0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}