/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: #00ffff;
    background-color: #0a0a0a;
    min-height: 100vh;
    padding-bottom: 3rem; /* Space for fixed footer */
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header styles */
header {
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    color: #00ffff;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 0 20px #00ffff;
    border-bottom: 2px solid #00ffff;
    position: relative;
}

#online-users {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #00ffff;
    font-size: 1rem;
    text-shadow: 0 0 5px #00ffff;
    font-weight: 700;
}

.online-users-image {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.online-users-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-buttons button {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff;
}

.nav-buttons button:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 15px #00ffff;
    transform: scale(1.1);
}

.game-library {
    width: 100%;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    font-weight: 900;
}

header p {
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00ffff;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Vertical Advertisements */
.vertical-ad {
    position: fixed;
    top: calc(50% + 3rem);
    transform: translateY(-50%) scale(var(--scale, 1)) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
    width: 160px;
    height: 600px;
    z-index: 1000;
    background: rgba(0, 255, 255, 0.1); /* Placeholder background for visibility */
    border: 1px solid #00ffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 0.8rem;
    text-align: center;
    transform-style: preserve-3d;
}

.ad-placeholder {
    background: #1a1a1a;
    border: 1px solid #00ffff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-shadow: 0 0 5px #00ffff;
}

.left-ad {
    left: 10px;
}

.right-ad {
    right: 10px;
}

/* Hide ads on small screens to avoid overlap */
@media (max-width: 767px) {
    .vertical-ad {
        display: none;
    }
}

/* Adjust main content to avoid overlap with ads on larger screens */
@media (min-width: 768px) {
    main {
        width: calc(100% - 360px); /* 160px * 2 + 20px * 2 for margins */
        margin: 2rem auto;
        max-width: none; /* Remove max-width to allow full width minus ads */
    }
}

/* Game grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1500px;
}

/* Hide third-party and easter-eggs sections by default */
#third-party-games,
#easter-eggs {
    display: none;
}

.game-card {
    background: #1a1a1a;
    border: 2px solid #00ffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2), 0 0 15px #00ffff;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    will-change: transform;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #00ffff);
    background-size: 400% 400%;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
    animation: rainbow 3s ease-in-out infinite;
}

.game-card:nth-child(1):hover::before {
    opacity: 0.4;
}

.game-card:nth-child(6):hover::before {
    opacity: 0.4;
}

.game-card:hover {
    transform: rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3), 0 0 25px #00ffff, 0 0 35px #00ffff, 0 0 5px #00ffff inset;
    border: 3px solid #00ffff;
    will-change: transform;
}

.game-card.no-tilt:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2), 0 0 15px #00ffff;
    border: 2px solid #00ffff;
}

.game-card:nth-child(1):hover {
    background-image: url('https://alone-harlequin-y7ylurovwk.edgeone.app/Screenshot%202025-10-30%20194602.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.game-card:nth-child(1):hover h2,
.game-card:nth-child(1):hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

/* Green dot for specific game cards */
#original-games .game-card:nth-child(1)::after,
#original-games .game-card:nth-child(4)::after,
#original-games .game-card:nth-child(5)::after,
#original-games .game-card:nth-child(6)::after,
#third-party-games .game-card:first-child::after,
#easter-eggs .game-card.librespeed-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff00;
}

/* Yellow dot for user tracker card */
#user-tracker-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #ffff00;
}

/* Yellow dot for specific game cards */
#original-games .game-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #ffff00;
}

/* Red dot for specific game cards */
#original-games .game-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 5px #ff0000;
}

.game-card:nth-child(4):hover h2,
.game-card:nth-child(4):hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
}






.game-card:nth-child(2):hover {
    background-image: url('https://hahdagas.edgeone.app/Screenshot%202025-10-30%20155014.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.game-card:nth-child(2):hover::before {
    opacity: 0.5;
    z-index: 1;
}

.game-card:nth-child(2):hover h2 {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.game-card:nth-child(2):hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #ccc;
    text-shadow: 0 0 3px #00ffff;
}

.game-card:nth-child(3):hover {
    background-image: url('https://dependent-scarlet-u5tlycxeyi.edgeone.app/Screenshot%202025-10-30%20192754.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.game-card:nth-child(3):hover::before {
    opacity: 0.5;
    z-index: 1;
}

.game-card:nth-child(3):hover h2 {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.game-card:nth-child(3):hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #ccc;
    text-shadow: 0 0 3px #00ffff;
}

.game-card:nth-child(5):hover {
    background-image: url('https://visual-azure-todlistcxz.edgeone.app/Screenshot%202025-11-08%20105911.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.game-card:nth-child(5):hover::before {
    opacity: 0.5;
    z-index: 1;
}

.game-card:nth-child(5):hover h2,
.game-card:nth-child(5):hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
}

.game-card:nth-child(4):hover {
    background-image: url('https://armed-blue-e5vpvbhsxk.edgeone.app/Screenshot%202025-10-30%20193003.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.game-card:nth-child(4):hover::before {
    opacity: 0.5;
    z-index: 1;
}

.game-card:nth-child(4):hover h2 {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.game-card:nth-child(4):hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #ccc;
    text-shadow: 0 0 3px #00ffff;
}

#third-party-games .game-card:first-child:hover {
    background-image: url('https://i.postimg.cc/Bv4MQkyv/image-2025-09-27-204409115.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#third-party-games .game-card:first-child:hover h2,
#third-party-games .game-card:first-child:hover p {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.25rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

#third-party-games .game-card:first-child:hover::before {
    opacity: 0.4;
}

.game-card h2 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 5px #00ffff;
    font-weight: 700;
}

.game-card p {
    color: #ccc;
    font-size: 1rem;
    text-shadow: 0 0 3px #00ffff;
}

/* Upvote Section */
.upvote-section {
    position: absolute;
    bottom: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upvote-btn {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff;
    z-index: 10;
    position: relative;
}

.upvote-btn:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 10px #00ffff;
}

.upvote-btn.upvoted {
    background: #00ffff;
    color: #0a0a0a;
}

.upvote-btn.upvoted:hover {
    transform: rotate(180deg);
}

.upvote-count {
    color: #00ffff;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #00ffff;
    font-weight: 700;
    margin-top: 0.2rem;
}

/* Easter Egg Logo */
#easter-egg-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 0 5px #ff1493;
}

#easter-egg-logo:hover {
    box-shadow: 0 0 15px #ff1493, 0 0 30px #ff1493;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    color: #00ffff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 20px #00ffff;
    border-top: 2px solid #00ffff;
    z-index: 1001; /* Above ads */
}

footer p {
    text-shadow: 0 0 5px #00ffff;
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .game-card {
        padding: 1rem;
        min-height: 180px;
    }

    .game-card h2 {
        font-size: 1.3rem;
    }
}

/* LibreSpeed card styles with higher specificity */
.librespeed-card {
    background: #1a1a1a !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.librespeed-card::before {
    z-index: -2;
}

#easter-eggs .game-card.librespeed-card:hover {
    background-image: url('https://i.postimg.cc/FHsK8QNj/image-2025-09-28-165936272.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#easter-eggs .game-card.librespeed-card:hover::before {
    opacity: 0.4 !important;
    animation: rainbow 1.5s ease infinite !important;
    z-index: -2 !important;
}

#easter-eggs .game-card.librespeed-card:hover h2,
#easter-eggs .game-card.librespeed-card:hover p {
    position: relative !important;
    z-index: 2 !important;
    -webkit-backdrop-filter: blur(2px) !important;
    backdrop-filter: blur(2px) !important;
    background: rgba(0,0,0,0.6) !important;
    padding: 0.25rem !important;
    border-radius: 4px !important;
}

#easter-eggs .game-card.librespeed-card:hover h2 {
    color: #00ffff !important;
    text-shadow: 0 0 5px #00ffff !important;
}

#easter-eggs .game-card.librespeed-card:hover p {
    color: #fff !important;
}

#easter-eggs .game-card.librespeed-card h2 {
    color: #00ffff !important;
    text-shadow: 0 0 5px #00ffff !important;
}

#easter-eggs .game-card.librespeed-card p {
    color: #ccc !important;
    text-shadow: 0 0 3px #00ffff !important;
}

/* User Activity Card in Easter Eggs */
#user-tracker-card:hover {
    background: transparent;
}

#user-tracker-card:hover::before {
    opacity: 0.4;
    animation: rainbow 1.5s ease infinite;
    z-index: -2;
}

#user-tracker-card:hover h2,
#user-tracker-card:hover p {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#user-tracker-card:hover canvas {
    opacity: 1;
    z-index: 1;
}

/* Uptime Tracker Card Rainbow Effect */
.game-card[data-url="uptime"]:hover::before {
    opacity: 0.7;
    animation: rainbow 3s ease-in-out infinite;
    z-index: 3;
}

/* Game Embed Container */
.game-embed-container {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: rgba(10, 10, 10, 0.3);
    border: 2px solid #00ffff;
    border-radius: 8px;
    display: none;
    z-index: 10000;
    box-shadow: 0 0 20px #00ffff;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.game-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00ffff;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #00ffff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Jumpscare Modal */
.jumpscare-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.jumpscare-image {
    max-width: 80%;
    max-height: 80%;
}

/* Embed Controls */
.embed-controls {
    position: absolute;
    top: 50%;
    right: 290px;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 8px;
    padding: 10px;
}

.embed-controls button {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.embed-controls button:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 15px #00ffff;
    transform: scale(1.1);
}

/* User Tracker Card Styles */
#user-tracker-card {
    position: relative;
}

#user-tracker-card canvas {
    width: 100% !important;
    height: 150px !important;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Upvote Info Overlay */
.upvote-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.upvote-info-overlay.show {
    display: flex;
    opacity: 1;
}

.upvote-info-content {
    background: #1a1a1a;
    border: 2px solid #00ffff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 20px #00ffff;
    animation: fadeIn 0.5s ease-in-out;
}

.upvote-info-content.fade-out {
    animation: fadeOut 0.5s ease-in-out;
}

.upvote-info-content p {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00ffff;
}

.contact-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #00ffff;
    text-align: center;
}

.upvote-info-details {
    text-align: left;
    color: #00ffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bug-dot {
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.bug-dot.green {
    color: #00ff00;
}

.bug-dot.yellow {
    color: #ffff00;
}

.bug-dot.red {
    color: #ff0000;
}

#close-upvote-info {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff;
}

#close-upvote-info:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 10px #00ffff;
}

/* Recommendation Modal */
.recommendation-form {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 2px solid #00ffff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-radius: 0 0 8px 8px;
}

.recommendation-form.show {
    transform: translateY(0);
}

.recommendation-form textarea {
    width: 100%;
    height: 100px;
    padding: 0.5rem;
    border: 2px solid #00ffff;
    border-radius: 4px;
    background: #0a0a0a;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1rem;
}

.recommendation-form textarea::placeholder {
    color: #00ffff;
    opacity: 0.7;
}

.recommendation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.recommendation-buttons button {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff;
}

.recommendation-buttons button:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 10px #00ffff;
}

#send-recommendation {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

#send-recommendation:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 10px #00ffff;
}

#recommendation-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#recommendation-btn:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 15px #00ffff;
    transform: scale(1.1);
}

/* Embed Chart Container Styles */
#embed-chart-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

#embed-chart-container h2 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin-bottom: 20px;
}

#embed-activity-chart {
    width: 100% !important;
    max-width: 600px;
    height: auto !important;
    max-height: 400px;
}
