body {
	padding: 0;
	margin: 0;
	font-family: "Noto Sans", sans-serif;
	font-weight: bold;
	background: url('../img/bg.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}

/* Sabit Menü Stilleri */
.fixed-menu {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 15px; /* Menü öğeleri arasındaki boşluk */
	text-align: center;
}

.fixed-menu ul {
  list-style-type: none;
}

.left-menu {
	left: 2%;
}

.right-menu {
	right: 2%;
}

.fixed-menu a {
	display: block;
	transition: transform 0.3s ease;
}

.fixed-menu a:hover {
	transform: scale(1.1);
}

.fixed-menu img {
	width: auto;
	max-width: 100%;
}


/* Ana İçerik ve Resim Galerisi Stilleri */
.main-content-wrapper {
    text-align: center;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20%; /* Resimler arasındaki %20 boşluk */
}

.gallery-image {
    max-width: 100%;
    height: auto;
}

/* Medya Sorguları - Butonların Büyüyüp Küçülürken Kaymamasını Sağlar */
@media (max-width: 1365px) {
    .m-d-n {
        display: none !important;
    }
}

@media (min-width: 1366px) {
    .f-d-n {
        display: none !important;
    }
}

/* Mobil Alt Menü */
.mobil_menu {
    background: rgba(0, 0, 0, 0.61);
    width: 100%;
    max-width: 100%;
    z-index: 9;
    position: fixed;
    bottom: 0px;
}

.mobil_menu ul {
    width: 100%;
    list-style: none;
    margin: 0 !important;
    padding: 10px 20px !important;
    display: flex;
    justify-content: space-around;
}

.mobil_menu ul li {
    width: 50%;
    text-align: center;
}

/* Discord Pop-up Stil Kodları */
.popup-container {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease-in-out !important;
}

.popup-container.show {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.popup-content {
    background: linear-gradient(135deg, #2c2f33, #23272a) !important;
    color: #e3e3e3 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
    width: 90% !important;
    max-width: 650px !important;
    overflow: hidden !important;
    transform: scale(0.8) !important;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
    
    /* Mobil Uyum İçin Eklenen Kod */
    max-height: 90vh !important;
    overflow-y: auto !important;
}


.popup-container.show .popup-content {
    transform: scale(1) !important;
}

.close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: 24px !important;
    color: #99aab5 !important;
    transition: color 0.3s !important;
}

.close-btn:hover {
    color: #ffffff !important;
}

.close-btn img {
    width: 24px !important;
    height: 24px !important;
}

.header-image-container {
    width: 100% !important;
    max-height: 200px !important;
    overflow: hidden !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}

.header-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.content-wrapper {
    padding: 25px 35px !important;
}

.content-wrapper h2 {
    color: #7289da !important;
    text-align: center !important;
    font-size: 26px !important;
    margin-bottom: 25px !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.solution-section {
    background-color: #2f3136 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.solution-section h3 {
    color: #4da6ff !important;
    font-size: 18px !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
}

.solution-section h3 i {
    margin-right: 10px !important;
    color: #7289da !important;
}

.solution-section p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #b9bbbe !important;
}

.solution-section ul {
    list-style-type: none !important;
    padding: 0 !important;
    margin-top: 15px !important;
}

.solution-section li {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #b9bbbe !important;
    position: relative !important;
    padding-left: 25px !important;
}

.solution-section li::before {
    content: "•" !important;
    color: #7289da !important;
    font-weight: bold !important;
    display: inline-block !important;
    width: 1em !important;
    margin-left: -1em !important;
    position: absolute !important;
    left: 0 !important;
}

.solution-section a {
    color: #4da6ff !important;
    text-decoration: none !important;
    border-bottom: 1px dashed #4da6ff !important;
    transition: color 0.3s !important;
}

.solution-section a:hover {
    color: #ffffff !important;
    border-bottom-style: solid !important;
}

.discord-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #7289da !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: bold !important;
    transition: background-color 0.3s, transform 0.3s !important;
    margin: 25px 35px !important;
}

.discord-button:hover {
    background-color: #677bc4 !important;
    transform: translateY(-2px) !important;
}

.discord-button img {
    width: 28px !important;
    height: 28px !important;
    margin-right: 12px !important;
}