@import url('fonts.css');
*,
*::after,
*::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --titleFont: "Gotham XNarrow", sans-serif;
    --textFont: "Neu", sans-serif;
    --yellow: #FCCA19
}

body {
    padding: 0;
    margin: 0;
    line-height: 1.618;
    font-family: var(--textFont);
}

h1,
h2 {
    margin: 0;
    font-family: var(--titleFont);
    line-height: 1;
}

h1 {
    font-size: 3em;
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5em;
    color: var(--yellow)
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}

a {
    color: inherit;
    text-decoration: none;
}

.flex-area {
    display: flex;
    flex-direction: column;
}


/* Start */

body {
    background: #171C2C;
    color: #fff
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    z-index: -2;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000, transparent);
    z-index: -1;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
}


/* Header */

header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2em 0;
}

header nav ul {
    display: flex;
    flex-direction: row;
}

header nav ul li {
    display: inline-flex;
}

header nav ul li:not(:first-child) {
    margin-left: 1em
}

header nav ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--yellow);
    padding: .75em 2em;
    transition: all 200ms ease-in-out;
    border-radius: 6px;
}

header nav ul li a:hover {
    letter-spacing: 1px;
}

header nav ul li a.active {
    background: var(--yellow);
    color: #000
}

header nav ul li svg {
    width: 1em;
    margin-left: 1em
}

.pageskin {
    user-select: none;
    pointer-events: none;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -3;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: 100% 100%;
}

.home-promo {
    position: absolute;
    top: calc(50% - 200px);
    right: 0;
}

.home-promo img {
    border-radius: 6px;
}

.logo svg {
    width: 200px;
}

.logo-color {
    color: var(--yellow)
}


/* Content */

.content {
    position: relative;
}

.content p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin: 1em 0 0 0;
    max-width: 50%;
}

.login-site {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    padding: 1em 2em;
    font-size: 1.5em;
    margin-top: 1em;
    border-radius: 6px;
    margin: 2em auto
}

.login-site svg {
    width: 1em;
    margin-left: 1em;
}

.site-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1em;
}

.social-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em
}

.social-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 6px;
    transition: all 200ms linear;
    padding: 1em;
    position: relative;
}

.social-button.instagram {
    background: linear-gradient(135deg, rgba(195, 42, 163, 0.8), rgba(195, 42, 163, 0.8));
}

.social-button.twitter {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.8), rgba(29, 161, 242, 0.8));
}

.social-button.telegram {
    background: linear-gradient(135deg, rgba( 0, 136, 204, 0.8), rgba( 0, 136, 204, 0.8));
}

.social-button.tv {
    background: linear-gradient(135deg, #888, #888);
}

.social-button:hover {
    background-size: 200%;
}

.icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5em;
}

.social-button svg {
    width: 1.5em;
    height: 1.5em;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.quick-links a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 1px solid var(--yellow);
    border-radius: 6px;
    padding: 1em 2em;
    color: #fff
}

.quick-links a svg {
    width: 1em;
    margin-left: 1em
}


/* Footer */

footer {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2em 0;
}

footer span {
    font-size: .875em;
}

footer strong {
    font-weight: 400;
}

footer>div {
    margin-bottom: 1em
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1em;
    align-items: stretch;
    margin-bottom: 1em
}

.image-grid img {
    transition: all 200ms ease-in-out
}

.image-grid img:hover {
    transform: scale(1.1)
}

.image-grid.saglayici {
    grid-template-columns: repeat(11, 1fr);
}

.image-grid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.bg-svg {
    position: absolute;
    width: 400px;
    opacity: .05;
    pointer-events: none;
    color: var(--yellow);
    z-index: -1;
}

.bg-svg-1 {
    top: calc(50% - 200px);
    left: calc(50% - 200px);
}

.footer-licence {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
}