/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Roboto+Flex:opsz,wght@8..144,400;8..144,600;8..144,700;8..144,800&display=swap');


body {
    /*  */
    font-family: 'Roboto Flex', 'Poppins', sans-serif;
    background-color: #111827; /* bg-gray-900 */
    color: #f9fafb; /* text-white */
}

html {
    /*  */
    scroll-behavior: smooth;
}

/* Swiper Slider */
.swiper-button-next,
.swiper-button-prev {
    color: #06b6d4; /* Tailwind'in cyan-500 rengi */
}

/* Game Support Page Css */
input[type="file"]::file-selector-button {
    background-color: #2dd4bf; /* Tailwind'in teal-400 rengi */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem; /* rounded-md */
    cursor: pointer;
    transition: background-color 0.2s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #14b8a6; /* Tailwind'in teal-500 rengi */
}
