/* Triflux Gaming - Main Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #f5f5f5;
    --text-grey: #b5b5b5;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Navbar Styles */
.navbar.is-dark {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.navbar.is-scrolled {
    background-color: rgba(5, 5, 5, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-item:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Game Cards */
.game-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.game-image-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--text-grey);
}

.placeholder-content .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
}

.value-item {
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.value-item:hover {
    background-color: rgba(37, 99, 235, 0.15);
}

/* Team Section */
.team-member {
    padding: 2rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Contact Section */
.contact-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
}

.social-links a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility */
.has-background-black-ter {
    background-color: #0d0d0d !important;
}

/* Button Enhancements */
.button.is-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.5);
}

.button.is-outlined.is-light {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-outlined.is-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Tags */
.tag.is-dark {
    background-color: #2a2a2a;
}
