    @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: #20e85b;
        --color2: #00ff34;
        --color3: #00ff66;
    }

    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('EC');
            }

    .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;
    }

/* =========================================================
   EMIRYCRAFT - ANA TEMA
   ========================================================= */

/* GENEL */
html,
body {
    background: #10151c !important;
    color: #f5f7fa !important;
}

body {
    min-height: 100vh;
}

a {
    transition: all .20s ease !important;
}

a:hover {
    color: #20e85b !important;
    text-decoration: none !important;
}

::selection {
    background: #20e85b;
    color: #07120a;
}


/* =========================================================
   SAYFA GENİŞLİĞİ
   ========================================================= */

@media (min-width: 1200px) {
    .container {
        max-width: 1280px !important;
    }
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar,
header nav {
    background: rgba(15, 20, 27, .97) !important;
    border-bottom: 1px solid #20e85b !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .35) !important;
}

.navbar a,
.nav-link {
    color: #f5f7fa !important;
    font-weight: 500 !important;
}

.navbar a:hover,
.nav-link:hover {
    color: #20e85b !important;
    transform: translateY(-1px);
}


/* =========================================================
   KARTLAR / PANELLER
   ========================================================= */

.card,
.panel {
    background: #202731 !important;
    border: 1px solid rgba(32, 232, 91, .22) !important;
    border-radius: 12px !important;
    box-shadow: 0 7px 24px rgba(0, 0, 0, .25) !important;
    overflow: hidden !important;

    transition:
        transform .20s ease,
        border-color .20s ease,
        box-shadow .20s ease !important;
}

.card:hover,
.panel:hover {
    transform: translateY(-2px);

    border-color:
        rgba(32, 232, 91, .50) !important;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, .32),
        0 0 16px rgba(32, 232, 91, .08) !important;
}


/* KART BAŞLIĞI */

.card-header,
.panel-heading {
    background: #252e3a !important;
    color: #ffffff !important;

    border-bottom:
        1px solid rgba(32, 232, 91, .30) !important;

    padding: 16px 18px !important;

    font-weight: 600 !important;
}


/* KART İÇERİĞİ */

.card-body,
.panel-body {
    padding: 18px !important;
    color: #eef1f4 !important;
}


/* =========================================================
   BLOG / HABER KARTI
   ========================================================= */

.card {
    font-size: 16px !important;
}

/* Blog görseli */

.card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    object-fit: cover !important;

    border-radius: 8px !important;
}


/* Blog başlığı */

.card-title,
.card h1,
.card h2,
.card h3,
.card h4 {
    color: #ffffff !important;

    font-size: 25px !important;
    font-weight: 600 !important;

    line-height: 1.3 !important;

    margin-top: 14px !important;
    margin-bottom: 10px !important;
}


/* Blog yazısı */

.card-text,
.card p {
    color: #eef1f4 !important;

    font-size: 16px !important;
    line-height: 1.65 !important;
}


/* =========================================================
   BLOG ALT BUTONLARI
   \&quot;29 dakika önce\&quot; + \&quot;Devamı\&quot;
   ========================================================= */

/*
   MineWeb farklı class kullandığı için
   kartın altındaki bütün küçük butonları hedefliyoruz.
*/

.card a.btn,
.card button,
.card .btn,
.card-footer a,
.card-footer button,
.card-footer .btn {
    min-width: 125px !important;
    height: 42px !important;

    padding: 10px 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background:
        linear-gradient(
            135deg,
            #20e85b,
            #00c83c
        ) !important;

    color: #07120a !important;

    border: none !important;
    border-radius: 9px !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    box-shadow:
        0 4px 14px rgba(32, 232, 91, .25) !important;

    transition: all .20s ease !important;
}


/* Blog butonu hover */

.card a.btn:hover,
.card button:hover,
.card .btn:hover,
.card-footer a:hover,
.card-footer button:hover,
.card-footer .btn:hover {
    background:
        linear-gradient(
            135deg,
            #00ff66,
            #20e85b
        ) !important;

    color: #07120a !important;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(32, 232, 91, .35) !important;
}


/* Blog alt bölümü */

.card-footer {
    background: #202731 !important;

    border-top:
        1px solid rgba(32, 232, 91, .15) !important;

    padding: 14px 18px !important;
}


/* =========================================================
   DİĞER BUTONLAR
   ========================================================= */

.btn-primary,
.btn-success {
    background:
        linear-gradient(
            135deg,
            #20e85b,
            #00b936
        ) !important;

    color: #07120a !important;

    border: none !important;
    border-radius: 8px !important;

    font-weight: 700 !important;

    box-shadow:
        0 4px 14px rgba(32, 232, 91, .20) !important;
}

.btn-primary:hover,
.btn-success:hover {
    background:
        linear-gradient(
            135deg,
            #00ff66,
            #20e85b
        ) !important;

    color: #07120a !important;

    transform: translateY(-2px);

    box-shadow:
        0 6px 20px rgba(32, 232, 91, .32) !important;
}


/* =========================================================
   INPUT / FORM
   ========================================================= */

input,
textarea,
select,
.form-control {
    background: #161d26 !important;

    border:
        1px solid #35404e !important;

    color: #ffffff !important;

    border-radius: 8px !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    background: #161d26 !important;

    color: #ffffff !important;

    border-color: #20e85b !important;

    box-shadow:
        0 0 0 3px rgba(32, 232, 91, .12) !important;
}

input::placeholder,
textarea::placeholder {
    color: #7f8995 !important;
}


/* =========================================================
   BAŞLIKLAR
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff !important;
}


/* =========================================================
   YEŞİL VURGULAR
   ========================================================= */

.text-success {
    color: #20e85b !important;
}

.badge-success {
    background: #20e85b !important;
    color: #07120a !important;
}


/* =========================================================
   OYUNCU TABLOLARI
   ========================================================= */

.table {
    color: #f5f7fa !important;
}

.table thead th,
table thead th {
    background: #202731 !important;

    color: #9faab7 !important;

    border-color: #45515f !important;

    font-weight: 600 !important;
}

.table tbody td,
table tbody td {
    color: #f5f7fa !important;

    border-color:
        rgba(255, 255, 255, .16) !important;

    vertical-align: middle !important;
}


/* Oyuncu isimleri */

.table tbody td a,
table tbody td a,
.table tbody td span,
table tbody td span,
.table tbody td strong,
table tbody td strong {
    color: #ffffff !important;
}


/* Oyuncu hover */

.table tbody tr:hover td,
table tbody tr:hover td {
    background:
        rgba(32, 232, 91, .055) !important;
}

.table tbody tr:hover td a,
table tbody tr:hover td a,
.table tbody tr:hover td span,
table tbody tr:hover td span {
    color: #20e85b !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #0b1016 !important;

    color: #aeb6bf !important;

    border-top:
        1px solid rgba(32, 232, 91, .25) !important;
}

footer a {
    color: #dce1e6 !important;
}

footer a:hover {
    color: #20e85b !important;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #0c1117;
}

::-webkit-scrollbar-thumb {
    background: #20e85b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff66;
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 991px) {

    .container {
        width: 95% !important;
        max-width: 95% !important;
    }

    .card-title,
    .card h1,
    .card h2,
    .card h3 {
        font-size: 21px !important;
    }

    .card-body,
    .panel-body {
        padding: 15px !important;
    }

    .card a.btn,
    .card button,
    .card .btn {
        min-width: 110px !important;
        height: 40px !important;
        padding: 9px 15px !important;
    }
}