/*
Theme Name: GameResearch Theme
Description: A premium, dark-mode focused gaming theme utilizing Tailwind CSS for beautiful aesthetics and micro-animations.
Author: AI Assistant
Version: 1.6.2
*/

/* Custom global styles to complement Tailwind CSS */

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark .glass {
    background: rgba(20, 25, 35, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.dark .glass-card {
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(to right, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-hover {
    background-size: 200% auto;
    transition: background-position 0.5s ease;
}
.bg-gradient-hover:hover {
    background-position: right center;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Score Circle Ring */
.score-ring {
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(var(--tw-ring-color) var(--score-deg), rgba(255,255,255,0.1) 0deg);
}
.score-ring::before {
    content: "";
    position: absolute;
    inset: 4px;
    background-color: #1e232d;
    border-radius: 50%;
}
.score-value {
    position: relative;
    z-index: 10;
}
