@charset "UTF-8";

html,
html.dark {
	--tp-red: #ef4444;
	--tp-orange: #f97316;
	--tp-amber: #f59e0b;
	--tp-lime: #84cc16;
	--tp-green: #22c55e;
	--tp-emerald: #10b981;
	--tp-teal: #14b8a6;
	--tp-cyan: #06b6d4;
	--tp-sky: #0ea5e9;
	--tp-blue: #3b82f6;
	--tp-indigo: #6366f1;
	--tp-violet: #8b5cf6;
	--tp-purple: #a855f7;
	--tp-fuchsia: #d946ef;
	--tp-pink: #ec4899;
	--tp-rose: #f43f5e;
	--tp-red-100: #fee2e2;
	--tp-orange-100: #fef3c7;
	--tp-amber-100: #fefce8;
	--tp-lime-100: #ecfccb;
	--tp-green-100: #dcfce7;
	--tp-emerald-100: #d1fae5;
	--tp-teal-100: #ccfbf1;
	--tp-cyan-100: #cffafe;
	--tp-sky-100: #e0f2fe;
	--tp-indigo-100: #e0e7ff;
	--tp-violet-100: #ede9fe;
	--tp-purple-100: #f3e8ff;
	--tp-fuchsia-100: #fae8ff;
	--tp-pink-100: #fce7f3;
	--tp-rose-100: #ffe4e6
}

:root {
  --bg: #280043;
  --text: #151515;
  --yellow: #EDB74D;
  --red: #EB6666;
  --green: #6FB18A;
}


body,
p {
	margin: 0
}


a,
body {
	color: var(--tp-500);
	background-color: #000000;
}


@font-face {
	font-family: GILROY;
	src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-300.TTF) format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: GILROY;
	src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-400.TTF) format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: GILROY;
	src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-500.TTF) format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: GILROY;
	src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-600.TTF) format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: GILROY;
	src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-700.TTF) format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: GILROY;
	src: url(https://cdn.fsksoft.com/fonts/gilroy/GILROY-800.TTF) format("truetype");
	font-weight: 800;
	font-style: normal;
	font-display: swap
}

html {
	--tp-50: #f9fafb;
	--tp-100: #f3f4f6;
	--tp-200: #e5e7eb;
	--tp-300: #d1d5db;
	--tp-400: #9ca3af;
	--tp-500: #3a3a41;
	--tp-600: #303036;
	--tp-700: #27272b;
	--tp-800: #1d1d20;
	--tp-900: #18181b;
	--tp-blue-100: #dbeafe;
	--fsk-900: #f9fafb;
}

html.dark {
	--tp-50: #18181b;
	--tp-100: #1d1d20;
	--tp-200: #27272b;
	--tp-300: #303036;
	--tp-400: #3a3a41;
	--tp-500: #9ca3af;
	--tp-600: #d1d5db;
	--tp-700: #e5e7eb;
	--tp-800: #f3f4f6;
	--tp-900: #f9fafb;
	--tp-blue-100: #d7e8ff;
	--fsk-900: #f9fafb;
}

body {
	font-family: GILROY, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	FONT-WEIGHT: 500;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

* {
	--tp-site-color: rgba(59, 130, 246, 1);
	--tp-blue-gradient: linear-gradient(45deg, rgba(59, 130, 246, 1) 0, rgba(59, 192, 246, 1) 100%);
	font-family: GILROY
}

a {
	text-decoration: none
}

.justify-content-center {
	justify-content: center !important
}

.text-center {
	display: flex;
	justify-content: center
}

.hidden {
	display: none !important
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto
}

@media(min-width:640px) {
	.container {
		max-width: 620px;
	}
}

@media(min-width:768px) {
	.container {
		max-width: 720px
	}
}

@media(min-width:1024px) {
	.container {
		max-width: 968px
	}
}

@media(min-width:1280px) {
	.container {
		max-width: 1140px
	}
}

@media(min-width:1536px) {
	.container {
		max-width: 1480px
	}
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	padding-right: calc(1.5rem * .5);
	padding-left: calc(1.5rem * .5)
}

.grid-item {
	background-color: #ccc;
	padding: 10px;
	text-align: center
}

.col-span-1 {
	grid-column: span 1 / span 1
}

.col-span-2 {
	grid-column: span 2 / span 2
}

.col-span-3 {
	grid-column: span 3 / span 3
}

.col-span-4 {
	grid-column: span 4 / span 4
}

.col-span-5 {
	grid-column: span 5 / span 5
}

.col-span-6 {
	grid-column: span 6 / span 6
}

.col-span-7 {
	grid-column: span 7 / span 7
}

.col-span-8 {
	grid-column: span 8 / span 8
}

.col-span-9 {
	grid-column: span 9 / span 9
}

.col-span-10 {
	grid-column: span 10 / span 10
}

.col-span-11 {
	grid-column: span 11 / span 11
}

.col-span-12 {
	grid-column: span 12 / span 12
}

@media only screen and (max-width:640px) {
	.grid-container {
		grid-template-columns: repeat(6, 1fr)
	}

	.col-span-1,
	.col-span-2,
	.col-span-3,
	.col-span-4,
	.col-span-5,
	.col-span-6,
	.col-span-7,
	.col-span-8,
	.col-span-9,
	.col-span-10,
	.col-span-11,
	.col-span-12 {
		grid-column: span 6 / span 6
	}
}

@media only screen and (min-width:641px) and (max-width:768px) {
	.grid-container {
		grid-template-columns: repeat(8, 1fr)
	}

	.col-span-1,
	.col-span-2,
	.col-span-3,
	.col-span-4,
	.col-span-5,
	.col-span-6,
	.col-span-7,
	.col-span-8,
	.col-span-9,
	.col-span-10,
	.col-span-11,
	.col-span-12 {
		grid-column: span 8 / span 8
	}
}

@media only screen and (min-width:769px) and (max-width:1024px) {
	.grid-container {
		grid-template-columns: repeat(12, 1fr)
	}

	.col-span-1,
	.col-span-2,
	.col-span-3,
	.col-span-4,
	.col-span-5,
	.col-span-6,
	.col-span-7,
	.col-span-8,
	.col-span-9,
	.col-span-10,
	.col-span-11,
	.col-span-12 {
		grid-column: span 12 / span 12
	}
}

@media only screen and (min-width:1025px) and (max-width:1280px) {
	.grid-container {
		grid-template-columns: repeat(12, 1fr)
	}
}

@media only screen and (min-width:1281px) and (max-width:1536px) {
	.grid-container {
		grid-template-columns: repeat(12, 1fr)
	}
}

.container-fluid {
	padding-right: var(--bs-gutter-x, .65rem);
	padding-left: var(--bs-gutter-x, .65rem);
	padding-bottom: 60px
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	margin-top: 10px;
	flex-wrap: wrap
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y)
}

.col {
	flex: 1 0 0
}

.col-auto {
	flex: 0 0 auto;
	width: auto
}

.col-1 {
	flex: 0 0 auto;
	width: 8.33333333%
}

.col-2,
.col-3 {
	flex: 0 0 auto
}

.col-2 {
	width: 16.66666667%
}

.col-3 {
	width: 25%
}

.col-4,
.col-5 {
	flex: 0 0 auto
}

.col-4 {
	width: 33.33333333%
}

.col-5 {
	width: 41.66666667%
}

.col-6,
.col-7 {
	flex: 0 0 auto
}

.col-6 {
	width: 50%
}

.col-7 {
	width: 58.33333333%
}

.col-8,
.col-9 {
	flex: 0 0 auto
}

.col-8 {
	width: 66.66666667%
}

.col-9 {
	width: 75%
}

.col-10 {
	flex: 0 0 auto;
	width: 83.33333333%
}

.col-11 {
	flex: 0 0 auto;
	width: 91.66666667%
}

.col-12 {
	flex: 0 0 auto;
	width: 100%
}

.eldo-bg img{
    position: fixed;
    inset: 0;
    object-fit: cover;
    z-index: -1;
    filter: blur(100px);
    height: 100vh;
    width: 100%;
    opacity: 0.7;
}


.eldo-title {
    display: flex;
    text-align: center;
    width: 100%;
    justify-content: center;
    color: var(--tp-100);
}

.eldo-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    align-items: center;
}


.link-item-icon {
    display: flex;
    justify-content: space-between;
    transition: .14s ease;
    -webkit-backdrop-filter: blur(50px);
    background: #00000059;
    padding: 20px;
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

@media only screen and (min-width:992px) {
	.eldo-link-item {
	    display: flex;
	    flex-direction: column;
	    gap: 15px;
	    position: fixed;
	    width: 500px;
	    margin-top: 25px;
	}

	.eldo-img {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    margin-top: 60px;
	}

	.eldo-img img{
	    width: 120px;
	    height: 120px;
	    object-fit: cover;
	    border-radius: 30%;
	}
}

@media only screen and (max-width:992px) {
	.eldo-link-item {
	    display: flex;
	    flex-direction: column;
	    gap: 15px;
	    width: 100%;
	    margin-top: 30px;
	    margin-bottom: 50px;
	}
	.eldo-img {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    margin-top: 50px;
	    z-index: 1;
	    position: relative;
	}
	.eldo-img img{
	    width: 100px;
	    height: 100px;
	    object-fit: cover;
	    border-radius: 30%;
	}
}

.link-item-icon:hover{
	border-radius:15px;
	background: #0000007d;
}

.eldo-link-left {
    display: flex;
    color: white;
    align-items: center;
}

.eldo-link-icon {
    width: 40px;
}

.eldo-link-icon img{
	width: 25px;
	display: flex;
}

.eldo-link-title {
    text-transform: uppercase;
}

.eldo-link-share-icon {
    display: flex;
    font-size: 22px;
    align-items: center;
    color: var(--tp-50);
}

.eldo-link-icon i {
    font-size: 24px;
}

.eldo-link-icon .fa-twitch {
    color: #9146FF;
}

.eldo-link-icon .fa-instagram {
    background: -webkit-linear-gradient(#833AB4, #FD1D1D, #FCB045); /* Instagram gradyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eldo-link-icon .fa-discord {
    color: #7289DA;
}

.eldo-link-icon .fa-youtube {
    color: #FF0000;
}

.eldo-link-icon .fa-spotify {
    color: #1DB954;
}

.particle-animation{
    position: fixed;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.eldo-bg {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: relative;
}

.eldo-bg img {
    width: 100%;
    height: 100%;
}

.eldo-bg.loaded {
    opacity: 1;
}
