/********** Template CSS **********/
:root {
    --main-color: #000F12 !important;
    --dark: #001D23;
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --color-futbol:#3e8e41;
    --color-basket:#ff8c00;
    --color-futbol-shadow:0 0 5px rgba(62, 142, 65, 0.5);
    --color-basket-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    --hue: 210;
    --bg: hsl(var(--hue), 10%, 85%);
    --fg: hsl(var(--hue), 10%, 15%);
    --red: hsl(20, 85%, 40%);
    --white: hsl(0, 0%, 100%);
    --blue: hsl(100, 81%, 21%);
    --trans-dur: 0.3s;
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: var(--dark) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/head.webp) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* ############### */
/* OnLoad */
.pl {
 --dur: 3s;
 display: block;
 margin: auto;
 width: 14em;
 height: auto;
}
.pl__ball,
.pl__ball-shadow,
.pl__ball-texture,
.pl__stripe,
.pl__stripe-dot,
.pl__stripe-rotate {
 animation-duration: var(--dur);
 animation-timing-function: linear;
 animation-iteration-count: infinite;
}
.pl__ball {
 animation-name: ball;
}
.pl__ball-shadow {
 animation-name: ball-shadow;
}
.pl__ball-texture {
 animation-name: ball-texture;
}
.pl__stripe {
 animation-name: stripe;
}
.pl__stripe--1 {
 animation-name: stripe1;
}
.pl__stripe--2 {
 animation-name: stripe2;
}
.pl__stripe--3 {
 animation-name: stripe3;
}
.pl__stripe-dot {
 animation-name: stripe-dot;
}
.pl__stripe-dot-group:nth-child(1) .pl__stripe-dot:nth-child(2) {
 animation-delay: calc(var(--dur) * 0.2333333333);
}
.pl__stripe-dot-group:nth-child(1) .pl__stripe-dot:nth-child(3) {
 animation-delay: calc(var(--dur) * 0.3);
}
.pl__stripe-dot-group:nth-child(1) .pl__stripe-dot:nth-child(4) {
 animation-delay: calc(var(--dur) * 0.45);
}
.pl__stripe-dot-group:nth-child(1) .pl__stripe-dot:nth-child(5) {
 animation-delay: calc(var(--dur) * 0.6833333333);
}
.pl__stripe-dot-group:nth-child(1) .pl__stripe-dot:nth-child(6) {
 animation-delay: calc(var(--dur) * 0.7083333333);
}
.pl__stripe-dot-group:nth-child(1) .pl__stripe-dot:nth-child(7) {
 animation-delay: calc(var(--dur) * 0.8416666667);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(1) {
 animation-delay: calc(var(--dur) * 0.1083333333);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(2) {
 animation-delay: calc(var(--dur) * 0.3333333333);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(3) {
 animation-delay: calc(var(--dur) * 0.425);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(4) {
 animation-delay: calc(var(--dur) * 0.6);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(5) {
 animation-delay: calc(var(--dur) * 0.6583333333);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(6) {
 animation-delay: calc(var(--dur) * 0.8083333333);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(7) {
 animation-delay: calc(var(--dur) * 0.8416666667);
}
.pl__stripe-dot-group:nth-child(2) .pl__stripe-dot:nth-child(8) {
 animation-delay: calc(var(--dur) * 0.8916666667);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(1) {
 animation-delay: calc(var(--dur) * -0.0666666667);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(2) {
 animation-delay: calc(var(--dur) * 0.0583333333);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(3) {
 animation-delay: calc(var(--dur) * 0.2083333333);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(4) {
 animation-delay: calc(var(--dur) * 0.4);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(5) {
 animation-delay: calc(var(--dur) * 0.5166666667);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(6) {
 animation-delay: calc(var(--dur) * 0.625);
}
.pl__stripe-dot-group:nth-child(3) .pl__stripe-dot:nth-child(7) {
 animation-delay: calc(var(--dur) * 0.7666666667);
}
.pl__stripe-rotate {
 animation-name: stripe-rotate;
}

/* Animation */
@keyframes ball {
 from {
  transform: rotate(0) translate(0, -15.75px);
 }
 to {
  transform: rotate(1turn) translate(0, -15.75px);
 }
}
@keyframes ball-shadow {
 from {
  transform: rotate(0);
 }
 to {
  transform: rotate(-1turn);
 }
}
@keyframes ball-texture {
 from {
  transform: translate(-16px, 0);
 }
 to {
  transform: translate(48px, 0);
 }
}
@keyframes stripe-dot {
 from {
  r: 1.25px;
 }
 16.67%,
 to {
  r: 0;
 }
}
@keyframes stripe-rotate {
 from {
  transform: rotate(0);
 }
 to {
  transform: rotate(1turn);
 }
}
@keyframes stripe1 {
 from,
 to {
  stroke-dashoffset: -95.7745;
 }
 50% {
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  stroke-dashoffset: -75.702;
 }
}
@keyframes stripe2 {
 from,
 to {
  stroke-dashoffset: -80.1;
 }
 50% {
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  stroke-dashoffset: -53.4;
 }
}
@keyframes stripe3 {
 from,
 to {
  stroke-dashoffset: -72.765;
 }
 50% {
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  stroke-dashoffset: -48.51;
 }
}

/* ############### */
/* Navbar */
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}
/* Focus ve aktif durumlar için de aynı şekilde */
.navbar a:focus, .navbar a:active {
  background-color: rgba(51, 51, 51, 0.8) !important;
}
/* Menü Link Hover ve Aktif Durumu */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar-nav .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}
.navbar-nav .dropdown-item:hover {
    background-color: #444444;
    color: var(--primary);
}
.navbar-brand {
    margin-left: 20px;
}
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}
.navbar-nav .dropdown-menu .dropdown-info {
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #2f3436;
    display: block;
    font-size: 16px;
}
.dropdown-divider {
  border-top: 1px solid #ddd;
  margin: 10px 0;
  margin-left: 20px;
  margin-right: 20px;
}
/* Mobilde Navbar Düzenlemeleri */
@media (max-width: 934px) {


    .navbar .nav-item .dropdown-menu {
      background-color: rgba(51, 51, 51, 0.8) !important;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    /* Kullanıcı menüsünü mobilde düzeltme (aşağıya açılacak şekilde) */
    .navbar-nav .user-menu .dropdown-menu {
        background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
        position: relative;
        top: 0;
        transform: none;
        visibility: visible;
        opacity: 1;
        transition: none; /* Geçişi devre dışı bırak */
    }
}

/* Masaüstü İçin Menü Ayarları */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        background-color: rgba(51, 51, 51, 0.8) !important;
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    /* Kullanıcı menüsünün dropdown menüsünün masaüstü davranışları */
    .navbar-nav .user-menu .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        visibility: hidden;
        opacity: 0;
        min-width: 200px;
        transform: rotateX(-75deg);
        transition: opacity 0.3s, transform 0.3s ease-in-out;
    }

    .navbar-nav .user-menu:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: rotateX(0);
    }
}

/* Kullanıcı Menü - Profil Sekmesi */
.navbar-nav .user-menu {
    align-items: center;
}

.navbar-nav .user-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.navbar-nav .user-menu .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Hoverda açılırken hafif renk değişimi */
    border-radius: 5px;
}

.navbar-nav .user-menu .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.navbar-nav .user-name {
    color: #ffffff;
    font-weight: bold;
}

.navbar-nav .profile-dropdown-menu .logout-item {
    color: #dc3545;
    padding: 10px 15px;
    border-radius: 5px;
    border: 0.1px solid #dc3545;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    display: block;
}
.navbar-nav .profile-dropdown-menu .logout-item:hover {
    background-color: #dc3545; /* Red background on hover */
    color: #ffffff;
}

/* General Button Style */
/* General Button Style */
.navbar-nav .nav-item .btn {
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    border: 2px solid transparent;
    margin-top: 20px;
}

.navbar-nav .nav-item .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

/* Primary Button Style */
.navbar-nav .nav-item .btn-primary {
    background-color: #2d2d2d;
    border-color: #3e8e41;
}

.navbar-nav .nav-item .btn-primary:hover,
.navbar-nav .nav-item .btn-primary:focus {
    background-color: #3e8e41;
    border-color: #3e8e41;
    box-shadow: 0 0 5px rgba(62, 142, 65, 0.5);
}

/* Secondary Button Style */
.navbar-nav .nav-item .btn-secondary {
    background-color: #2d2d2d;
    border-color: #ff8c00;
}

.navbar-nav .nav-item .btn-secondary:hover,
.navbar-nav .nav-item .btn-secondary:focus {
    background-color: #ff8c00;
    border-color: #ff8c00;
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    color: #3e8e41;
}

/* ################ */
/* Home Page */
.ex-header {
	padding-top: 8rem;
	padding-bottom: 5rem;
	background-color: var(--main-color);
}

.ex-header .section-warning {
    margin: 20px;
    padding: 20px;
    background: #721c24;
    border-radius: 12px;
    color: #F6E04B; /* Metin rengi beyaz */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Gölge efekti */
}

.ex-header .section-info {
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #005B36, #009B2D);
    border-radius: 12px;
    color: #F6E04B; /* Metin rengi beyaz */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Gölge efekti */
}

.ex-header .odds-information h1 {
    color: var(--color-basket);
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.ex-header .odds-information h4 {
    color: var(--color-basket);
    margin: 0;
}

.ex-header .container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.ex-header .list-group {
    width: 48%; /* Her bir grup için genişlik */
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
}

.ex-header .odds-information .list-item {
    background-color: #2a2a2a;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ex-header .list-item:hover {
    background-color: #333;
    transform: scale(1.05);
}

.ex-header .odds-information .list-item h4 {
    margin: 0;
    color: #00c0ff;
    font-size: 1rem;
}

.ex-header .list-item ul {
    display: none;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.ex-header .list-item:hover ul {
    display: block;
}

.ex-header .odds-information .futbol {
    color: var(--color-futbol);
}

.ex-header .odds-information .basketbol {
    color: var(--color-basket);
}

.ex-header .list-item ul li {
    background-color: #444;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ex-header .list-item ul li:hover {
    background-color: #555;
}

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    .ex-header .container {
        flex-direction: column; /* Mobilde tek sütun olacak şekilde düzenle */
        align-items: center;
    }

    .ex-header .list-group {
        width: 100%; /* Her iki liste de tam genişlik alır */
        margin-bottom: 20px;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");

@-webkit-keyframes bg-scrolling-reverse {
  100% {
    background-position: 750px 750px;
  }
}

@-moz-keyframes bg-scrolling-reverse {
  100% {
    background-position: 750px 750px;
  }
}

@-o-keyframes bg-scrolling-reverse {
  100% {
    background-position: 750px 750px;
  }
}

@keyframes bg-scrolling-reverse {
  100% {
    background-position: 750px 750px;
  }
}

@-webkit-keyframes bg-scrolling {
  0% {
    background-position: 750px 750px;
  }
}

@-moz-keyframes bg-scrolling {
  0% {
    background-position: 750px 750px;
  }
}

@-o-keyframes bg-scrolling {
  0% {
    background-position: 750px 750px;
  }
}

@keyframes bg-scrolling {
  0% {
    background-position: 750px 750px;
  }
}

.ex-header .scrolling-image-container {
  font-family: "Source Sans Pro", sans-serif;
  min-height: fit-content;
  text-align: center;
  /* background: url("img/logo.webp") repeat 0 0; */
  -webkit-animation: bg-scrolling-reverse 12s infinite;
  -moz-animation: bg-scrolling-reverse 12s infinite;
  -o-animation: bg-scrolling-reverse 12s infinite;
  animation: bg-scrolling-reverse 12s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  padding-left: 150px; /* Sol taraftan 150px boşluk */
  padding-right: 150px; /* Sağ taraftan 150px boşluk */
  box-sizing: border-box; /* Padding'in genişlik hesaplamasına dahil edilmesi için */
}

.ex-header h1 {
  color: aliceblue;
  font-weight: bolder;
}

.ex-header #date {
  color: aliceblue;
  margin-bottom: 2rem;
}

.ex-header .match a {
  text-decoration: none;
  color: #37003c;
  height: 2.5rem;
  padding: 0.25rem;
  margin: 1rem;
  width: 90%;
  background-color: azure;
  border-radius: 1rem;
  display: flex;
  font-size: large;
}

.ex-header .match a:hover {
  background: linear-gradient(270deg, #ff2882, #963cff 45%);
  text-decoration: none;
  color: white;
  box-shadow: 0px 0px 25px white;
  border-color: rgb(183, 50, 255);
}

.ex-header .col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ex-header .home {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  gap: 12px;
}

.ex-header .visit {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  gap: 12px;
}

.ex-header .hashtag {
  margin-top: 2rem;
  padding-bottom: 2rem;
  color: aliceblue;
}

.ex-header .row {
  align-items: center;
}

.ex-header #main_title,
.ex-header #main_image {
  margin-top: 1rem;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    .ex-header .scrolling-image-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ex-header .match a {
        font-size: medium;
        margin: 0.5rem;
        padding: 0.5rem;
        width: 100%;
    }

    .ex-header .home, .ex-header .visit {
        margin-left: 30px;
        flex: 1 1 100%;
        justify-content: flex-start; /* Align to the left */
        padding-left: 0;
        padding-right: 0;
        gap: 8px;
        flex-direction: row; /* Make sure the items are in a row */
    }

    .ex-header .home img, .ex-header .visit img {
        max-width: 40px; /* Make sure the logo fits well */
        max-height: 40px;
        margin-right: 8px; /* Add some spacing between the logo and the text */
    }

    .ex-header h1 {
        font-size: 1.5rem;
    }

    .ex-header .hashtag {
        font-size: 1rem;
        padding-bottom: 1rem;
    }

    .ex-header #main_title,
    .ex-header #main_image {
        margin-top: 0.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .ex-header .scrolling-image-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ex-header .match a {
        font-size: small;
        margin: 0.5rem;
        padding: 0.25rem;
    }

    .ex-header .home, .ex-header .visit {
        margin-left: 30px;
        flex-direction: row; /* Ensure logo and text are next to each other */
        justify-content: flex-start; /* Align to the left */
        padding: 10px;
        gap: 6px;
    }

    .ex-header .home img, .ex-header .visit img {
        max-width: 30px; /* Further reduce logo size for smaller screens */
        max-height: 30px;
    }

    .ex-header h1 {
        font-size: 1.2rem;
    }

    .ex-header #date {
        margin-bottom: 1rem;
    }
}

/* ############### */
/* Login And Register Page */
.ex-LogReg {
  padding-top: 9rem;
  background-color: var(--main-color);
  text-align: center;
  min-height: 100vh;
}

.ex-LogReg h1,
.ex-LogReg p {
  color: #fff;
}

.ex-LogReg p {
  max-width: 24rem;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
}

.ex-LogReg .form-container {
  max-width: 26rem;
  margin-right: auto;
  margin-left: auto;
  padding: 2.25rem 1.25rem 1.25rem 1.25rem;
  border-radius: 0.5rem;
  background-color: var(--main-color);
}

.ex-LogReg .checkbox {
  text-align: left;
}

/* Checkbox container */
.ex-header .checkbox {
  text-align: left;
}

.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.125rem;
  border: 1px solid var(--light);
  border-radius: 1.5rem;
  background-color: var(--dark);
  color: #fff;
  font: 700 0.875rem/0 "Open Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  background-color: transparent;
  color: var(--light);
}
/* Form group styles */
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
  margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
  margin-top: 0.375rem;
}

/* Label styles */
.label-control {
  position: absolute;
  top: 0.87rem;
  left: 1.25rem;
  color: #555;
  opacity: 1;
  font: 400 0.875rem/1.375rem "Open Sans", sans-serif;
  cursor: text;
  transition: all 0.2s ease;
}

/* IE10+ fix for label positioning */
@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  .label-control {
    top: 0.9375rem;
  }
}

/* Label transformation when input is focused or has content */
.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
  top: 0.125rem;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Input and select field styles */
.form-control-input,
.form-control-select {
  display: block;
  width: 100%;
  padding-top: 1.0625rem;
  padding-bottom: 0.0625rem;
  padding-left: 1.25rem;
  border: 1px solid #c4d8dc;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #555;
  font: 400 0.875rem/1.875rem "Open Sans", sans-serif;
  transition: all 0.2s;
}

/* Select field styling */
.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3rem;
}

/* IE10+ fix for input and select field padding */
@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  .form-control-input {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
    line-height: 1.75rem;
  }

  .form-control-select {
    padding-top: 0.875rem;
    padding-bottom: 0.75rem;
    height: 3.125rem;
    line-height: 2.125rem;
  }
}
@supports (appearance: none) {
    .checkbox-wrapper-13 input[type=checkbox] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        appearance: none; /* Use the standard 'appearance' property */
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .checkbox-wrapper-13 input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .checkbox-wrapper-13 input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .checkbox-wrapper-13 input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    .checkbox-wrapper-13 input[type=checkbox]:disabled + label {
        cursor: not-allowed;
    }
    .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    .checkbox-wrapper-13 input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }
    .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        width: 21px;
    }
    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }
    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }
    .checkbox-wrapper-13 input[type=checkbox] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }
    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }
    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
}

.checkbox-wrapper-13 * {
    box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
    box-sizing: inherit;
}
/* ################ */
/* info Pages */
.ex-info {
	padding-top: 4.75rem;
	padding-bottom: 4rem;
	background-color: var(--main-color);
	color: white;
}
.ex-info h3 {
	margin-bottom: 1rem;
	color: white;
}
.ex-info p {
	color: white;
}
.ex-info .text-container {
	margin-bottom: 3.625rem;
}
.ex-info .text-container.last {
	margin-bottom: 0;
}
.ex-info .text-container.dark {
	padding: 1.625rem 1.5rem 0.75rem 2rem;
	background-color: var(--main-color);
}
.ex-info .image-container-large {
	margin-bottom: 4rem;
}
.ex-info .image-container-large img {
	border-radius: 0.25rem;
}
.ex-info .image-container-small img {
	border-radius: 0.25rem;
}
.ex-info .list-unstyled .fas {
	color: var(--color-futbol);
	font-size: 0.5rem;
	line-height: 1.625rem;
}
.ex-info .list-unstyled .media-body {
	margin-left: 0.625rem;
}
.ex-info .form-container {
	margin-top: 3rem;
}
.ex-info .btn-outline-reg {
	margin-top: 1.75rem;
}
/* ############# */
/* welcom page */
.ex-welcome {
  padding: 30px;
  padding-top: 8rem;
  padding-bottom: 8.125rem;
  background-color: var(--main-color);
  color: white;
}

.yetkisiz-erisim {
  background-color: #dc3545;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 10px auto;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  max-width: 1500px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.yetkisiz-erisim p {
  margin: 0;
}

.ex-welcome .section-info {
  margin: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #005b36, #009b2d);
  border-radius: 12px;
  color: #f6e04b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.match-title {
  background-color: #ff6600;
  color: white;
  border-radius: 2rem 5rem 2rem;
  padding: 10px 15px;
  margin: 0 auto;
  width: 50rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.match-title:hover {
  background-color: #e55a00;
}

/* 992px altındaki ekranlar için mobil uyum */
@media (max-width: 992px) {
  .match-title {
    width: 90%;
    padding: 8px 12px;
    font-size: 1.1rem;
  }
}

/* 576px altındaki ekranlar için ekstra küçük mobil uyum */
@media (max-width: 576px) {
  .match-title {
    width: 95%;
    padding: 6px 10px;
    font-size: 1rem;
  }
}

.welcome-animated-text {
  background: linear-gradient(
    to right,
    #00bfae,
    #1e88e5,
    #d32f2f,
    #00bfae,
    #1e88e5
  );
  background-size: 200% 200%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 5s ease infinite;
  line-height: 2;
  display: inline-block;
  text-align: center;
}
/* Tablo Stilleri */
.yaklasanmac-tablsou {
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.yaklasanmac-tablsou thead {
  background-color: #444;
  color: #ff9900;
}

.yaklasanmac-tablsou th,
.yaklasanmac-tablsou td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #555;
}

.yaklasanmac-tablsou tr:last-child td {
  border-bottom: none;
}

.yaklasanmac-tablsou tbody tr {
  transition: background-color 0.3s;
}

.yaklasanmac-tablsou tbody tr:hover {
  background-color: #666;
  cursor: pointer;
}

.text-info {
  color: #17a2b8;
}

.text-warning {
  color: #ffc107;
}

.text-danger {
  color: #dc3545;
}

.text-success {
  color: #28a745;
}

.welcome-card {
  border: 1px solid #333;
  background-color: #2c2c2c;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.welcome-card-body {
  flex: 1;
  position: relative;
  padding: 20px;
}

.welcome-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ff6600;
}

.welcome-card-text {
  font-size: 1rem;
  color: #fff;
}

.welcome-card-img-top {
  border: 1px solid #ff6600;
  width: 100%;
  object-fit: cover;
  padding: 10px;
}

.welcome-btn-analiz {
  background-color: #ff6600;
  border: 1px solid #ff6600;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1rem;
  bottom: 10px;
  transition: all 0.3s ease;
}

.welcome-btn-analiz:hover {
  background-color: #e65c00;
  border-color: #e65c00;
  color: #fff;
}

.welcome-text-orange {
  color: #ff6600;
}
.hidden {
    display: none;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
    z-index: 999; /* Uyarının altına gelecek */
}
/* General Styles */
.time-warning {
  background: #1c1c1c;
  color: #ffc107;
  border-radius: 10px;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000; /* Kaplamanın üstünde olacak şekilde */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: center; /* Merkez hizalama */
  max-width: 100%;
  width: 90%; /* Width adjusted for mobile */
}

.time-warning h2 {
  margin: 0 0 10px 0;
  color: #f0f0f0; /* Başlık rengi */
}

.time-warning .box {
  background: #2f3436; /* Kutu arka plan rengi */
  color: #ffeb3b; /* Kutu içindeki yazının rengi */
  border-radius: 15px; /* Yuvarlak köşeler */
  padding: 15px;
  margin: 0 0 20px 0; /* Kutunun altındaki boşluk */
}

.time-warning .buttons {
  display: flex;
  justify-content: flex-end; /* Sağ köşeye hizalama */
  gap: 10px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.time-warning .btn {
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 16px; /* Default font size for buttons */
}

.time-warning .dismiss {
  background-color: #555555;
  color: white;
}

.time-warning .dismiss:hover {
  background-color: #333333;
  color: white;
}

.time-warning .hide-permanently {
  background-color: #f44336;
  color: white;
}

.time-warning .hide-permanently:hover {
  background-color: #d32f2f;
  color: white;
}

/* Mobile-Friendly Adjustments */
@media screen and (max-width: 768px) {
  .time-warning {
      padding: 15px;
      width: 80%; /* Adjust width for smaller screens */
      top: 40%; /* Move it up a bit for mobile view */
  }

  .time-warning h2 {
      font-size: 20px; /* Smaller header on mobile */
  }

  .time-warning .box {
      padding: 10px;
  }

  .time-warning .btn {
      padding: 8px 16px; /* Smaller button size for mobile */
      font-size: 14px; /* Adjust button font size */
  }

  .time-warning .buttons {
      justify-content: center; /* Center buttons on mobile */
  }
}

/* Desktop Adjustments */
@media screen and (min-width: 769px) {
  .time-warning {
      padding: 20px;
      width: 400px; /* Fixed width for desktop */
      top: 50%;
  }

  .time-warning h2 {
      font-size: 24px; /* Larger header for desktop */
  }

  .time-warning .btn {
      padding: 12px 24px; /* Larger button size for desktop */
      font-size: 16px; /* Button font size for desktop */
  }
}

/* .anct_box için CSS güncellemeleri */
.anct_box {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: auto; /* Boyut içeriğe göre otomatik ayarlanacak */
    max-width: 700px; /* Maksimum genişlik 700px */
    min-width: 300px; /* Minimum genişlik 300px */
    height: auto; /* Yükseklik içeriğe göre otomatik ayarlanacak */
    position: fixed; /* Sabit konumlandırma */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Merkezde konumlandırma */
    z-index: 1000; /* Diğer öğelerin üstünde olacak şekilde */
    margin: 0; /* Margini sıfırlama */
}
.promo-message {
    background: #2f3436; /* Kutu arka plan rengi */
    border-radius: 15px; /* Yuvarlak köşeler */
    font-size: small;
    padding: 15px;
    margin: 0 0 20px 0; /* Kutunun altındaki boşluk */
}
.anct_box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px; /* Resim ve metin arasında boşluk */
}
.anct_box h3 {
    margin: 10px 0;
    color: #e74c3c;
}
.anct_box p {
    margin: 10px 0;
}
.anct_box .button-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px; /* Butonlar ile metin arasında boşluk */
}
.anct_box button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
}
.button-2 {
    background-color: #2ecc71; /* Yeşil */
}
.button-3 {
    background-color: #e74c3c; /* Kırmızı */
}
.button-2:hover {
    background-color: #27ae60;
}
.button-3:hover {
    background-color: #c0392b;
}
/* ############ */

/* Bookmaker List */
.ex-bookmaker {
  padding: 30px;
  padding-top: 8rem;
  padding-bottom: 8.125rem;
  background-color: var(--main-color);
  color: white;
}

.ex-bookmaker h2 {
  text-align: center;
  color: #fff; /* Başlık rengi beyaz */
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600; /* Başlık daha belirgin */
}
.ex-bookmaker p {
  text-align: center;
  color: #ccc; /* Açık gri metin */
  font-size: 18px;
  margin-bottom: 20px;
}
.bookmaker-container {
  max-width: 1200px; /* Maksimum genişlik */
  margin: 0 auto; /* Ortalanmış */
  padding: 0 100px; /* Sol ve sağdan 100px boşluk */
}
.bookmaker-list {
  display: flex;
  flex-wrap: wrap; /* Öğelerin satırlara sarmasını sağlar */
  justify-content: space-between; /* Öğeleri yatayda eşit şekilde dağıtır */
  gap: 15px; /* Öğeler arasına boşluk ekler */
}

.bookmaker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #444; /* Koyu renk kenarlık */
  border-radius: 8px;
  background-color: #1A2A31; /* Koyu gri arka plan */
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s; /* Hover efekti */
  width: calc(33.33% - 10px); /* 3 öğe bir satırda */
  text-align: center; /* Yazıyı ortalar */
}
.bookmaker-item a {
  text-decoration: none;
  color: inherit;
}
.bookmaker-item:hover {
  background-color: #2B3B47; /* Hover efekti ile daha açık ton */
  transform: translateY(-5px); /* Hoverda hafifçe yukarı hareket */
}
.bookmaker-logo {
  width: 50px;
  height: 25px;
  margin-right: 10px;
}
.bookmaker-item a {
  text-decoration: none; /* Alt çizili metni kaldırır */
}
.bookmaker-item span {
  font-size: 18px;
  color: #fff; /* Yazı rengi beyaz */
  font-weight: 500; /* Yazı daha belirgin */
}

/* Tablet ve mobil için uyarlamalar */
@media screen and (max-width: 768px) {
  .bookmaker-item {
      width: calc(50% - 10px); /* Ekran küçükse 2 öğe bir satırda */
  }
}
@media screen and (max-width: 480px) {
  .bookmaker-item {
      width: 100%; /* Ekran daha da küçükse her öğe tam genişlikte */
  }
}
/* ############## */
/* Tahmin Page */
.match-page-heading {
  text-align: center;           /* Metni ortalar */
  margin: 20px;               /* Üst ve alt boşluk */
  font-weight: bold;            /* Kalın yazı */
  text-decoration: underline;   /* Altını çizer */
  color: #f5f5dc;               /* Tenis rengi (beige) */
  font-size: 24px;              /* Yazı boyutu */
}
.match-page-info-text {
  text-align: center;           /* Metni ortalar */
  color: #ff6f6f;               /* Hafif uyarı rengi (kırmızımsı) */
  font-size: 14px;              /* Yazı boyutu */
  margin: 0 0 20px 0;           /* Üst boşluk 0, alt boşluk 20px */
}
.match-page .match-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}
.match-page {
  margin-bottom: 10px;
  padding: 15px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.match-page .match-header h2 {
  color: #ffcc00;
  border-bottom: 1px solid #ff8c00;
  padding-bottom: 5px;
  font-size: 1.4em;
}
.match-page .info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.match-page .info-item {
  flex: 1 1 160px;
  background-color: #2b2b2b;
  padding: 10px;
  border-radius: 6px;
  box-sizing: border-box;
}
.match-page .info-item label {
  margin-bottom: 4px;
  color: #ff8c00;
  font-weight: bold;
  font-size: 0.9em;
}
.match-page .info-value {
  font-size: 0.9em;
}
.match-page .info-item.status {
  color: white; /* Yazı rengi */
  text-align: center; /* Metni ortalar */
  padding: 3px; /* İç boşluk (yukarı-aşağı ve sağ-sol) */
  margin: 10px 75px 0; /* Üstten 20px, sağdan ve soldan 30px boşluk, alttan boşluk yok */
  border-radius: 5px; /* Köşe yuvarlama */
  display: inline-block; /* Yatayda uzunluk */
  width: calc(100% - 150px); /* Sağ ve soldan 30px boşluk bırakır */
  height: auto;
  box-sizing: border-box; /* Padding ve border genişliği içerir */
  font-weight: bold; /* Yazı kalınlığı */
  font-size: 14px; /* Yazı boyutu */
}
.match-page .status.kazandi {
  background-color: #34C759;
}
.match-page .status.kaybetti {
  background-color: #FF3737;
}
.match-page .status.sonuc-bekleniyor {
  background-color: #9e9e9e;
}
.match-page .match-comment {
  margin-top: 15px;
}
.match-page .match-comment h3 {
  color: #ffcc00;
  margin-bottom: 8px;
  font-size: 1.2em;
}
.match-page .match-comment p {
  background-color: #3a3a3a;
  padding: 10px;
  border-radius: 6px;
  line-height: 1.4;
  font-size: 0.9em;
}
.match-page .hidden {
  display: none;
}
.match-page .toggle-comment {
  color: #ffcc00;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9em;
  margin-top: 15px;
}
/* ############ */
/* Profile Page */
.profile-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 70vh;
  width: 100%;
  padding: 20px;
}
.profile-page .profile-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #1c1c1c;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.profile-page .profile-info {
  display: flex;
  gap: 20px;
}
.profile-page .profile-info h2 {
  margin: 0;
  color: #fff;
}
.profile-page .profile-info p,
.profile-page .profile-info ul {
  margin: 5px 0;
  color: #ccc;
}
.profile-page .profile-info ul {
  list-style-type: disc;
  padding-left: 20px;
}
.profile-page .user-status {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #ccc;
  background-color: #2c2c2c;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 10px;
}
.profile-page .user-status .vip {
  color: #FFD700; /* Altın rengi VIP için */
}
.profile-page .user-status .gold {
  color: #e65c00; /* Altın rengi VIP için */
}
.profile-page .user-status .days-left {
  margin-right: 15px;
}
.profile-page .input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-page .input-label {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 5px;
}
.profile-page .profile-input,
.profile-page .profile-select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.profile-page .profile-input:focus,
.profile-page .profile-select:focus {
  outline: none;
  border-color: #32CD32; /* Yeşil renk odaklanma için */
  box-shadow: 0 0 0 2px rgba(50, 205, 50, 0.2); /* Hafif yeşil gölge odaklanma için */
}
.profile-page .avatar-container {
  top: 20px;
  position: relative;
  width: 150px;
  height: 150px;
}
.profile-page .avatar {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.profile-page .avatar-edit {
  position: absolute;
  bottom: -36px;
  right: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-page .avatar-edit svg {
  color: #fff;
  width: 24px;
  height: 24px;
}
.profile-page .avatar-edit:hover svg {
  color: #32CD32; /* Hover için yeşil renk */
}
.profile-page .membership-info {
  display: flex;
  gap: 20px;
}
.profile-page .button-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.profile-page .profile-button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #32CD32; /* Koyu yeşil */
  color: #121212;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}
.profile-page .profile-button:hover {
  background-color: #28A745; /* Hover için daha koyu yeşil */
}
.profile-page .info-text {
  font-size: 12px;
  color: #ccc;
  max-width: 1100px;
}
.profile-page .info-text p {
  margin: 5px 0;
}

/* Genel Medya Sorguları */
@media (max-width: 768px) {
  .profile-page .profile-info {
      flex-direction: column;
      align-items: center;
  }

  .profile-page .avatar-container {
      width: 120px;
      height: 120px;
      margin-bottom: 20px; /* Avatarın altına boşluk ekledik */
  }

  .profile-page .membership-info {
      flex-direction: column;
  }

  .profile-page .profile-container {
      padding: 15px;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .profile-page .profile-info {
      gap: 15px;
  }

  .profile-page .avatar-container {
      width: 100px;
      height: 100px;
  }

  .profile-page .profile-info h2 {
      font-size: 20px;
  }

  .profile-page .profile-info p,
  .profile-page .profile-info ul {
      font-size: 14px;
  }

  .profile-page .membership-info {
      gap: 15px;
  }

  .profile-page .profile-container {
      padding: 10px;
      gap: 10px;
  }
}
/* ################ */
/* Password Prf */
.sifre-güncelleme {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px; /* Sayfa içi boşluk */
}
/* Formun kapsayıcısı */
.change-password-form {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 500px;
  text-align: center;
}
/* Başlık */
.change-password-form h2 {
  color: #ffffff;
  margin-bottom: 20px;
}
/* Form grubu */
.change-password-form .form-group {
  margin-bottom: 15px;
}
/* Etiket */
.change-password-form label {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  text-align: left;
}
/* Parola girişi */
.change-password-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  background-color: #2c2c2c;
  border-radius: 10px;
  font-size: 16px;
  color: #ffffff;
}
/* Parola bilgisi */
.change-password-form .password-info {
  color: #bbbbbb;
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
}
/* Güncelleme butonu */
.change-password-form .update-button {
  width: 100%;
  padding: 12px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}
/* Güncelleme butonunun hover durumu */
.change-password-form .update-button:hover {
  background-color: #45a049;
}
/* ################# */
/* Payment */
.payment-page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment-page .payment-container {
  background-color: #1e1e1e;
  padding: 30px;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
}
/* Başlık */
.payment-page .payment-container h1 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
}
/* Paket Bilgileri - Geliştirilmiş Stil */
.payment-page .package-info {
  background: linear-gradient(
    135deg,
    #2c3e50,
    #4ca1af
  ); /* Arka planda degrade renk */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Hafif gölge */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payment-page .package-info:hover {
  transform: translateY(-5px); /* Hover'da yukarı doğru hareket */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Hover'da daha belirgin gölge */
}
.payment-page .package-info h3 {
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase; /* Büyük harfler */
  letter-spacing: 1px; /* Harfler arası boşluk */
  border-bottom: 2px solid #66cc00; /* Başlık altına ince çizgi */
  padding-bottom: 10px;
}

.payment-page .package-info p {
  margin: 10px 0;
  font-size: 18px;
  color: #eee; /* Metin rengi */
}

.payment-page .package-info p span {
  font-weight: bold;
  color: #f1c40f; /* Vurgulu metin sarı renkte */
}

.payment-page .package-info .price {
  font-size: 18px;
  font-weight: bold;
  color: #66cc00; /* Fiyat yeşil renkte */
  margin-top: 15px;
  text-align: center;
}

/* Ödeme Yöntemleri */
.payment-page .payment-methods {
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 20px;
}

.payment-page .payment-methods h3 {
  margin-top: 0;
  color: #fff;
}

.payment-page .payment-methods .method {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.payment-page .payment-methods .payment-btn {
  background-color: #444;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.payment-page .payment-methods .payment-btn i {
  font-size: 24px;
  margin-right: 10px;
  color: #ff6347; /* İkon rengi */
}

.payment-page .payment-methods .payment-btn:hover {
  background-color: #3e8e15; /* Hover efekti ile yeşil renge dönüşüm */
}

.payment-page .payment-methods .payment-btn span {
  font-size: 18px;
}

/* EFT Banka Seçimi */
.payment-page .eft-bank-selection {
  display: none; /* Başlangıçta gizli */
  margin-top: 20px;
  background-color: #2a2a2a;
  padding: 20px;
  border: 1px solid #444;
  border-radius: 10px;
  text-align: center;
}

.payment-page .eft-bank-selection h4 {
  color: #66cc00;
  margin-bottom: 20px;
  font-size: 22px;
}

/* Banka Logoları */
.payment-page .eft-bank-selection .bank-logos {
  display: flex;
  justify-content: center;
  align-items: center; /* Yatayda ortalama */
  gap: 30px; /* Logolar arasındaki boşluk */
  flex-wrap: wrap; /* Logoların taşmasını engellemek için */
}

.payment-page .eft-bank-selection .bank-logo {
  width: 120px; /* Logoların genişliği */
  height: auto; /* Yükseklik otomatik, orantılı büyüme */
  min-height: 52px; /* Min yükseklik */
  border-radius: 10px; /* Köşe yuvarlama */
  background-color: #2e6f6f; /* Açık koyu gri arka plan */
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  object-fit: contain; /* Logo boyutlandırmasını düzgün hale getirir */
}

.payment-page .eft-bank-selection .bank-logo:hover {
  transform: scale(1.1); /* Hover sırasında hafif büyütme */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Hover sırasında gölgeyi artır */
  background-color: #4ca1aa; /* Arka plan hover sırasında koyu gri */
}

/* EFT Detayları */
.payment-page .eft-details {
  display: none;
  margin-top: 20px;
  background-color: #2a2a2a;
  padding: 20px;
  border: 1px solid #444;
  border-radius: 10px;
}

.payment-page .eft-details h4 {
  color: #66cc00;
  font-size: 20px;
}

.payment-page .eft-details p {
  color: #ccc;
  margin-bottom: 10px;
}
