/* FireGameLink - Gaming Pro Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gaming Color Palette */
    --primary-fire: #ff4757;
    --primary-electric: #3742fa;
    --primary-neon: #00d2d3;
    --primary-gold: #ffa502;
    --primary-purple: #5f27cd;

    /* Dark Gaming Theme */
    --bg-dark: #0c0c0c;
    --bg-card: #1a1a1a;
    --bg-hover: #2d2d2d;
    --bg-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-accent: #ff4757;

    /* Gaming Effects */
    --glow-fire: 0 0 20px rgba(255, 71, 87, 0.5);
    --glow-electric: 0 0 20px rgba(55, 66, 250, 0.5);
    --glow-neon: 0 0 20px rgba(0, 210, 211, 0.5);

    /* Fonts */
    --font-gaming: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Import Gaming Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Gaming Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(55, 66, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 210, 211, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.postionFixed {
    width: 100%;
    min-height: 60px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

.de_iv_adv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    /* background-color: #F8F8F8; */
    margin: 10px 0 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header-pro {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 71, 87, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo-pro a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-gaming);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo-pro img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: var(--glow-fire);
}

.logo-pro a:hover {
    color: var(--primary-fire);
    text-shadow: var(--glow-fire);
}

/* Search Container */
.search-container-pro {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-form-pro {
    position: relative;
    display: flex;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form-pro:focus-within {
    border-color: var(--primary-fire);
    box-shadow: var(--glow-fire);
}

.search-input-pro {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-input-pro::placeholder {
    color: var(--text-secondary);
}

.search-btn-pro {
    padding: 12px 20px;
    background: linear-gradient(45deg, var(--primary-fire), var(--primary-electric));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn-pro:hover {
    background: linear-gradient(45deg, var(--primary-electric), var(--primary-fire));
    box-shadow: var(--glow-electric);
}

/* Navigation */
.nav-pro {
    position: relative;
}

.dropdown-menu-pro {
    display: flex;
    list-style: none;
    gap: 1rem;
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.dropdown-menu-pro li a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-menu-pro li a:hover {
    color: var(--primary-fire);
    background: rgba(255, 71, 87, 0.1);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}

/* Gaming Button Styles */
.btn-pro {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-pro {
    background: linear-gradient(45deg, var(--primary-fire), var(--primary-electric));
    color: white;
}

.btn-primary-pro:hover {
    background: linear-gradient(45deg, var(--primary-electric), var(--primary-fire));
    box-shadow: var(--glow-fire);
    transform: translateY(-2px);
}

.btn-secondary-pro {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.btn-secondary-pro:hover {
    background: var(--primary-fire);
    color: white;
    box-shadow: var(--glow-fire);
}

/* Gaming Card Styles */
.card-pro {
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 71, 87, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-fire), var(--primary-electric), var(--primary-neon));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
    border-color: var(--primary-fire);
}

.card-pro:hover::before {
    opacity: 1;
}

/* Footer Styles */
.footer-pro {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 71, 87, 0.2);
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-gaming);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-fire);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-description-pro {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links-section h3 {
    color: var(--primary-fire);
    margin-bottom: 1rem;
    font-family: var(--font-gaming);
}

.footer-links-pro {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-pro a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-pro a:hover {
    color: var(--primary-fire);
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.footer-bottom-pro {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 71, 87, 0.2);
    color: var(--text-secondary);
}

/* Back to Top Button */
.back-to-top-pro {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-fire), var(--primary-electric));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top-pro.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-pro:hover {
    background: linear-gradient(45deg, var(--primary-electric), var(--primary-fire));
    box-shadow: var(--glow-fire);
    transform: translateY(-3px);
}

/* Gaming Animations */
@keyframes fireGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 71, 87, 0.8);
    }
}

@keyframes electricPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(55, 66, 250, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(55, 66, 250, 0.8);
    }
}

@keyframes neonFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.fire-glow {
    animation: fireGlow 2s ease-in-out infinite;
}

.electric-pulse {
    animation: electricPulse 2s ease-in-out infinite;
}

.neon-flicker {
    animation: neonFlicker 1.5s ease-in-out infinite;
}

/* Loading Spinner */
.loading-spinner-pro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-spinner-pro.active {
    opacity: 1;
    visibility: visible;
}

.spinner-pro {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 71, 87, 0.3);
    border-top: 3px solid var(--primary-fire);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content-pro {
        flex-direction: column;
        gap: 1rem;
    }

    .search-container-pro {
        order: 2;
        max-width: 100%;
    }

    .nav-pro {
        order: 3;
    }

    .dropdown-menu-pro {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}