[data-theme=dark] {
    --bs-secondary-bg: #151515;
    --bs-secondary-bg-rgb: 21, 21, 21;
}

[data-bs-theme=dark] {
    --bs-body-bg: #181818;
    --bs-dark-bg-subtle: #0e0e0e;
}

body[data-theme=dark] {
    background-color: #292C31;
}

html,
body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

#app {
    flex: 1 0 auto;
}

main,
.flex-grow-1 {
    flex-grow: 1;
}

.bg-body-secondary {
    background-color: #060606 !important;
}

.dropdown-menu {
    --bs-dropdown-bg: #000000d4;
}

.table-dark {
    --bs-table-bg: #0e0e0e;
}

.table>:not(caption)>*>* {
    background-color: #181818;
}

.pagination {
    --bs-pagination-hover-bg: #040404;
    --bs-pagination-disabled-bg: #040404;
}
/* Başlangıçta hepsi açık */
.nav-item-btn {
  transition: all 0.4s ease;
}

/* Kapatıldığında gizlenecek */
.nav-item-btn.hidden {
  opacity: 0;
  transform: scale(0.8) translateX(-20px);
  pointer-events: none;
}

/* Navbar grubu içindeki tüm öğelere üst-alt padding */
.home-navbar-fix > .d-flex {
  padding-top: 5px;
  padding-bottom: 5px;
  gap: 1rem; /* yatay boşluk */
}

/* Butonlar hizalansın */
#header-buttons {
  align-items: center;
}

/* Sunucu durumu ortalansın */

/* Kullanıcı menüsüne dikey denge */
.navbar-nav {
  align-items: center;
}

#header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hamburger butonu diğer butonlarla aynı boyda olsun */
.hamburger-btn {
    width: 42.5px!important;
    height: 42.5px!important;
    min-width: 42.5px!important;
    padding: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #444;
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255,255,255,0.05);
}

/* Simgesi butona göre ortalı kalsın */
.hamburger-btn i {
    font-size: 18px;
	
}

/* Genel buton ayarları */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 110px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255,255,255,0.05);
}

/* Neon aura efekti */
.custom-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, currentColor 0%, transparent 50%);
    opacity: 0.15;
    animation: breathe 2.5s ease-in-out infinite;
    z-index: -1;
    filter: blur(8px);
}

/* Hover dalgalanma efekti */
.custom-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.5s ease;
    z-index: 0;
}

.custom-btn:hover::after {
    left: 100%;
}

/* Hover animasyon */
.custom-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
}
/* Buton gizlenme/çıkma animasyonu */
.custom-btn {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: left center;
}

.custom-btn.hidden {
  transform: scale(0.5) translateX(-40px) rotate(-15deg);
  opacity: 0;
  pointer-events: none;
}

/* Discord */
.discord-btn {
    background-color: #5865F2;
    color: #fff;
	 max-height:42.5px;
}
/* Destek */
.destek-btn {
    background-color: #e53935;
    color: #fff;
	max-height:42.5px;
}

/* Ar-Ge */
.arge-btn {
    background-color: #FFC107;
    color: #000;
}

/* Parlama animasyonu */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

  .home-navbar-fix {
    width: 100%;
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.top-navbar .server-status {
    position: static;
    left: auto;
    transform: none;
    background-color: #198754 !important; /* Bootstrap 'success' rengi */
}

.valoris-status {
    padding: 10px 18px;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid;
    border-radius: 8px;
    text-align: center;
    max-width: fit-content;
    text-transform: uppercase;
    color: white;
    position: relative;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    animation: pulseShadow 2.5s infinite ease-in-out;
}

.valoris-status.online {
    border-color: #00ff88;
    box-shadow: 0 0 12px #00ff88aa;
    animation: glowPulseGreen 2.5s infinite;
}

.valoris-status.offline {
    border-color: #e74c3c;
    box-shadow: 0 0 12px #e74c3c99;
    animation: glowPulseRed 2.5s infinite;
}

.status-icon {
    margin-right: 6px;
    font-size: 16px;
}

/* Animasyonlar */
@keyframes glowPulseGreen {
    0%   { box-shadow: 0 0 12px #00ff88aa; }
    50%  { box-shadow: 0 0 24px #00ff88; }
    100% { box-shadow: 0 0 12px #00ff88aa; }
}

@keyframes glowPulseRed {
    0%   { box-shadow: 0 0 12px #e74c3c99; }
    50%  { box-shadow: 0 0 24px #ff2d2d; }
    100% { box-shadow: 0 0 12px #e74c3c99; }
}

.content {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.home-hero-section {
    --home-header-height: max(97vh, 920px);
    --home-header-fade-height: calc(100vh * 0.0277778);
    --home-hero-bg-height: calc(var(--home-header-height) + var(--home-header-fade-height));
    position: relative;
    min-height: var(--home-hero-bg-height);
    overflow: hidden;
    isolation: isolate;
    background: #181818;
}

.home-hero-section::before,
.home-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0,
        rgba(0, 0, 0, 1) calc(100% - var(--home-header-fade-height)),
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0,
        rgba(0, 0, 0, 1) calc(100% - var(--home-header-fade-height)),
        rgba(0, 0, 0, 0) 100%
    );
}

.home-hero-section::before {
    z-index: 0;
    background-image: url('/storage/img/arkaplan.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
}

.home-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

.home-hero-section::after {
    z-index: 1;
    background-color: #10141aa6;
}

.home-header {
    position: relative;
    height: var(--home-header-height);
    min-height: var(--home-header-height) !important;
    overflow: hidden;
    background: transparent;
    z-index: 2;
}

.home-header::before {
    content: none;
}

.home-header::after {
    content: none;
}

.home-header > .container {
    position: relative;
    z-index: 1;
}

.home-header-fade {
    height: var(--home-header-fade-height);
    pointer-events: none;
    position: relative;
    z-index: 2;
}
.logoo {
  max-width: 425px;
  margin-top: 60px !important;
  margin-bottom: 0; /* prevent layout overlap */
  margin-right: 25px;
  position: relative;
  z-index: 999;
  -webkit-animation-name: logo;
  animation-name: logo;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  will-change: transform;
}

@-webkit-keyframes logo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 0;
    padding: 10px 0;
    overflow: visible;
    z-index: 99;
    height: auto;
    margin-right: 8px;
	
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    height: 240px; /* Set to desired fixed height based on button size */
    position: relative;
    z-index: 15;
    perspective: 1000px;
}
#copy-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: #1e1e1e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: opacity 0.4s ease;
  z-index: 1000;
}

#copy-toast.show {
  opacity: 1;
}

#corner-toast,
#corner-toast p {
  display: none !important;
}
.carousel-track {
    display: flex;
    /* Smooth slide with subtle fade */
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease-out;
    will-change: transform, opacity;
    height: 100%; /* Make sure it doesn't expand unexpectedly */
    position: relative;
    z-index: 15;
    transform-style: preserve-3d;
    overflow: visible;
    opacity: 1;
}

/* Individual button styling */
.transparent-button {
    flex: 0 0 auto;
    margin-top: 10px;
    width: 170px;
    margin-right: 50px;
    text-align: center;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    /* Subtle lift on hover */
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    transform-style: preserve-3d;
}
.transparent-button span {
    font-weight: bold;
    font-size: 17px;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Image inside button */
.transparent-button img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 190px;
}

/* Hover effect */
.transparent-button:hover {
    transform: translateY(-4px) scale(1.08);
}

.transparent-button.active {
    transform: translateY(-5px) scale(1.1);
}
.transparent-button img[alt="announcement"] {
    margin-left:30px;
}
.transparent-button img[alt="wiki"] {
    margin-top:30px;
}

/* Arrow buttons */
.arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.0);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0 10px;
    cursor: pointer;
         z-index: 9999;
}
.arrow img {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrow:hover img {
    transform: scale(1.15) rotate(5deg);
}

.arrow:active img {
    transform: scale(0.95);
}

.arrow.left {
    left: -80px;
	
}

.arrow.right {
    right: -50px;
}

.mobile-carousel-arrow {
    display: none;
}

/* Optional: Remove unused or problematic styles */

.navbar-brand img {
    max-height: 75px;
    max-width: 150px;
}

.navbar .nav-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.navbar .nav-item .nav-link {
    --bs-nav-link-color: var(--bs-body-color);
    text-transform: uppercase;
    font-weight: bold;
}

.navbar .nav-item .nav-link.active,
.navbar-socials .nav-link {
    color: var(--bs-primary);
}

.navbar .nav-item .dropdown-toggle::after {
    border-top: 0.3em solid var(--bs-primary);
}

.user-nav-link {
    display: flex;
    align-items: center;
}

.user-nav-link img {
    height: 24px;
}

/* IP kopyalama bildirimi */
.copy-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.copy-popup.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.copy-popup .card {
  max-width: 19.8rem;
  width: 80%;
  background: radial-gradient(
    ellipse at right top,
    #ff0000 0%,
    #151419 47%,
    #151419 100%
  );
  border-radius: 0.825rem;
  padding: 1.375rem;
  text-align: center;
  color: #fff;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
}

.copy-popup.show .card {
  animation: popup-bounce 0.6s ease forwards;
}

@keyframes popup-bounce {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.copy-popup .close {
  position: absolute;
  top: 0.825rem;
  right: 0.825rem;
  width: 1.375rem;
  cursor: pointer;
  color: #d9d9d9;
  opacity: 0;
  transform: rotate(-180deg);
}


.copy-popup .icon {
  width: 2.75rem;
  opacity: 0;
  transform: scale(0.8);
  color: #ff0000;
}

.copy-popup.show .close {
  animation: close-rotate 0.6s ease forwards 0.4s;
}

.copy-popup.show .icon {
  animation: icon-pop 0.6s ease forwards 0.3s, icon-pulse 1.6s ease-in-out infinite 1s;
}

@keyframes icon-pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes icon-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes close-rotate {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}

.copy-popup h3 {
  margin-top: 0.55rem;
  margin-bottom: 0.44rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.copy-popup p {
  color: #cccccc;
  font-size: 0.96rem;
}

.copy-popup .btn-second {
  background: #222127;
  color: #fff;
  border-radius: 0.275rem;
  padding: 0.44rem 1.375rem;
  display: inline-block;
  margin-top: 1.1rem;
  transition: background 0.3s ease;
}

.copy-popup .btn-second:hover {
  background: #ff0000;
  color: #111;
}

/* News posts */
.news-post {
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
    transition-delay: var(--delay, 0s);
    background-color: var(--bs-body-bg);
    color: #fff;
}

.news-post.animate {
    opacity: 0;
    transform: translateY(30px);
}

.news-post.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.news-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.news-post .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.news-post:hover .bg-image {
    transform: scale(1.05) rotate(.5deg);
    filter: brightness(1.1);
}

.news-post .overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    padding: 1rem;
    transform: translateY(65%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-post.show .overlay,
.news-post:hover .overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.news-post .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.news-post .title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-post .title a:hover {
    text-decoration: underline;
}

.news-post .excerpt {
    font-size: .9rem;
    margin-bottom: .5rem;
}

.news-post .date {
    font-size: .8rem;
    opacity: 0.85;
}

#news-section {
    --news-section-top-fade-height: calc(100vh * 0.0277778);
    animation: fadeIn 1s ease both;
    padding: calc(var(--news-section-top-fade-height) + 1.25rem) 0 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
}

#news-section > h2 {
    margin-top: 0;
    margin-bottom: 1.5rem !important;
}

#news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.home-news-section {
    --news-section-top-fade-height: calc(100vh * 0.0277778);
    position: relative;
    z-index: 3;
    background: #181818;
}

.home-news-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--news-section-top-fade-height) * -1);
    height: calc(var(--news-section-top-fade-height) + 4rem);
    background: linear-gradient(
        to bottom,
        rgba(24, 24, 24, 0) 0,
        rgba(24, 24, 24, 0.72) 52%,
        rgba(24, 24, 24, 0.94) 78%,
        #181818 100%
    );
    pointer-events: none;
    z-index: 0;
}

.home-news-section > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    #news-section .news-posts {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }

    #news-section .news-posts > [class*="col-"] {
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
    }
}

@media (max-width: 991.98px) {
    #news-section .news-posts {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    #news-section .news-posts > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }
}

/* Hero cover for news page */
.news-cover {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.news-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.news-cover h1 {
    position: relative;
    z-index: 1;
    font-weight: 700;
}

/* Snap scrolling between sections */
.segment-scroll {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 100vh;
    scroll-behavior: smooth;
}

.segment-scroll > .snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
}

/* Snap scrolling between sections */
.segment-scroll {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 100vh;
}

.segment-scroll > .snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
}

footer.footer {
    position: relative;
    margin-top: 2rem;
    clear: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideOutReverse {
  0% {
    transform: translateX(0);
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 255, 123, 0.4);
  }
  20% {
    transform: translateX(-10px) scale(0.98);
  }
  60% {
    transform: translateX(25px) scale(1.03);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-200%) scale(0.95);
    opacity: 0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
}

/* Generic animation for elements revealed on scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
	.custom-btn {
     display: none !important;
		}
.server-status {
  display: none !important;
}

       .navbar-nav.me-auto span {
        display: none !important;
    }
 .content {
        margin-bottom: 0 !important;
    }
	
    /* Tema butonunu tamamen gizle */
    .theme-selector,
    .navbar-nav li .theme-selector,
    .navbar-nav li button[title*="tema"],
    .navbar-nav li button[aria-label*="tema"] {
        display: none !important;
    }

    /* Giriş ve kayıt butonlarını yan yana hizala */
      #navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background-color: #1a1a1a; /* isteğe göre değiştir */
        z-index: 9999;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
      
        align-items: flex-start !important;
        gap: 0.5rem;
    }

   

  
	.navbar-nav {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0;
        flex: 1;
        text-align: center;
		
    }

    .navbar-nav .nav-link {
        padding: 0.2rem 0.2rem;
        font-size: 15px;
    }
	html, body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .home-header {
        min-height: 91vh !important;
		margin-right:-25px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
	.logoo {
        max-width: 250px;
         margin-left: 3px;
		margin-top: 50px;
        position: relative;
        z-index: 10;
    }

    .carousel-container {
        margin-top: 50px;
		margin-right:1vh;
        padding: 0 15px;
        max-width: 45%;
        height: auto;
    }

    .carousel-viewport {
        height: 200px;
    }

    .transparent-button {
        width: 165px;
        margin-right: 10px;
    }

    .transparent-button img {
        max-height: 500px;
    }

    .transparent-button span {
        font-size: 12px;
        letter-spacing: 0.3px;
    }
	.transparent-button img[alt="forum"] {
    margin-left:5px;
}
   .arrow {
        width: 40px;
        height: 60px;
        padding: 0;
        background: transparent;
        top: 50%;
        transform: translateY(-50%);
    }
    .arrow img {
         max-height: 50px;
         max-width: 30px;
         transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    }
.arrow.left {
    left: -50px;
	
}

.arrow.right {
    right: -40px;
}

.mobile-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
   
	    footer,
    .footer,
    #footer {
        display: none !important;
    }
}
@media (orientation: landscape) and (max-width: 1260px) {
.server-status {
 display: none !important;
}

	.custom-btn {
     display: none !important;
		}
    .home-header .row {
        display: block !important; /* Flex'i tamamen iptal eder */
    }
.arrow{
	
	top: 40%;
	
	
	}
    .logoo {
        display: block !important;
        width: 100% !important;
        max-width: 180px;
       margin-top: 50px;
margin-bottom: 10px;
margin-left: 48vh;
        text-align: center;
    }

    .carousel-container {
        display: block !important;
        width: 80% !important;
        max-width: 100%;
        margin: 0 auto 100px auto !important;
    }

    /* Diğer ilgili stiller */
    #navbar {
        all: unset !important;
    }

    .navbar-collapse {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1rem !important;
        width: auto !important;
    }

    .navbar-nav .nav-item {
        flex: none !important;
        text-align: left !important;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 16px !important;
    }

    .navbar-toggler {
        display: none !important;
    }
 .transparent-button {
        width: 120px;
        margin-right: 10px;
    }
    footer,
    .footer,
    #footer {
        display: block !important;
    }
	   body footer,
    body .footer,
    body #footer,
    html body footer,
    html body .footer,
    html body #footer {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (min-width: 768px) {
    .carousel-container {
        margin-left: auto;
        margin-right: auto;
        overflow: visible;
    }

    .carousel-viewport {
        overflow: visible;
        perspective: none;
    }

    .carousel-track {
        justify-content: center;
        transform: none !important;
        transition: none;
        will-change: auto;
        opacity: 1 !important;
    }

    .transparent-button:last-child {
        margin-right: 0;
    }
}

/* Floating pill navbar override (homepage) */
body:has(.home-navbar-fix) .topbar,
body:has(.home-navbar-fix) header > nav.navbar.navbar-expand-md.bg-dark-subtle {
    display: none !important;
}

.text-body.bg-dark[data-bs-theme="dark"] {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0;
    min-height: 0;
    position: relative;
    z-index: 100;
}

.home-navbar-fix {
    position: relative !important;
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.home-navbar-fix > .top-navbar {
    position: relative;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto !important;
    max-width: min(1500px, calc(100vw - 20px));
    padding: 12px 40px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    justify-content: normal !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    background-color: #00000070 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home-navbar-fix .home-navbar-side {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.home-navbar-fix .home-navbar-left {
    grid-column: 1;
    justify-self: start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.home-navbar-fix .home-navbar-right {
    grid-column: 3;
    justify-self: end;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.home-navbar-fix > .top-navbar > .server-status {
    position: static !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    grid-column: 2;
    justify-self: center;
    z-index: 2;
}

.home-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.home-navbar-fix .top-navbar,
.home-navbar-fix #navbar {
    background: #000000ad !important;
    box-shadow: none !important;
}

.home-navbar-fix .custom-btn,
.home-navbar-fix .hamburger-btn,
.home-navbar-fix .nav-item-btn,
.home-navbar-fix .btn {
    background-color: transparent !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.home-navbar-fix .custom-btn {
    min-width: 124px;
    padding-inline: 18px !important;
}

.home-navbar-fix .custom-btn::before,
.home-navbar-fix .custom-btn::after {
    opacity: 0 !important;
}

.home-navbar-fix .discord-btn:hover,
.home-navbar-fix .discord-btn:focus-visible {
    background-color: #5865F2 !important;
}

.home-navbar-fix .destek-btn:hover,
.home-navbar-fix .destek-btn:focus-visible {
    background-color: #e53935 !important;
}

.home-navbar-fix .sikayet-btn {
    color: #fff !important;
}

.home-navbar-fix .sikayet-btn:hover,
.home-navbar-fix .sikayet-btn:focus-visible {
    background-color: #8f8f8f !important;
    color: #fff !important;
}

.home-navbar-fix .arge-btn {
    color: #fff !important;
}

.home-navbar-fix .arge-btn:hover,
.home-navbar-fix .arge-btn:focus-visible {
    background-color: #FFC107 !important;
    color: #fff !important;
}

.home-navbar-fix .shop-btn {
    color: #fff !important;
}

.home-navbar-fix .map-btn {
    color: #fff !important;
}

.home-navbar-fix .map-btn:hover,
.home-navbar-fix .map-btn:focus-visible {
    background-color: #2f80ed !important;
    color: #fff !important;
}

.home-navbar-fix .shop-btn:hover,
.home-navbar-fix .shop-btn:focus-visible {
    background-color: #159100 !important;
    color: #fff !important;
}

.home-navbar-fix .custom-btn:hover,
.home-navbar-fix .hamburger-btn:hover,
.home-navbar-fix .nav-item-btn:hover,
.home-navbar-fix .btn:hover {
    border-radius: 50px !important;
}

.home-mobile-nav-toggle,
.home-mobile-nav-menu {
    display: none;
}

@media (max-width: 768px) {
    .home-hero-section::before {
        background-size: auto var(--home-hero-bg-height);
        background-position: center center;
    }

    .home-hero-video {
        object-position: center center;
    }

    .home-navbar-fix > .top-navbar {
        top: 14px;
        width: min(340px, calc(100vw - 24px)) !important;
        padding: 8px 12px !important;
        display: flex !important;
        justify-content: center !important;
        gap: 0 !important;
        border-radius: 24px !important;
    }

    .home-navbar-fix .home-navbar-side,
    .home-navbar-fix > .top-navbar > .server-status {
        display: none !important;
    }

    .home-mobile-nav-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: transparent;
        border: 0;
        border-radius: 18px;
    }

    .home-mobile-nav-menu {
        position: absolute;
        top: 72px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9998;
        width: min(340px, calc(100vw - 24px));
        padding: 10px;
        background: #000000d9;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .home-mobile-nav-menu.show {
        display: block;
    }

    .home-mobile-nav-panel {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .home-mobile-nav-menu .custom-btn {
        width: 100%;
        min-width: 0;
        display: flex !important;
        justify-content: flex-start;
        padding: 11px 14px !important;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        box-shadow: none !important;
    }

    .home-mobile-nav-menu .custom-btn:hover,
    .home-mobile-nav-menu .custom-btn:focus-visible {
        background: rgba(255, 255, 255, 0.11) !important;
        transform: none;
    }
}

/* Force homepage logo offset */
.home-header .logoo {
    margin-top: 60px !important;
}

/* Shop pricing/comparison matrix */
.shop-matrix-page .shop-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    justify-items: center;
}

.shop-matrix-scroll {
    overflow-x: auto;
    overflow-y: hidden;
}

.shop-matrix-inner {
    width: 100%;
    min-width: 0;
}

.shop-matrix-head {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    align-items: stretch;
    justify-items: center;
}

.shop-matrix-page .shop-package-card {
    width: min(100%, 280px);
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.shop-matrix-head .shop-package-card {
    width: min(100%, 260px);
}

.shop-matrix-page .shop-package-image img {
    max-height: 130px;
    object-fit: contain;
    width: 100%;
    padding: 12px;
}

.shop-matrix-page .shop-package-card .card-subtitle del {
    color: #c1c1c1;
    margin-right: 6px;
}

.shop-matrix-page .shop-comparison-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    color: #e8e8e8;
}

.shop-comparison-table thead th {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.shop-comparison-table tbody th,
.shop-comparison-table tbody td {
    border-color: rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.shop-comparison-table tbody th {
    min-width: 220px;
    color: #c7d6f3;
}

.shop-comparison-table tbody td {
    text-align: center;
    word-break: break-word;
}

.shop-comparison-table thead th:first-child,
.shop-comparison-table tbody th {
    width: 220px;
    min-width: 220px;
}

.shop-feature-yes {
    color: #22c55e;
    font-weight: 700;
}

.shop-feature-no {
    color: #ef4444;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .shop-comparison-table {
        min-width: 760px;
    }
}

@media (max-width: 991.98px) {
    .shop-matrix-page .shop-package-grid,
    .shop-matrix-head {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .shop-comparison-table {
        min-width: 680px;
    }
}

@media (max-width: 575.98px) {
    .shop-matrix-page .shop-package-grid,
    .shop-matrix-head {
        grid-template-columns: 1fr;
    }

    .shop-matrix-page .shop-package-card,
    .shop-matrix-head .shop-package-card {
        width: min(100%, 320px);
    }

    .shop-comparison-table {
        min-width: 620px;
    }
}
