/* Windows XP Theme */
:root {
    --win-blue: #245EDC;
    --win-title-blue: #1550BE;
    --win-border: #0C3CA5;
    --taskbar-blue: #245EDC;
    --win-gray: #ECE9D8;
    --win-button: #D4D0C8;
    --win-button-highlight: #FFFFFF;
    --win-button-shadow: #808080;
    --win-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Tahoma', sans-serif;
    line-height: 1.6;
    background: #008080 url('https://i.imgur.com/Zk6TR5k.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #000;
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur117.cur'), auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Add cursor pointer for clickable elements */
a, button, .download-button, .contact-button, .social-link {
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), pointer !important;
}

/* Windows XP window styling */
.window-container, .download-item, .contact-item {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: windowOpen 0.3s ease-out;
}

@keyframes windowOpen {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Classic Windows title bar buttons */
.window-title, .download-header, .contact-header {
    position: relative;
}

/* Retro button effects */
.download-button, .contact-button, .copy-button, .reveal-button {
    position: relative;
    overflow: hidden;
}

.download-button::before, .contact-button::before, .copy-button::before, .reveal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    transition: left 0.3s ease;
}

.download-button:hover::before, .contact-button:hover::before, 
.copy-button:hover::before, .reveal-button:hover::before {
    opacity: 0;
}

/* Classic scrollbar */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: var(--win-gray);
    border: 1px solid var(--win-button-shadow);
}

::-webkit-scrollbar-thumb {
    background: var(--win-button);
    border: 1px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
}

::-webkit-scrollbar-button {
    background: var(--win-button);
    border: 1px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    height: 16px;
}

/* Marquee enhancements */
.marquee-container {
    display: none; /* Hide by default on all pages */
}

/* Only show marquee on main page */
.main-page .marquee-container {
    display: block;
    background: var(--win-gray);
    border-top: 1px solid var(--win-button-shadow);
    border-bottom: 1px solid var(--win-button-shadow);
    padding: 4px 0;
}

.marquee {
    color: #000;
    font-family: 'Tahoma', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Footer */
footer {
    background: var(--taskbar-blue);
    color: white;
    padding: 0.15rem;
    text-align: center;
    border-top: 2px solid var(--win-border);
    height: 30px;
    position: relative;
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
}

.social-links a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1;
}

.footer-text {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Social links glow effect */
.social-link {
    position: relative;
    transition: all 0.3s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::after {
    opacity: 1;
}

/* Version tag enhancement */
.version-tag, .minecraft-version, .dependency-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #d8d8d8;
    border: 1px solid var(--win-button-shadow);
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    color: #000000;
    border-radius: 3px;
}

.dependency-tag i {
    display: none;
}


/* Header nav enhancement */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Add subtle animation to icons - exclude video-link icons */
.fas:not(.video-link .fas), 
.fab:not(.video-link .fab) {
    transition: transform 0.3s ease;
}

.fas:not(.video-link .fas):hover, 
.fab:not(.video-link .fab):hover {
    transform: scale(1.1);
}

/* Header/Taskbar */
header {
    background: linear-gradient(to bottom, #2A91E0, #245EDC, #245EDC);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 4px;
    height: 64px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Ensure main content isn't hidden behind sticky header */
main {
    flex: 1;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.25rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 48px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 1.5em;
    align-items: center;
}

.nav-links > li {
    position: relative;
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 3px;
    font-size: 1.1rem;
    position: relative;
    top: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Windows-style Container */
.window-container {
    background-color: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 8px 8px 0 0;
    margin: 1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.window-title {
    background: linear-gradient(to right, var(--win-title-blue), var(--win-blue));
    color: white;
    padding: 0.5rem;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.window-title i {
    font-size: 1.2rem;
}

.window-content {
    padding: 1rem;
    background-color: var(--win-gray);
}

/* Social Cards */
.social-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr) minmax(200px, 1fr);
    gap: 0.75rem;
    padding: 0.5rem;
}

.social-card {
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 3px;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.social-button {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: var(--win-button);
    border: 2px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-top: 0.5rem;
}

.social-button:active {
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
}

/* Video Section */
.video-container {
    background: #000;
    border: 2px solid var(--win-border);
    padding: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.video-item {
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    padding: 2px;
}

/* Downloads Section */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.download-item {
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    box-shadow: inset -2px -2px 0 #808080, inset 2px 2px 0 #fff;
    transition: all 0.2s ease;
    overflow: hidden;
}

.download-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid var(--win-button-shadow);
    background: var(--win-gray);
}

.download-header i {
    font-size: 1.4rem;
    color: var(--win-blue);
}

.download-header span {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: inset -2px -2px 0 #808080, inset 2px 2px 0 #fff, 0 4px 8px rgba(0,0,0,0.1);
}

.download-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-info h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.download-info p {
    font-size: 0.9rem;
    color: #333;
}

.version-info {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.download-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    text-align: center;
    min-height: 2.5rem;
}

.download-button:active {
    padding: 0.85rem 0.9rem 0.65rem 1.1rem;
}

/* Download Category Headers */
.download-category {
    margin: 2rem 1rem;
}

.category-title {
    background: linear-gradient(to right, var(--win-title-blue), var(--win-blue));
    color: white;
    padding: 0.75rem 1.25rem;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    border: 2px solid var(--win-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    font-size: 1.4rem;
}

.category-title i {
    font-size: 1.5rem;
}

/* Start Menu style social links */
.social-links-grid {
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    padding: 0.5rem;
}

.social-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    text-decoration: none;
    color: #000;
}

.social-mini:hover {
    background: var(--win-blue);
    color: white;
}

/* Channel Tags */
.channel-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-tag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.channel-tag:hover::before {
    transform: translateX(100%);
}

/* Angel6T4 channel style */
.channel-tag[data-channel="Angel6T4"] {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
}

.channel-tag[data-channel="Angel6T4"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* Flutterz channel style */
.channel-tag[data-channel="Flutterz"] {
    background: linear-gradient(135deg, #44A64E 0%, #2E7D36 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(68, 166, 78, 0.2);
}

.channel-tag[data-channel="Flutterz"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 166, 78, 0.4);
    filter: brightness(1.1);
}

/* Flutterz+ channel style */
.channel-tag[data-channel="Flutterz+"] {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

.channel-tag[data-channel="Flutterz+"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    filter: brightness(1.1);
}

/* Angel6T4+ channel style */
.channel-tag[data-channel="Angel6T4+"] {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(156, 39, 176, 0.2);
}

.channel-tag[data-channel="Angel6T4+"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
    filter: brightness(1.1);
}

/* Thumbnails */
.thumbnail-link {
    display: block;
    border: 2px solid var(--win-border);
    margin-bottom: 0.5rem;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tahoma', sans-serif;
    line-height: 1.6;
    background: #008080 url('https://i.imgur.com/Zk6TR5k.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #000;
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur117.cur'), auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    flex: 1;
    width: 100%;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4CAF50;
}

/* Featured Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Recent Videos Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Downloads Page */
.download-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    color: #e1e1e1;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4CAF50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    color: #4CAF50;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.download-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2);
}

.download-item i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.download-item h3 {
    margin-bottom: 0.5rem;
    color: #e1e1e1;
}

.download-item p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.version {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

.download-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.download-button:hover {
    background-color: #45a049;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #e1e1e1;
    padding: 2rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-link {
    color: #e1e1e1;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4CAF50;
}

/* Error Messages */
.error-message {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #4CAF50;
    color: #e1e1e1;
}

/* Social Media Showcase */
.social-showcase {
    background-color: #1a1a1a;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr) minmax(200px, 1fr);
    gap: 1rem;
}

.social-card {
    background-color: #242424;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4CAF50;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.social-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.social-card:hover i {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.1rem;
    color: #e1e1e1;
    margin-bottom: 0.25rem;
}

.social-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.social-button i {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
}

.social-links-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem;
}

.social-mini {
    background-color: #242424;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.social-mini:hover {
    transform: translateX(5px);
    background-color: #2a2a2a;
}

.social-mini i {
    font-size: 1.2rem;
    color: #4CAF50;
}

.social-mini span {
    color: #e1e1e1;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Social Media Brand Colors */
.social-mini.twitter i {
    color: #1DA1F2; /* Twitter blue */
}

.social-mini.instagram i {
    color: #E4405F; /* Instagram pink/red */
}

.social-mini.twitch i {
    color: #9146FF; /* Twitch purple */
}

.social-card.youtube-main i,
.social-card.youtube-second i {
    color: #FF0000; /* YouTube red */
}

.social-card.discord i {
    color: #5865F2; /* Discord blue */
}

/* Footer social links brand colors */
.social-links .social-link:nth-child(1) i,
.social-links .social-link:nth-child(2) i,
.social-links .social-link:nth-child(3) i,
.social-links .social-link:nth-child(4) i {
    color: #FF0000; /* YouTube */
}

.social-links .social-link:nth-child(5) i {
    color: #1DA1F2; /* Twitter */
}

.social-links .social-link:nth-child(6) i {
    color: #5865F2; /* Discord */
}

.social-links .social-link:nth-child(7) i {
    color: #E4405F; /* Instagram */
}

.social-links .social-link:nth-child(8) i {
    color: #9146FF; /* Twitch */
}

/* Update hover states for social mini cards */
.social-mini.twitter:hover {
    background-color: rgba(29, 161, 242, 0.1);
}

.social-mini.instagram:hover {
    background-color: rgba(228, 64, 95, 0.1);
}

/* Keep existing Twitch hover state */
.social-mini.twitch:hover {
    background-color: rgba(145, 70, 255, 0.1);
}

/* Responsive adjustments for social showcase */
@media (max-width: 1024px) {
    .social-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .social-container {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .downloads-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.5rem;
    }
}

/* Video Info Styles */
.video-info {
    padding: 1rem;
    background-color: var(--win-gray);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #333;
    margin-top: 0.25rem;
}

.video-date {
    font-size: 0.8rem;
    color: #333;
}

.video-info h3 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-wrapper {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.video-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-item:hover {
    transform: translateY(-5px);
}

/* Video Thumbnails */
.thumbnail-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-link:hover .video-thumbnail {
    transform: scale(1.05);
}

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

.play-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.thumbnail-link:hover .play-overlay {
    opacity: 1;
}

.video-title {
    text-decoration: none;
}

.video-title h3 {
    color: #000;
    transition: color 0.3s ease;
}

.video-title:hover h3 {
    color: var(--win-blue);
}

.video-wrapper {
    width: 100%;
}

.video-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Program Shortcuts */
.program-shortcut {
    background: var(--win-gray);
    border: 1px solid var(--win-button-shadow);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.program-shortcut::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--win-button-highlight);
    border-top: none;
    border-left: none;
    pointer-events: none;
}

.program-shortcut i {
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.program-shortcut.youtube-main i,
.program-shortcut.youtube-second i,
.program-shortcut.youtube-flutterz-plus i,
.program-shortcut.youtube-angel-plus i {
    color: #FF0000;
}

.program-shortcut.discord i {
    color: #5865F2;
}

.program-shortcut i[class*="fa-twitter"] {
    color: #1DA1F2;
}

.program-shortcut i[class*="fa-instagram"] {
    color: #E4405F;
}

.program-shortcut i[class*="fa-twitch"] {
    color: #9146FF;
}

.program-shortcut:hover {
    background: #316AC5;
    color: white;
}

.program-shortcut:hover i {
    color: white !important;
    text-shadow: none;
}

.program-shortcut:hover h3,
.program-shortcut:hover p {
    color: white;
}

.shortcut-text {
    flex: 1;
}

.shortcut-text h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #000;
}

.shortcut-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

/* Start Menu Style */
.start-menu-links {
    background: var(--win-gray);
    border: 1px solid var(--win-border);
    border-radius: 3px;
}

.menu-header {
    background: linear-gradient(to right, #7BA4D5, #B5D3F1);
    color: #000;
    padding: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--win-border);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    text-decoration: none;
    color: #000;
    border: 1px solid transparent;
}

.menu-item:hover {
    background: #316AC5;
    color: white;
}

.menu-item:hover i {
    color: white !important;
}

.menu-item i {
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.menu-item span {
    font-size: 0.9rem;
}

/* Update social container grid */
.social-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr) minmax(200px, 1fr);
    gap: 1rem;
    padding: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .social-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .start-menu-links {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .social-container {
        grid-template-columns: 1fr;
    }
    
    .start-menu-links {
        grid-column: span 1;
    }
}

/* Hover effects */
.video-item:hover .channel-tag[data-channel="Angel6T4"] {
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.video-item:hover .channel-tag[data-channel="Flutterz"] {
    box-shadow: 0 4px 8px rgba(68, 166, 78, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.video-item:hover .channel-tag[data-channel="Flutterz+"] {
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.video-item:hover .channel-tag[data-channel="Angel6T4+"] {
    box-shadow: 0 4px 8px rgba(156, 39, 176, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Marquee Container */
.marquee-container {
    display: none; /* Hide by default on all pages */
}

/* Only show marquee on main page */
.main-page .marquee-container {
    display: block;
    background: var(--win-gray);
    border-top: 1px solid var(--win-button-shadow);
    border-bottom: 1px solid var(--win-button-shadow);
    padding: 4px 0;
}

.marquee {
    color: #000;
    font-family: 'Tahoma', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Update existing version-tag style */
.version-tag {
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--win-button-shadow);
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    margin-top: 0.5rem;
}

.download-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    text-align: center;
    min-height: 2.5rem;
    background: var(--win-button);
    border: 2px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.video-section::before {
    content: 'As Seen On';
    font-style: italic;
    margin-top: -15px;
}

/* Video link in downloads - no background */
.video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    color: #FF0000;
    text-decoration: none;
    padding: 0;
    position: relative;
    background: none;
    border: none;
}

.video-link i {
    font-size: 1.8rem;
    line-height: 0;
    transition: none;
    margin-top: 2px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-item {
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.contact-header {
    background: linear-gradient(to right, var(--win-title-blue), var(--win-blue));
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-header i {
    font-size: 2rem;
}

.contact-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.contact-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.contact-content p {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--win-button);
    border: 2px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    min-width: 200px;
    justify-content: center;
}

.contact-button:active {
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
    padding: 0.85rem 1.4rem 0.65rem 1.6rem;
}

/* Discord specific styles */
.contact-button.discord-button {
    color: #5865F2;
}

.contact-button.discord-button i {
    color: #5865F2;
}

/* Twitter specific styles */
.contact-button.twitter-button {
    color: #1DA1F2;
}

.contact-button.twitter-button i {
    color: #1DA1F2;
}

/* Email container styles */
.email-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    width: 100%;
    max-width: 450px;
}

.reveal-button {
    background-color: #4a4a4a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
    min-width: 200px;
}

.reveal-button:hover {
    background-color: #666;
}

.reveal-button i {
    margin-right: 8px;
}

.email-display {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem;
    border: 1px solid var(--win-button-shadow);
    min-width: 0;
}

.email-display.hidden {
    display: none;
}

.email-display span {
    flex: 1;
    font-family: 'Courier New', monospace;
    color: #333;
    font-size: 1rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    background: var(--win-button);
    border: 2px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:active {
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
}

.copy-button i {
    font-size: 1.1rem;
}

/* Hover effects */
.contact-button:hover {
    background: var(--win-gray);
}

.copy-button:hover {
    background: var(--win-gray);
}

.hidden-email {
    display: none;
}

.email-display.revealed {
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .contact-content {
        padding: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Disclaimer Box */
.disclaimer-box {
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 8px;
    margin: 1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 90%;
    position: fixed;
    right: 1rem;
    top: calc(64px + 2rem); /* Account for header height + some padding */
    z-index: 100;
}

.disclaimer-header {
    background: linear-gradient(to right, #245EDC, #2A91E0);
    color: white;
    padding: 0.5rem 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--win-border);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.disclaimer-header i {
    font-size: 1.1rem;
}

.disclaimer-content {
    padding: 0.75rem;
    color: #000;
    font-size: 0.9rem;
    line-height: 1.4;
    background: var(--win-gray);
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.disclaimer-content li {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.disclaimer-content li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--win-blue);
    font-weight: bold;
}

.disclaimer-content a {
    color: var(--win-blue);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.1rem 0.25rem;
    margin: -0.1rem -0.25rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

.disclaimer-content a:hover {
    background: rgba(36, 94, 220, 0.1);
}

.disclaimer-content a i {
    color: #FF0000;
    font-size: 0.9rem;
}

/* Responsive adjustments for disclaimer box */
@media (max-width: 768px) {
    .disclaimer-box {
        position: static;
        max-width: 800px;
        width: 90%;
        margin: 1rem auto;
    }
}

/* Windows XP Progress Bar */
.progress-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.progress-title {
    background: linear-gradient(to right, #245EDC, #2A91E0);
    color: white;
    padding: 0.4rem 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.progress-title .close-btn {
    background: #ff5555;
    border: 1px solid #aa3333;
    color: white;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Tahoma', sans-serif;
}

.progress-content {
    padding: 1rem;
    background: var(--win-gray);
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.progress-info i {
    font-size: 2rem;
    color: #245EDC;
}

.progress-text {
    font-size: 0.9rem;
    color: #000;
}

.progress-bar-container {
    width: 100%;
    height: 16px;
    background: white;
    border: 1px solid #999;
    padding: 1px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.progress-block {
    width: 8px;
    height: 100%;
    background: #3BA94C;
    margin-right: 1px;
    opacity: 0;
    transition: opacity 0.1s ease;
    flex-shrink: 0;
}

.progress-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

.progress-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.progress-button {
    padding: 0.25rem 1rem;
    background: var(--win-button);
    border: 2px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    color: #000;
    cursor: pointer;
    font-size: 0.85rem;
}

.progress-button:active {
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
    padding: 0.35rem 0.9rem 0.15rem 1.1rem;
}

/* Main Page Layout */
.main-page-layout {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Side Panel */
.side-panel {
    width: 300px;
    flex-shrink: 0;
}

.side-panel .window-container {
    height: fit-content;
    position: sticky;
    top: calc(64px + 8px); /* Account for header height + some padding */
    z-index: 1;
}

/* Main Content Area */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Side Panel Social Links */
.side-panel .social-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}

.side-panel .program-shortcut {
    padding: 0.75rem;
    margin: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.side-panel .program-shortcut i {
    font-size: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
}

.side-panel .shortcut-text h3 {
    font-size: 0.95rem;
    margin: 0;
    color: #000;
}

.side-panel .shortcut-text p {
    font-size: 0.8rem;
    margin: 0.2rem 0 0 0;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-page-layout {
        flex-direction: column;
    }

    .side-panel {
        width: 100%;
    }

    .side-panel .window-container {
        position: static;
    }

    .side-panel .social-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .side-panel .social-container {
        grid-template-columns: 1fr;
    }
}

/* Keep existing styles but override for index page */
.index-page .social-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}

.index-page .program-shortcut {
    margin: 0;
    padding: 0.75rem;
}

.index-page .program-shortcut i {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
}

.minecraft-downloads-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 8px 8px 0 0;
    padding: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.minecraft-downloads-button i {
    font-size: 2rem;
    color: #44A64E;
}

.minecraft-downloads-button .button-text {
    flex: 1;
}

.minecraft-downloads-button h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #000;
    font-weight: normal;
}

.minecraft-downloads-button p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.2rem 0 0 0;
}

.minecraft-downloads-button:hover {
    background: #316AC5;
}

.minecraft-downloads-button:hover i,
.minecraft-downloads-button:hover h3,
.minecraft-downloads-button:hover p {
    color: white;
}

.minecraft-downloads-button:active {
    background: #214B8A;
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
}

/* Contact Page Specific Layout */
.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-page main {
    flex: 1;
    margin: 1rem auto;
}

.contact-page footer {
    margin-top: auto;
}

/* Business Email Window */
.business-email-window {
    max-width: 800px;
    margin: 2rem auto;
}

.business-email-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.business-email-content p {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin: 0;
}

.business-email-content .email-container {
    width: 100%;
    max-width: 450px;
}

/* Update contact grid for two items */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.category-tab {
    background: #c0c0c0;
    border: 2px solid #808080;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.category-tab:hover {
    background: #d0d0d0;
}

.category-tab.active {
    background: #e0e0e0;
    border-color: #000;
    box-shadow: inset -2px -2px 0 #808080, inset 2px 2px 0 #fff;
}

.category-tab i {
    font-size: 1.2rem;
}

/* Download Categories */
.download-category {
    display: none;
    padding: 0 1rem;
    min-height: 200px;
    position: relative;
}

.download-category.active {
    display: block;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 400px;
}

.download-item {
    background: #c0c0c0;
    border: 2px solid #808080;
    box-shadow: inset -2px -2px 0 #808080, inset 2px 2px 0 #fff;
    transition: all 0.2s ease;
    overflow: hidden;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: inset -2px -2px 0 #808080, inset 2px 2px 0 #fff, 0 4px 8px rgba(0,0,0,0.1);
}

.download-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid var(--win-button-shadow);
    background: var(--win-gray);
}

.download-content {
    padding: 1rem;
}

.download-info {
    margin: 0.5rem 0;
}

.download-info p {
    margin: 0.5rem 0;
    color: #333;
}

.version-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.download-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.download-button {
    background: #c0c0c0;
    border: 2px solid #808080;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: all 0.2s ease;
}

.download-button:hover {
    background: #d0d0d0;
    box-shadow: inset -2px -2px 0 #808080, inset 2px 2px 0 #fff;
}

.video-link {
    color: #ff0000;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.video-link:hover {
    color: #cc0000;
    transform: scale(1.1);
}

/* Download Thumbnail */
.download-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
    border: 1px solid #808080;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.download-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.download-thumbnail:hover img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-overlay i {
    font-size: 2.5rem;
    color: #ff0000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.download-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.video-source {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
    text-align: center;
    padding: 0.1rem;
}

/* Remove the shine animation */
.video-source::before {
    display: none;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* Usage Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer-modal-content {
    background-color: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 6px 6px 0 0;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
    transform: translateY(0);
}

.disclaimer-modal-header {
    background: linear-gradient(to right, var(--win-title-blue), var(--win-blue));
    color: white;
    padding: 0.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--win-button-shadow);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.disclaimer-modal-header i {
    font-size: 1.2rem;
    color: #FFD700;
}

.disclaimer-modal-body {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}

.disclaimer-modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.disclaimer-modal-body ul ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.disclaimer-modal-body li {
    margin: 0.5rem 0;
    color: #333;
}

.disclaimer-modal-body a {
    color: var(--win-blue);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.1rem 0.25rem;
    margin: -0.1rem -0.25rem;
    border-radius: 3px;
}

.disclaimer-modal-body a:hover {
    background: rgba(36, 94, 220, 0.1);
}

.disclaimer-modal-body a i {
    color: #FF0000;
    font-size: 0.9rem;
}

.disclaimer-modal-footer {
    padding: 0.75rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    border-top: 2px solid var(--win-button-shadow);
    background: var(--win-gray);
}

.disclaimer-button {
    padding: 0.4rem 1rem;
    background: var(--win-button);
    border: 2px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.disclaimer-button:hover {
    background: var(--win-gray);
}

.disclaimer-button:active {
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
    padding: 0.5rem 0.9rem 0.3rem 1.1rem;
}

/* Disclaimer Trigger Button */
.disclaimer-trigger {
    position: relative;
    margin: 0;
    background: var(--win-gray);
    border: 2px solid var(--win-border);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.disclaimer-trigger i {
    color: var(--win-blue);
    font-size: 1.1rem;
}

.disclaimer-trigger:hover {
    background: var(--win-button);
}

.disclaimer-trigger:active {
    border-color: var(--win-button-shadow);
    border-top-color: var(--win-button-highlight);
    border-left-color: var(--win-button-highlight);
    padding: 0.6rem 0.9rem 0.4rem 1.1rem;
}

/* Tabs Container */
.tabs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
        align-items: stretch;
    }

    .category-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .disclaimer-trigger {
        width: fit-content;
        margin: 0 auto;
    }
}

/* Game tabs container */
.game-tabs-container {
    background: transparent;
    border: none;
    padding: 8px 16px;
    margin-bottom: 8px;
}

.game-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.game-tab {
    background: var(--win-button);
    border: 1px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    padding: 8px 16px;
    font-family: 'Tahoma', sans-serif;
    font-size: 0.9rem;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
}

.game-tab:hover {
    background: var(--win-button-highlight);
}

.game-tab.active {
    background: var(--win-blue);
    color: white;
    border-color: var(--win-border);
}

.game-tab i {
    font-size: 1rem;
}

.game-section {
    display: none;
}

.game-section.active {
    display: block;
}

/* Update existing tabs container for nested structure */
.tabs-container {
    background: transparent;
    border: none;
    padding: 8px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tabs {
    display: flex;
    gap: 4px;
}

.category-tab {
    background: var(--win-button);
    border: 1px solid var(--win-button-shadow);
    border-right-color: var(--win-button-highlight);
    border-bottom-color: var(--win-button-highlight);
    padding: 6px 12px;
    font-family: 'Tahoma', sans-serif;
    font-size: 0.8rem;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.category-tab:hover {
    background: var(--win-button-highlight);
}

.category-tab.active {
    background: var(--win-blue);
    color: white;
    border-color: var(--win-border);
}

.category-tab i {
    font-size: 0.9rem;
}

.download-category {
    display: none;
}

.download-category.active {
    display: block;
}

/* Responsive adjustments for game tabs */
@media (max-width: 768px) {
    .game-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .game-tab {
        min-width: auto;
    }
    
    .tabs-container {
        flex-direction: column;
        align-items: stretch;
    }

    .category-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .disclaimer-trigger {
        width: fit-content;
        margin: 0 auto;
    }
}

 
/* ===== RETRO DOWNLOADS PAGE STYLES ===== */

/* Retro Header for Downloads Page */
.downloads-page-retro header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    border-bottom: 3px solid #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: visible;
}

.downloads-page-retro header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.downloads-page-retro nav {
    position: relative;
    z-index: 2;
}

.downloads-page-retro .logo img {
    filter: drop-shadow(0 0 10px #00ffff);
    transition: all 0.3s ease;
}

.downloads-page-retro .logo img:hover {
    filter: drop-shadow(0 0 15px #00ffff) hue-rotate(90deg);
    transform: scale(1.05);
}

.downloads-page-retro .nav-links {
    font-family: 'VT323', monospace;
}

.downloads-page-retro .nav-links a {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

.downloads-page-retro .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.downloads-page-retro .nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00ffff;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-1px);
}

.downloads-page-retro .nav-links a:hover::before {
    opacity: 1;
}

.downloads-page-retro .nav-links a.active {
    color: #ffff00;
    text-shadow: 0 0 8px #ffff00;
    border-color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
}



/* Retro Downloads Page Body */
.downloads-page-retro {
    background: 
        linear-gradient(45deg, #000000 25%, transparent 25%),
        linear-gradient(-45deg, #000000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000000 75%),
        linear-gradient(-45deg, transparent 75%, #000000 75%),
        radial-gradient(circle at 50% 50%, #001122 0%, #000000 100%);
    background-size: 40px 40px, 40px 40px, 40px 40px, 40px 40px, 100% 100%;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px, 0 0;
    animation: retro-bg-shift 20s ease-in-out infinite;
    font-family: 'VT323', 'Courier New', monospace;
    overflow-x: hidden;
}

@keyframes retro-bg-shift {
    0%, 100% { background-position: 0 0, 0 20px, 20px -20px, -20px 0px, 0 0; }
    50% { background-position: 20px 20px, 20px 40px, 40px 0px, 0px 20px, 0 0; }
}

/* Retro Main Container */
.retro-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1rem;
    position: relative;
    z-index: 1;
}

/* ASCII Art Header */
.ascii-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: 
        linear-gradient(45deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 0, 255, 0.1) 25%, transparent 25%),
        rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 10px;
    box-shadow: 
        0 0 20px #00ffff,
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ascii-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: scan-line 5s ease-in-out infinite;
}

@keyframes scan-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ascii-art {
    font-family: 'VT323', monospace;
    font-size: 0.7rem;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    margin: 0;
    line-height: 1;
    /* filter: drop-shadow(0 0 5px #00ff00); */
}

.glitch-text {
    margin-top: 0.5rem;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow: 
        0.05em 0 0 #00ffff,
        -0.05em -0.025em 0 #ff00ff,
        0.025em 0.05em 0 #ffff00;
    animation: glitch-anim 2s infinite linear alternate-reverse;
    display: inline-block;
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-anim-1 0.5s infinite linear alternate-reverse;
    color: #ff00ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-anim-2 0.3s infinite linear alternate-reverse;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-anim {
    0% { text-shadow: 0.05em 0 0 #00ffff, -0.05em -0.025em 0 #ff00ff, 0.025em 0.05em 0 #ffff00; }
    15% { text-shadow: 0.05em 0 0 #00ffff, -0.05em -0.025em 0 #ff00ff, 0.025em 0.05em 0 #ffff00; }
    16% { text-shadow: -0.05em -0.025em 0 #00ffff, 0.025em 0.025em 0 #ff00ff, -0.05em -0.05em 0 #ffff00; }
    49% { text-shadow: -0.05em -0.025em 0 #00ffff, 0.025em 0.025em 0 #ff00ff, -0.05em -0.05em 0 #ffff00; }
    50% { text-shadow: 0.025em 0.05em 0 #00ffff, 0.05em 0 0 #ff00ff, 0 -0.05em 0 #ffff00; }
    99% { text-shadow: 0.025em 0.05em 0 #00ffff, 0.05em 0 0 #ff00ff, 0 -0.05em 0 #ffff00; }
    100% { text-shadow: -0.025em 0 0 #00ffff, -0.025em -0.025em 0 #ff00ff, -0.025em -0.05em 0 #ffff00; }
}

@keyframes glitch-anim-1 {
    0% { clip: rect(64px, 9999px, 66px, 0); transform: skew(0.5deg); }
    5% { clip: rect(30px, 9999px, 36px, 0); transform: skew(0.1deg); }
    10% { clip: rect(70px, 9999px, 71px, 0); transform: skew(0.8deg); }
    15% { clip: rect(10px, 9999px, 15px, 0); transform: skew(0.2deg); }
    20% { clip: rect(40px, 9999px, 80px, 0); transform: skew(0.9deg); }
    25% { clip: rect(10px, 9999px, 40px, 0); transform: skew(0.3deg); }
    30% { clip: rect(80px, 9999px, 81px, 0); transform: skew(0.5deg); }
    35% { clip: rect(50px, 9999px, 60px, 0); transform: skew(0.1deg); }
    40% { clip: rect(30px, 9999px, 31px, 0); transform: skew(0.7deg); }
    45% { clip: rect(60px, 9999px, 70px, 0); transform: skew(0.4deg); }
    50% { clip: rect(20px, 9999px, 25px, 0); transform: skew(0.2deg); }
    55% { clip: rect(70px, 9999px, 85px, 0); transform: skew(0.6deg); }
    60% { clip: rect(10px, 9999px, 20px, 0); transform: skew(0.8deg); }
    65% { clip: rect(40px, 9999px, 45px, 0); transform: skew(0.3deg); }
    70% { clip: rect(80px, 9999px, 90px, 0); transform: skew(0.5deg); }
    75% { clip: rect(20px, 9999px, 30px, 0); transform: skew(0.1deg); }
    80% { clip: rect(50px, 9999px, 55px, 0); transform: skew(0.9deg); }
    85% { clip: rect(30px, 9999px, 40px, 0); transform: skew(0.2deg); }
    90% { clip: rect(70px, 9999px, 75px, 0); transform: skew(0.7deg); }
    95% { clip: rect(40px, 9999px, 50px, 0); transform: skew(0.4deg); }
    100% { clip: rect(60px, 9999px, 65px, 0); transform: skew(0.6deg); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 119px, 0); transform: skew(0.7deg); }
    5% { clip: rect(25px, 9999px, 30px, 0); transform: skew(0.8deg); }
    10% { clip: rect(85px, 9999px, 90px, 0); transform: skew(0.3deg); }
    15% { clip: rect(15px, 9999px, 20px, 0); transform: skew(0.5deg); }
    20% { clip: rect(45px, 9999px, 50px, 0); transform: skew(0.2deg); }
    25% { clip: rect(75px, 9999px, 80px, 0); transform: skew(0.9deg); }
    30% { clip: rect(35px, 9999px, 40px, 0); transform: skew(0.1deg); }
    35% { clip: rect(65px, 9999px, 70px, 0); transform: skew(0.6deg); }
    40% { clip: rect(25px, 9999px, 35px, 0); transform: skew(0.4deg); }
    45% { clip: rect(55px, 9999px, 65px, 0); transform: skew(0.8deg); }
    50% { clip: rect(15px, 9999px, 25px, 0); transform: skew(0.3deg); }
    55% { clip: rect(75px, 9999px, 85px, 0); transform: skew(0.7deg); }
    60% { clip: rect(5px, 9999px, 15px, 0); transform: skew(0.5deg); }
    65% { clip: rect(45px, 9999px, 55px, 0); transform: skew(0.2deg); }
    70% { clip: rect(85px, 9999px, 95px, 0); transform: skew(0.9deg); }
    75% { clip: rect(25px, 9999px, 35px, 0); transform: skew(0.1deg); }
    80% { clip: rect(55px, 9999px, 60px, 0); transform: skew(0.6deg); }
    85% { clip: rect(35px, 9999px, 45px, 0); transform: skew(0.4deg); }
    90% { clip: rect(75px, 9999px, 80px, 0); transform: skew(0.8deg); }
    95% { clip: rect(45px, 9999px, 55px, 0); transform: skew(0.3deg); }
    100% { clip: rect(65px, 9999px, 70px, 0); transform: skew(0.7deg); }
}

/* Terminal Status */
.terminal-status {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'VT323', monospace;
    box-shadow: 
        0 0 15px #00ff00,
        inset 0 0 15px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.terminal-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: terminal-scan 2s ease-in-out infinite;
}

@keyframes terminal-scan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.prompt {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.cursor {
    color: #00ff00;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typewriter {
    color: #ffffff;
    border-right: 2px solid #00ff00;
    animation: typing 3s steps(30) 1s forwards, cursor-blink 1s infinite;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.terminal-output {
    margin-left: 2rem;
}

.file-listing {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    gap: 1rem;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.permissions {
    color: #ffff00;
    text-shadow: 0 0 3px #ffff00;
}

.size {
    color: #ff00ff;
    text-shadow: 0 0 3px #ff00ff;
}

.date {
    color: #00ffff;
    text-shadow: 0 0 3px #00ffff;
}

.filename {
    font-weight: bold;
}

.filename.minecraft {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.filename.skyrim {
    color: #ff6600;
    text-shadow: 0 0 5px #ff6600;
}

/* Retro Game Tabs */
.retro-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.retro-game-tabs {
    display: flex;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.4rem;
    border: 2px solid #00ffff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.retro-tab {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border: 2px solid #666666;
    padding: 0.8rem 1.2rem;
    color: #cccccc;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 105px;
    border-radius: 7px;
    overflow: hidden;
}

.retro-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.retro-tab:hover::before {
    opacity: 0;
}

.retro-tab:hover {
    border-color: #00ffff;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: translateY(-1px);
}

.retro-tab.active {
    background: linear-gradient(145deg, #003366, #006699);
    border-color: #00ffff;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.7),
        inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.tab-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 3px currentColor);
}

.tab-text {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.retro-tab.active .tab-effect {
    opacity: 1;
    animation: tab-pulse 2s ease-in-out infinite;
}

@keyframes tab-pulse {
    0%, 100% { transform: scaleX(0.5); }
    50% { transform: scaleX(1); }
}

/* Retro Game Sections */
.retro-game-section {
    display: none;
}

.retro-game-section.active {
    display: block;
    animation: section-fade-in 0.5s ease-in-out;
}

@keyframes section-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Retro Warning */
.retro-warning {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 255, 0, 0.1));
    border: 2px solid #ffff00;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
    animation: warning-pulse 3s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 255, 0, 0.6); }
}

.warning-header {
    background: rgba(255, 255, 0, 0.2);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffff00;
}

.warning-icon {
    font-size: 1.2rem;
    animation: warning-blink 1.5s ease-in-out infinite;
}

@keyframes warning-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.warning-text {
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
    font-weight: bold;
}

.warning-close {
    background: none;
    border: 1px solid #ffff00;
    color: #ffff00;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.warning-close:hover {
    background: #ffff00;
    color: #000000;
    box-shadow: 0 0 10px #ffff00;
}

.warning-content {
    padding: 1rem;
    color: #ffffff;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    text-align: center;
}

.blink {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Retro Category Tabs */
.retro-category-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.retro-category-tabs-right {
    justify-content: flex-end;
}

/* Sticky Usage Disclaimer Button */
.sticky-disclaimer {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1001;
    animation: sticky-float 3s ease-in-out infinite;
}

.sticky-warning-btn {
    background: linear-gradient(145deg, #444444, #222222);
    border: 2px solid #ffff00;
    padding: 0.7rem 1rem;
    color: #ffff00;
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 0, 0.2);
}

.sticky-warning-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.sticky-warning-btn:hover::before {
    opacity: 0;
}

.sticky-warning-btn:hover {
    background: linear-gradient(145deg, #666600, #333300);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 0, 0.4);
    text-shadow: 0 0 8px #ffff00;
    transform: translateY(-1px) scale(1.02);
}

.sticky-warning-btn .btn-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 3px currentColor);
}

.sticky-warning-btn .btn-text {
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes sticky-float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-5px);
    }
}

/* Responsive positioning for mobile */
@media (max-width: 768px) {
    .sticky-disclaimer {
        bottom: 1rem;
        right: 1rem;
    }
    
    .sticky-warning-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .sticky-warning-btn .btn-text {
        font-size: 0.7rem;
    }
}

.category-tabs-wrapper {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.4rem;
    border: 1px solid #666666;
    border-radius: 4px;
}

.retro-category-tab {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid #666666;
    padding: 0.3rem 0.7rem;
    color: #cccccc;
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.retro-category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.retro-category-tab:hover::before {
    opacity: 0;
}

.retro-category-tab:hover {
    border-color: #ff00ff;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.retro-category-tab.active {
    background: linear-gradient(145deg, #660066, #330033);
    border-color: #ff00ff;
    color: #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
    box-shadow: 
        0 0 15px rgba(255, 0, 255, 0.5),
        inset 0 0 5px rgba(255, 0, 255, 0.2);
}

.category-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 2px currentColor);
}

.category-text {
    font-weight: bold;
    text-transform: uppercase;
}

.retro-warning-btn {
    background: linear-gradient(145deg, #444444, #222222);
    border: 2px solid #ffff00;
    padding: 0.5rem 1rem;
    color: #ffff00;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.retro-warning-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.retro-warning-btn:hover::before {
    opacity: 0;
}

.retro-warning-btn:hover {
    background: linear-gradient(145deg, #666600, #333300);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
    text-shadow: 0 0 8px #ffff00;
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    font-weight: bold;
    text-transform: uppercase;
}

/* Glitch Overlay Effects */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Scanning Lines Effect */
.glitch-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Random Glitch Blocks */
.glitch-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-block {
    position: absolute;
    width: 100px;
    height: 20px;
    background: rgba(255, 0, 255, 0.1);
    animation: glitch-block-anim var(--duration) var(--delay) infinite;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.glitch-block:nth-child(1) {
    top: 10%;
    left: 15%;
    background: rgba(255, 0, 255, 0.08);
}

.glitch-block:nth-child(2) {
    top: 25%;
    right: 20%;
    background: rgba(0, 255, 255, 0.06);
    width: 80px;
    height: 15px;
}

.glitch-block:nth-child(3) {
    top: 40%;
    left: 30%;
    background: rgba(255, 255, 0, 0.05);
    width: 120px;
    height: 25px;
}

.glitch-block:nth-child(4) {
    top: 60%;
    right: 10%;
    background: rgba(255, 0, 0, 0.04);
    width: 90px;
    height: 18px;
}

.glitch-block:nth-child(5) {
    top: 75%;
    left: 5%;
    background: rgba(0, 255, 0, 0.06);
    width: 110px;
    height: 22px;
}

.glitch-block:nth-child(6) {
    top: 85%;
    right: 35%;
    background: rgba(255, 128, 0, 0.05);
    width: 95px;
    height: 16px;
}

@keyframes glitch-block-anim {
    0%, 90% { 
        opacity: 0; 
        transform: translateX(0) scaleX(1);
    }
    92% { 
        opacity: 1; 
        transform: translateX(-5px) scaleX(1.1);
    }
    94% { 
        opacity: 0.8; 
        transform: translateX(3px) scaleX(0.9);
    }
    96% { 
        opacity: 1; 
        transform: translateX(-2px) scaleX(1.05);
    }
    98% { 
        opacity: 0.6; 
        transform: translateX(1px) scaleX(0.95);
    }
    100% { 
        opacity: 0; 
        transform: translateX(0) scaleX(1);
    }
}

/* Noise Effect */
.glitch-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
    animation: noise 0.2s steps(10) infinite;
    opacity: 0.3;
}

@keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, -1px); }
    40% { transform: translate(1px, 1px); }
    50% { transform: translate(-2px, 0); }
    60% { transform: translate(2px, 0); }
    70% { transform: translate(0, -2px); }
    80% { transform: translate(0, 2px); }
    90% { transform: translate(-1px, 0); }
}

/* Static Effect */
.glitch-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 98%,
        rgba(255, 255, 255, 0.02) 98%,
        rgba(255, 255, 255, 0.02) 100%
    );
    animation: static-flicker 3s ease-in-out infinite;
}

@keyframes static-flicker {
    0%, 90% { opacity: 0; }
    92% { opacity: 1; }
    94% { opacity: 0; }
    96% { opacity: 0.5; }
    98% { opacity: 1; }
    100% { opacity: 0; }
}

/* Retro Download Categories */
.retro-download-category {
    display: none;
}

.retro-download-category.active {
    display: block;
    animation: category-slide-in 0.4s ease-out;
}

@keyframes category-slide-in {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Retro Downloads Grid */
.retro-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

/* Retro Download Items */
.retro-download-item {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.9));
    border: 2px solid #333333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.retro-download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 60%);
    animation: coming-soon-bg 4s ease-in-out infinite;
}

@keyframes coming-soon-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.retro-download-item:hover::before {
    opacity: 1;
}

.retro-download-item:hover {
    border-color: #00ffff;
    box-shadow: 
        0 8px 25px rgba(0, 255, 255, 0.3),
        inset 0 1px 0 rgba(0, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.01);
}

/* Retro Download Header */
.retro-download-header {
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.1), rgba(0, 150, 150, 0.1));
    border-bottom: 2px solid #333333;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.retro-download-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px currentColor);
}

.file-name {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    font-weight: bold;
}

.header-right {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: #ffff00;
    text-shadow: 0 0 3px #ffff00;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid #ffff00;
    border-radius: 3px;
}

/* Retro Download Content */
.retro-download-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cyber Thumbnail */
.cyber-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #666666;
    transition: border-color 0.3s ease;
}

.cyber-thumbnail:hover {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.thumbnail-wrapper {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.thumbnail-wrapper:hover img {
    transform: scale(1.05);
    filter: saturate(1.3) contrast(1.1);
}

.placeholder-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: #666666;
    border: 2px dashed #444444;
}

.placeholder-text {
    text-shadow: 0 0 5px currentColor;
    animation: placeholder-pulse 2s ease-in-out infinite;
}

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

.cyber-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-wrapper:hover .cyber-overlay {
    opacity: 1;
}

.play-symbol {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
    animation: play-pulse 1.5s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.overlay-text {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    border: 1px solid #ffffff;
}

/* Retro Download Info */
.retro-download-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cyber-description {
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.4;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
}

.retro-version-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.version-chip {
    font-family: 'VT323', monospace;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.version-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.version-chip:hover::before {
    opacity: 0;
}

.version-chip.v1, .version-chip.v2 {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-color: #00ff00;
}

.version-chip.mc {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border-color: #00ffff;
}

.version-chip.fabric {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border-color: #ffff00;
}

.version-chip.forge {
    background: rgba(255, 100, 0, 0.2);
    color: #ff6400;
    border-color: #ff6400;
}

.version-chip.data {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border-color: #ff00ff;
}

.version-chip.challenge {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-color: #00ff00;
}

.version-chip.skyrim {
    background: rgba(255, 150, 0, 0.2);
    color: #ff9600;
    border-color: #ff9600;
}

.version-chip.mod {
    background: rgba(150, 0, 255, 0.2);
    color: #9600ff;
    border-color: #9600ff;
}

/* Retro Download Actions */
.retro-download-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cyber-download-btn {
    flex: 1;
    background: linear-gradient(145deg, rgba(0, 255, 0, 0.2), rgba(0, 150, 0, 0.2));
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 0.75rem 1rem;
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}



.cyber-download-btn:hover {
    background: linear-gradient(145deg, rgba(0, 255, 0, 0.4), rgba(0, 200, 0, 0.4));
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.6),
        inset 0 0 10px rgba(0, 255, 0, 0.2);
    transform: translateY(-1px);
    text-shadow: 0 0 10px #00ff00;
}

.cyber-download-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 0 10px rgba(0, 255, 0, 0.4),
        inset 0 0 5px rgba(0, 255, 0, 0.3);
}



.cyber-video-link {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.2), rgba(150, 0, 0, 0.2));
    border: 2px solid #ff0000;
    color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.cyber-video-link:hover {
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.4), rgba(200, 0, 0, 0.4));
    transform: scale(1.05);
}

.cyber-video-link.disabled {
    background: linear-gradient(145deg, rgba(100, 100, 100, 0.2), rgba(50, 50, 50, 0.2));
    border-color: #666666;
    color: #666666;
    cursor: not-allowed;
    text-shadow: none;
    pointer-events: none;
}

.video-icon {
    font-size: 1.1rem;
}

/* Coming Soon Item */
.coming-soon-item {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.9));
    border: 2px dashed #666666;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.coming-soon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 0, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 255, 255, 0.1) 50%, transparent 60%);
    animation: coming-soon-bg 4s ease-in-out infinite;
}

@keyframes coming-soon-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.coming-soon-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.ascii-soon {
    font-family: 'VT323', monospace;
    font-size: 0.6rem;
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
    margin-bottom: 2rem;
    line-height: 1;
}

.loading-bar {
    width: 200px;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffff;
    border-radius: 5px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
}

.loading-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 400% 100%;
    animation: loading-progress 3s ease-in-out infinite, loading-gradient 2s linear infinite;
    border-radius: 3px;
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 80%; }
    100% { width: 100%; }
}

@keyframes loading-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.loading-text {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
    margin-top: 1rem;
}

/* Video Loading Placeholder */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: rgba(36, 94, 220, 0.1);
    border: 2px solid var(--win-border);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    min-height: 300px;
}

.loading-placeholder p {
    font-family: 'Tahoma', sans-serif;
    color: var(--win-blue);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: center;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(36, 94, 220, 0.3);
    border-left: 4px solid var(--win-blue);
    border-radius: 50%;
    animation: spinner-rotate 1s linear infinite;
    position: relative;
}

.loading-spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    margin: -12.5px;
    border: 2px solid rgba(36, 94, 220, 0.2);
    border-right: 2px solid var(--win-blue);
    border-radius: 50%;
    animation: spinner-rotate 0.5s linear infinite reverse;
}

@keyframes spinner-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Digital Footer */
.digital-footer {
    margin-top: 4rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
    border: 2px solid #333333;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 4px
    );
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-text {
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
    margin-bottom: 1rem;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    font-family: 'VT323', monospace;
    font-size: 1rem;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid #ffff00;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .retro-main {
        padding: 1rem 0.5rem;
    }
    
    .ascii-art {
        font-size: 0.4rem;
    }
    
    .glitch {
        font-size: 1.2rem;
    }
    
    .retro-game-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .retro-tab {
        min-width: auto;
    }
    
    .retro-downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .retro-category-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-tabs-wrapper {
        justify-content: center;
    }
    
    .retro-download-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cyber-video-link {
        align-self: center;
    }
    
    .footer-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .terminal-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .file-listing {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .ascii-art {
        font-size: 0.3rem;
    }
    
    .glitch {
        font-size: 1rem;
    }
    
    .terminal-status {
        padding: 1rem;
    }
    
    .retro-download-item {
        margin: 0 0.5rem;
    }
    
    .retro-download-content {
        padding: 1rem;
    }
    
    .retro-version-info {
        justify-content: center;
    }
}

/* Retro Modal Styles */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
        justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.retro-modal {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(30, 30, 30, 0.95));
    border: 3px solid #00ffff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
    animation: modal-glitch-in 0.5s ease-out;
}

@keyframes modal-glitch-in {
    0% { 
        transform: scale(0.8) rotateX(90deg);
        opacity: 0;
        filter: hue-rotate(180deg);
    }
    50% {
        transform: scale(1.05) rotateX(0deg);
        opacity: 0.8;
        filter: hue-rotate(90deg);
    }
    100% { 
        transform: scale(1) rotateX(0deg);
        opacity: 1;
        filter: hue-rotate(0deg);
    }
}

.retro-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.05) 2px,
        rgba(0, 255, 255, 0.05) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.retro-modal-header {
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.2), rgba(0, 150, 150, 0.2));
    border-bottom: 2px solid #00ffff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.retro-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.retro-modal-header i {
        font-size: 1.5rem;
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
    animation: warning-pulse 2s ease-in-out infinite;
}

.modal-title {
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
    font-weight: bold;
    text-transform: uppercase;
}

.retro-modal-body {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.modal-intro {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.modal-list {
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-left: 1rem;
}

.modal-list li {
    margin: 1rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #ffffff;
}

.modal-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.sub-list {
    margin: 0.5rem 0 0 1rem;
    font-size: 1rem;
    color: #ffffff;
}

.sub-list li {
    color: #ffffff;
}

.sub-list li::before {
    content: '→';
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

.modal-list a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 5px #00ffff;
    transition: all 0.3s ease;
}

.modal-list a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00ffff;
    text-decoration: underline;
}

.retro-modal-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 2px solid #333333;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.retro-button {
    background: linear-gradient(145deg, rgba(0, 255, 0, 0.2), rgba(0, 150, 0, 0.2));
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 0.75rem 2rem;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-shadow: 0 0 5px #00ff00;
}

.retro-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.5), transparent);
    transition: left 0.6s ease;
}

.retro-button:hover::before {
    opacity: 0;
}

.retro-button:hover {
    background: linear-gradient(145deg, rgba(0, 255, 0, 0.4), rgba(0, 200, 0, 0.4));
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.6),
        inset 0 0 10px rgba(0, 255, 0, 0.2);
    transform: translateY(-1px) scale(1.02);
    text-shadow: 0 0 10px #00ff00;
}

.retro-button:active {
    transform: translateY(0) scale(1);
    box-shadow: 
        0 0 10px rgba(0, 255, 0, 0.4),
        inset 0 0 5px rgba(0, 255, 0, 0.3);
}

/* Responsive modal design */
@media (max-width: 768px) {
    .retro-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .retro-modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .retro-modal-body {
        padding: 1.5rem 1rem;
    }
    
    .modal-intro {
        font-size: 1rem;
    }
    
    .modal-list {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    
    .retro-button {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .retro-modal {
        width: 98%;
        margin: 0.5rem;
    }
    
    .retro-modal-header {
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .retro-modal-body {
        padding: 1rem 0.8rem;
    }
    
    .modal-list {
        margin-left: 0;
    }
    
    .modal-list li {
        padding-left: 1rem;
    }
    
    .sub-list {
        margin-left: 0.5rem;
    }
} 

/* Dropdown styles for nav */
.nav-links .dropdown {
    position: relative;
}
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(24, 28, 47, 0.97);
    color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 1.5px 0 rgba(0,255,255,0.08);
    border-radius: 0 0 14px 14px;
    z-index: 999999 !important;
    padding: 0.5em 0;
    border: 1.5px solid rgba(0,255,255,0.18);
    backdrop-filter: blur(12px);
    margin-top: 0.2em;
    white-space: nowrap;
    width: max-content;
}
.nav-links .dropdown:hover > .dropdown-menu,
.nav-links .dropdown:focus-within > .dropdown-menu {
    display: block;
}
.nav-links .dropdown-menu li {
    list-style: none;
}
.nav-links .dropdown-menu a {
    display: block;
    padding: 0.7em 2em 0.7em 1.5em;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 3px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nav-links .dropdown-menu a:hover {
    background: rgba(0,255,255,0.10);
    color: #00FFFF;
    border-left: 3px solid #00FFFF;
}

/* Ensure nav links are horizontal and not stacked */
.nav-links {
    display: flex;
    gap: 1.5em;
    align-items: center;
}

.nav-links > li {
    position: relative;
    display: inline-block;
}

/* Hide dropdown arrow for now */
.dropdown-toggle::after {
    display: none;
}