    @import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;900&display=swap');

    @font-face {
        font-family: 'Minecraft';
        src: url('assets/fonts/Minecraft.woff2') format('woff2'),
            url('assets/fonts/Minecraft.woff') format('woff');
    }

    * {
        font-family: Mulish;
        font-size: 1.02rem;
    }

    :root {
        --color1: #000000;
        --color2: #db1f57;
        --color3: #0a3bff;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .page-container {
        flex: 1;
    }

    .navbar-mw {
        background: var(--color1);
        box-shadow: 0 5px 8px -5px rgba(0, 0, 0, 0.3), 0 5px 30px -5px rgba(0, 0, 0, 0.5);
    }

    .navbar-light .navbar-nav .active>.nav-link,
    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link.show,
    .navbar-light .navbar-nav .show>.nav-link,
    .nav-link:focus {
        color: #fff !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: .2rem .75rem;
        color: #fff;
        position: relative;
        transition: .3s all;
        font-weight: 500;
        border-radius: 30px;
        font-size: 18px;
        margin: 0px 15px;
        text-shadow: 1px 1px 4px #000000;
        font-family: 'Mulish', cursive;
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #fff;
        background-color: black;

    }

    .logo-area {
        padding-left: 3.25rem;
        padding-right: 3.25rem;
        height: 250px;
        vertical-align: center;
    }

    .logo-area .d-flex {
        height: 100%;
    }

    .bd-highlight .btn {
        transition: .3s;
        width: 213.147px;
        text-align: center;
    }

    .logo-area .btn:hover {
        transform: scale(1.1);
        border: 1.5px solid black;
    }

    .logo-area .btn {
        transition: .3s all
    }

    .logo-area .desc b {
        color: var(--color2);
    }

    .logo-area .desc {
        display: block;
        text-shadow: 1px 1px 5px black;
        color: #fff;
        font-weight: bolder;
        padding: 8px 2.5rem;
        margin-bottom: 8px;
        min-height: 45px;
        text-align: center;
    }

    .logo-area .btn {
        width: 100%;
    }

    .logo-img:hover {
        transform: scale(1.1);
    }

    .logo-img {
        transition: .3s all;
        max-height: 180px;
    }

    @media only screen and (max-width: 768px) {
        .logo-img {
            width: 100%;
        }
    }

    .logo-bg {
        background-size: cover;
        background-position: center;
    }

    .card {
        border: 0px;
        background-color: #fff;
        box-shadow: 1px 3px 8px rgba(49, 49, 49, .1);
        border-radius: .75rem;
    }

    .card-header {
        color: #fff;
        font-weight: normal;
        border-bottom: 1px solid var(--color1);
        background-color: var(--color1);
        text-shadow: 1px 1px 4px #000000;
        font-family: 'Abel', cursive;
        font-size: 18px;
        border-top-right-radius: .75rem !important;
        border-top-left-radius: .75rem !important;
    }

    .btn-theme {
        color: #fff;
        background-color: var(--color1);
        border-color: var(--color1);
    }

    .btn-theme:hover {
        color: #fff;
        background-color: var(--color3);
        border-color: var(--color3);
    }

    .haber-card:hover {
        transform: translateY(5px);
    }

    .card-img-top {
        border-radius: 0px;
    }

    .haber-card {
        transition: .3s;
        margin-bottom: 42px;
    }

    .haber-card .next {
        position: absolute;
        bottom: -20px;
        right: -20px;
        border-radius: 15px;
    }

    .haber-card .bilgi {
        position: absolute;
        bottom: -20px;
        right: 100px;
    }

    .haber-card .bilgi .btn {
        border-radius: 15px;
    }

    .haber-card .hovercover {
        max-height: 400px;
    }

    .footer {
        background: rgba(28, 28, 28, .9);
        display: block;
        position: relative;
        margin-top: 50px;
        color: #8c8c8c;
    }

    .footer h1 {
        text-shadow: unset !important;
        font-size: 1rem;
        color: #ffffff;
        font-weight: 600;
        margin-bottom: .75rem;
    }

    .footer .f-link {
        display: block;
        padding: 4px;
        padding-left: 0px;
        padding-right: 0px;
        color: #8c8c8c;
        transition: .3s;
    }

    .footer .f-link:hover {
        color: var(--color3);
        text-decoration: none;
    }

    @media (min-width: 1600px) {

        .container,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl {
            max-width: 1440px;
        }
    }

    a {
        color: var(--color1);
    }

    a:hover {
        color: var(--color3);
    }

    .duyuru {
        font-family: 'Museo Sans Cyrl 900';
        background-color: var(--color1);
        border-top: 3px solid var(--color2);
        border-bottom: 3px solid var(--color2);
        color: white;
        font-size: 17px;
        padding-top: 5px;
        transition: .5s ease;
        position: relative;
    }

    .duyuru>.container>marquee {
        line-height: 25px;
        transition: .2s ease;
    }

    .duyuru:hover .duyuru-overlay {
        opacity: 1;
        -webkit-marquee-speed: fast;
    }

    .duyuru-overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background-color: var(--color1);
    }

    .sidebar .card .card-body {
        overflow-y: auto;
    }

    .sidebar .card .card-body::-webkit-scrollbar {
        height: 5px;
        border-radius: 30px;
        transform: translateY(-5px);
    }

    .sidebar .card .card-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 30px;
    }

    .sidebar .card .card-body::-webkit-scrollbar-thumb {
        background: var(--color1);
        border-radius: 30px;
    }

    .hovercover {
        overflow: hidden
    }

    .card-img-top {
        transition: all .3s;
        width: unset;
        max-width: 100%;
    }

    .hovercover {
        text-align: center
    }

    .card-img-top:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
    }

    .sidebar .card .card-body::-webkit-scrollbar-thumb:hover {
        background: var(--color2);
    }

    .carousel-item img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-item {
        height: 400px;
    }

    .img-responsive {
        max-width: 100%;
    }

    .btn-panel-list {
        transition: 300ms all;
        background: linear-gradient(to right, var(--color1) 50%, black 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        margin-bottom: 8px;
        color: #fff;
        border: 0px;
        border-color: var(--color1);
        display: block;
    }

    .btn-panel-list:hover {
        background-position: left bottom;
        color: #fff;
    }

    .user-side-img img {
        max-height: 50px;
        border-radius: 4px;
    }

    .ayarlarim .card .card-header {
        background: unset;
        text-align: left;
        border-bottom-width: 5px;
        border-radius: .75rem;
        transition: 1000ms all;
        background: linear-gradient(to right, var(--color1) 50%, black 50%);
        background-size: 200% 100%;
        background-position: right bottom;
    }

    .ayarlarim .card .card-header:hover {
        background-position: left bottom;
        color: #fff;
    }

    .ayarlarim .card {
        box-shadow: unset;
        margin-bottom: 30px;
    }

    .page-item.active .page-link {
        background: linear-gradient(to right, var(--color1) 50%, white 50%);
        background-size: 200% 100%;
        background-position: left bottom;
        border-color: var(--color1);
        border: 0px;
    }

    .page-link:focus {
        box-shadow: unset;
    }

    .page-link {
        color: var(--color1);
        transition: 600ms all;
        background: linear-gradient(to right, var(--color1) 50%, white 50%);
        background-size: 200% 100%;
        transition: 300ms all;
        background-position: right bottom;
        border: 0px;
    }

    .card img {
        max-width: 100%;
    }

    .page-link:hover {
        background-position: left bottom;
        color: #fff;
    }

    .dropdown-item.active,
    .dropdown-item:active {
        background-color: var(--color1);
    }

    .destek-header span {
        font-weight: bolder;
    }

    .destek-header .kategori {
        margin-right: 10px;
        padding: 5px 20px 5px 20px;
    }

    .odeme-card {
        margin-bottom: 8px;
        position: relative;
        transition: .3s all;
        padding: 8px 12px;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
        text-align: center;
        font-weight: bolder;
    }

    .odeme-card img {
        max-height: 125px;
    }

    .odeme-card:last-child {
        border-bottom: 0px;
    }

    .odeme-card:hover a {
        transform: translateX(5px);
    }

    .odeme-card a:hover {
        text-decoration: none;
    }

    .carousel-inner {
        background: #36434f;
    }

    .carousel-item img {
        opacity: 0.6;
    }

    a:hover {
        text-decoration: none;
    }

    .kat-title,
    .urun-title {
        font-family: 'Minecraft';
    }

    .table th {
        font-size: 1rem;
        padding: 3px .75rem;
        color: #656565
    }

    table thead tr th {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    @media (min-width: 1000px) {
        .modal-dialog {
            max-width: 720px;
            margin: 1.75rem auto;
        }
    }

    body {
                    background-size: cover !important;
            background-repeat: no-repeat !important;
            background-position: center;
            background-attachment: fixed;
            background-image: url('https://i.hizliresim.com/s3gneau.png');
            }

    .indirim {
        font-size: 14px;
        color: #c2010a;
        font-weight: 700;
        padding: 2px;
        border-radius: 3px;
        margin-right: 3px;
        vertical-align: super;
        text-decoration-color: #000;
        text-decoration-style: solid;
        background-color: transparent;
        background-image: -webkit-gradient(linear, 19.1% -7.9%, 81% 107.9%, color-stop(0, #fff), color-stop(.48, #fff), color-stop(.5, #000), color-stop(.52, #fff), color-stop(1, #fff));
        background-image: -webkit-repeating-linear-gradient(287deg, #fff 0%, #fff 48%, #000 50%, #fff 52%, #fff 100%);
        background-image: repeating-linear-gradient(163deg, #fff 0%, #fff 48%, #000 50%, #fff 52%, #fff 100%);
        background-image: -ms-repeating-linear-gradient(287deg, #fff 0%, #fff 48%, #000 50%, #fff 52%, #fff 100%)
    }

    .market-resim img {
        max-height: 120px;
    }

    .depo-resim img {
        max-height: 60px;
    }

