/* AxonGames - Corporate Dark & Yellow Theme */
:root {
    --axon-primary: #fbbf24;
    --axon-secondary: #f59e0b;
    --axon-accent: #fcd34d;
    --axon-dark: #1a1a1f;
    --axon-darker: #0f0f12;
    --axon-card-bg: rgba(26, 26, 31, 0.95);
    --axon-border: rgba(251, 191, 36, 0.2);
    --axon-text: #f5f5f5;
    --axon-text-dim: rgba(245, 245, 245, 0.7);
    --axon-glow: 0 0 15px rgba(251, 191, 36, 0.3);
    --axon-glow-strong: 0 0 25px rgba(251, 191, 36, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.axon-body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--axon-darker);
    color: var(--axon-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.axon-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(252, 211, 77, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.axon-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.axon-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 31, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--axon-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.axon-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.axon-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(251, 191, 36, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.axon-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.axon-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.axon-logo-link:hover {
    transform: scale(1.05);
}

.axon-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--axon-primary), var(--axon-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--axon-dark);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}


.axon-logo-text {
    display: flex;
    flex-direction: column;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.axon-logo-main {
    font-size: 28px;
    color: var(--axon-primary);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.axon-logo-sub {
    font-size: 14px;
    color: var(--axon-accent);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.axon-nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.axon-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--axon-text-dim);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.axon-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.15), transparent);
    transition: left 0.5s ease;
}

.axon-nav-link:hover::before {
    left: 100%;
}

.axon-nav-link:hover,
.axon-nav-link.active {
    color: var(--axon-primary);
    border-color: var(--axon-border);
    box-shadow: var(--axon-glow);
    background: rgba(251, 191, 36, 0.08);
}

.axon-nav-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.axon-nav-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.axon-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--axon-border);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.axon-mobile-toggle:hover {
    box-shadow: var(--axon-glow);
}

.axon-toggle-line {
    width: 25px;
    height: 2px;
    background: var(--axon-primary);
    transition: all 0.3s ease;
}

.axon-mobile-toggle.active .axon-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.axon-mobile-toggle.active .axon-toggle-line:nth-child(2) {
    opacity: 0;
}

.axon-mobile-toggle.active .axon-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Games Page Styles */
.axon-games-hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
}

.axon-games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.axon-games-hero-content {
    position: relative;
    z-index: 1;
}

.axon-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--axon-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.axon-hero-subtitle {
    font-size: 24px;
    color: var(--axon-text-dim);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.axon-games-section {
    padding: 60px 0;
    position: relative;
}

.axon-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.axon-game-card {
    background: var(--axon-card-bg);
    border: 2px solid var(--axon-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.axon-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.axon-game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--axon-glow-strong);
    border-color: var(--axon-primary);
}

.axon-game-card:hover::before {
    opacity: 1;
}

.axon-game-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.axon-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.axon-game-card:hover .axon-game-image {
    transform: scale(1.1);
}

.axon-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.axon-game-card:hover .axon-game-overlay {
    opacity: 1;
}

.axon-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--axon-primary), var(--axon-secondary));
    color: var(--axon-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.axon-play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--axon-glow-strong);
}

.axon-game-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.axon-game-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--axon-primary);
    font-family: 'Orbitron', sans-serif;
}

.axon-game-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid var(--axon-primary);
    border-radius: 4px;
    font-size: 12px;
    color: var(--axon-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.axon-game-details {
    padding: 15px 20px;
    border-top: 1px solid var(--axon-border);
    background: rgba(251, 191, 36, 0.03);
    position: relative;
    z-index: 2;
}

.axon-game-details p {
    font-size: 14px;
    color: var(--axon-text-dim);
    line-height: 1.6;
    margin-bottom: 10px;
}

.axon-game-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--axon-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.axon-game-details-link:hover {
    color: var(--axon-accent);
    transform: translateX(5px);
}

.axon-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(251, 191, 36, 0.03);
    border-top: 1px solid var(--axon-border);
    margin-top: 40px;
}

.axon-stats-item {
    text-align: center;
}

.axon-stats-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--axon-primary);
    font-family: 'Orbitron', sans-serif;
    display: block;
}

.axon-stats-label {
    font-size: 12px;
    color: var(--axon-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Footer Styles */
.axon-footer {
    position: relative;
    padding: 60px 0 20px;
    background: rgba(5, 5, 8, 0.9);
    border-top: 2px solid var(--axon-border);
    margin-top: 80px;
}

.axon-footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.axon-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.axon-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--axon-primary);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.axon-footer-links {
    list-style: none;
}

.axon-footer-links li {
    margin-bottom: 12px;
}

.axon-footer-links a {
    color: var(--axon-text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.axon-footer-links a:hover {
    color: var(--axon-primary);
    transform: translateX(5px);
}

.axon-footer-social {
    display: flex;
    gap: 15px;
}

/* Cookie Consent Styles */
.axon-cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: var(--axon-card-bg);
    border: 2px solid var(--axon-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    animation: slideInRight 0.5s ease-out;
    display: none;
}

.axon-cookie-consent.show {
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.axon-cookie-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--axon-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.axon-cookie-text {
    font-size: 14px;
    color: var(--axon-text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
}

.axon-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.axon-cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.axon-cookie-accept {
    background: var(--axon-primary);
    color: var(--axon-dark);
}

.axon-cookie-accept:hover {
    background: var(--axon-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.axon-cookie-decline {
    background: transparent;
    color: var(--axon-text-dim);
    border: 1px solid var(--axon-border);
}

.axon-cookie-decline:hover {
    color: var(--axon-primary);
    border-color: var(--axon-primary);
}

/* Disclaimer Styles */
.axon-disclaimer {
    background: rgba(251, 191, 36, 0.05);
    border-top: 2px solid var(--axon-border);
    padding: 30px 0;
    margin-top: 60px;
}

.axon-disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.axon-disclaimer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--axon-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.axon-disclaimer-text {
    font-size: 14px;
    color: var(--axon-text-dim);
    line-height: 1.8;
}

.axon-disclaimer-text strong {
    color: var(--axon-primary);
    font-weight: 600;
}

.axon-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--axon-border);
    color: var(--axon-text-dim);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .axon-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(26, 26, 31, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 2px solid var(--axon-border);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .axon-cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
    }

    .axon-nav.active {
        left: 0;
    }

    .axon-nav-list {
        flex-direction: column;
        padding: 20px;
    }

    .axon-mobile-toggle {
        display: flex;
    }

    .axon-hero-title {
        font-size: 42px;
    }

    .axon-hero-subtitle {
        font-size: 18px;
    }

    .axon-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .axon-stats-bar {
        flex-direction: column;
        gap: 20px;
    }
}

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

.axon-float {
    animation: float 3s ease-in-out infinite;
}

