﻿/* GDPR Compliant System Fonts */
:root {
    --font-family-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Global Styles */
body, * {
    font-family: var(--font-family-system) !important;
}

code, kbd, pre, samp {
    font-family: var(--font-family-monospace) !important;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0366d6;
}

.container {
    width: 100%;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Particles.js */
#particles-js canvas {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease;
}

#particles-js {
    background-color: #000000 !important;
    z-index: -10;
    top: 0;
    left: 0;
    position: absolute;
}

.header-bg {
    background-color: #1e1e1e85 !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

/* Game compatibility status styles */
.perfect {
    color: blue;
}

.great {
    color: green;
}

.issues {
    color: orange;
}

.unplayable {
    color: red;
}

.unknown {
    color: grey;
}

/* Custom button styles */
.btnidcustom {
    background-color: #d9534f;
    border: none;
    color: #fff!important;
    cursor: pointer;
    font-size: 16px;
}

.btnidcustom:hover {
    background-color: #c82333;
}

/* Icon animation */
.tpIcon img {
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
    transition: transform 0.3s ease;
}

.tpIcon img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

/* Remove any conflicting text animations */
h1, h2, h3, h4, h5, h6 {
    position: static !important;
}

h1::before, h1::after,
h2::before, h2::after,
h3::before, h3::after {
    display: none !important;
}

/* Clean card styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Ensure navbar works properly */
.navbar.fixed-top {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.fixed-top.scrolled {
    background-color: rgba(25, 29, 45, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}