/* Game Hub Styles - Premium Dark Gaming Theme */

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #151922;
    --bg-tertiary: #1e2139;
    --bg-card: #1a1f37;
    --bg-elevated: #252b48;

    /* Accent Colors */
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;

    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Gradients */
    --gradient-purple-blue: linear-gradient(135deg, #8b5cf6, #3b82f6);
    --gradient-blue-green: linear-gradient(135deg, #3b82f6, #10b981);
    --gradient-pink-orange: linear-gradient(135deg, #ec4899, #f59e0b);
    --gradient-dark: linear-gradient(180deg, #0a0e27, #151922);

    /* Effects */
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
    --glow-green: 0 0 20px rgba(16, 185, 129, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header Styles */
.main-header {
    background: rgba(21, 25, 34, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-section {
    flex-shrink: 0;
}

.home-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-purple-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.88rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: var(--gradient-purple-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::before {
    opacity: 0.15;
}

.nav-link.active::before {
    opacity: 0.25;
}

/* Search Bar */
.search-container {
    position: relative;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.search-input {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 40px 10px 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 260px;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple);
    width: 320px;
}

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

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1.1rem;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
}

.hero-content {
    position: relative;
    padding: var(--spacing-2xl);
    background: var(--gradient-purple-blue);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: inline-flex;
    gap: var(--spacing-sm);
}

.btn {
    padding: 14px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: white;
    color: var(--accent-purple);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--accent-purple);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-purple-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Content Sections */
.content-section {
    margin-bottom: var(--spacing-2xl);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 32px;
    background: var(--gradient-purple-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.view-all {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-all:hover {
    gap: 10px;
    color: var(--accent-blue);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.content-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Article Cards */
.article-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--accent-purple);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gradient-purple-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.article-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.article-content {
    padding: var(--spacing-md);
}

.article-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.meta-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.meta-badge.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border-color: rgba(16, 185, 129, 0.3);
}

.meta-badge.blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border-color: rgba(59, 130, 246, 0.3);
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.article-author {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-stats {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Game Cards */
.game-card {
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-blue);
    border-color: var(--accent-blue);
}

.game-thumbnail {
    width: 100%;
    height: 180px;
    background: var(--gradient-blue-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.game-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.game-card:hover .play-button {
    transform: scale(1.1);
}

.game-info {
    padding: var(--spacing-md);
}

.game-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.game-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.game-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Featured Game */
.featured-game {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.featured-game-image {
    height: 100%;
    min-height: 300px;
    background: var(--gradient-purple-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.featured-game-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--gradient-purple-blue);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    width: fit-content;
}

.featured-game-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.featured-game-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Coming Soon Card */
.coming-soon-card {
    background: var(--bg-card);
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.05);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.coming-soon-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.coming-soon-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Game List */
.game-list {
    list-style: none;
    padding: 0;
}

.game-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.game-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: var(--accent-purple);
}

.game-list a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-list a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--gradient-pink-orange);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.3) 0%, transparent 50%);
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

.footer-links a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-dim);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Responsive Navigation */
/* Hide More dropdown by default on large screens */
.nav-more-dropdown {
    display: none !important;
}

/* By default, hide nav items that appear in More dropdown */
.nav-more-medium,
.nav-more-low {
    display: none;
}

/* Hover dropdown functionality */
.nav-hover-dropdown .dropdown-menu {
    display: none !important;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-hover-dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
}

/* Click dropdown functionality (for non-hover dropdowns) */
.nav-dropdown:not(.nav-hover-dropdown) .dropdown-menu {
    display: none;
}

/* Style the ellipsis button for More dropdown */
.nav-more-dropdown .dropdown-toggle {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    line-height: 1;
}

/* Mobile: Allow tap/click on hover dropdown */
@media (max-width: 768px) {
    .nav-hover-dropdown:active .dropdown-menu,
    .nav-hover-dropdown:focus-within .dropdown-menu {
        display: block;
        opacity: 1;
    }
}

/* Progressive hiding based on screen width */
/* At 1400px: hide low priority items, show More dropdown */
@media (max-width: 1400px) {
    .nav-priority-low {
        display: none !important;
    }
    .nav-more-dropdown {
        display: inline-block !important;
    }
    .nav-more-low {
        display: block;
    }
}

/* At 1200px: also hide medium priority items */
@media (max-width: 1200px) {
    .nav-priority-medium {
        display: none !important;
    }
    .nav-more-medium {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.82rem;
        padding: 10px 14px;
    }

    .featured-game {
        grid-template-columns: 1fr;
    }

    .featured-game-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
    }

    .search-container {
        order: 2;
    }

    .search-input,
    .search-input:focus {
        width: 200px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .content-grid,
    .content-grid-large {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .game-card,
    .article-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.4rem;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-content {
        padding: var(--spacing-lg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .featured-game-content {
        padding: var(--spacing-md);
    }

    .featured-game-title {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-purple-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-purple {
    box-shadow: var(--glow-purple);
}

.glow-blue {
    box-shadow: var(--glow-blue);
}

.glow-green {
    box-shadow: var(--glow-green);
}
