/* Global Styles */
:root {
    --primary-color: #2f00ff;
    --primary-hover: #00b0e6;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #6c757d;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: var(--darker-bg);
    perspective: 1000px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll;
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Animated Text Effects */
.hero-title {
    text-shadow: 0 0 10px rgba(0, 17, 255, 0.5);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineGlow 2s infinite;
}

@keyframes lineGlow {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

.hero-subtitle {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

/* Hero Buttons */
.hero-buttons {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
}

.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
    background: rgba(0, 47, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    margin: 5px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 17, 255, 0.4);
    background: var(--primary-color);
    color: white !important;
}

.hero-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 26, 255, 0.3);
}

.hero-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-buttons .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
}

/* Floating Elements Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-element {
    animation: float 3s ease-in-out infinite;
}

/* Text Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px rgba(0, 38, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 17, 255, 0.8); }
    100% { text-shadow: 0 0 10px rgba(0, 89, 255, 0.5); }
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link.active {
    opacity: 1;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Glow Effects */
.btn-danger {
    box-shadow: 0 0 10px rgba(17, 0, 255, 0.3);
}

.btn-danger:hover {
    box-shadow: 0 0 20px rgba(0, 68, 255, 0.5);
}

/* Custom Orange Button Styles */
.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-warning:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

.text-warning {
    color: var(--primary-color) !important;
}

.border-warning {
    border-color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section h1,
.hero-section p {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-section h1 { animation-delay: 0.3s; }
.hero-section p { animation-delay: 0.6s; }

/* Remove conflicting animation from buttons since they have their own */
.hero-section .btn {
    opacity: 1;
    animation: none;
}

/* Server Status Cards */
.border-danger {
    border-width: 2px !important;
}

/* Social Icons */
.social-icons a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Server Status Badge */
.server-status {
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0, 195, 255, 0.1);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.server-status i {
    animation: pulse 2s infinite;
    margin-right: 8px;
    color: #28a745;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, var(--darker-bg), #000);
    border-top: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color),
        var(--primary-color),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-title:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-social a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-social a:hover::before {
    transform: scale(1.2);
    opacity: 0.2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-bottom p:hover {
    opacity: 1;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Navbar Brand Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    padding: 0 5px;
}

.brand-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-text::after {
    transform: scaleX(1);
}

/* Download Launcher Dropdown */
.dropdown-menu-dark {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--primary-color);
    padding: 0.5rem;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.dropdown-menu-dark .dropdown-item {
    color: var(--text-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dropdown-menu-dark .dropdown-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu-dark .dropdown-item i {
    font-size: 1.2em;
    width: 25px;
    text-align: center;
}

/* Adjust the dropdown toggle arrow color */
.hero-btn.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: middle;
    border-top-color: currentColor;
}

/* Add spacing between dropdown button and Discord button */
.hero-buttons .dropdown {
    margin-right: 10px;
}

/* About Section Styles */
.about-section {
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color),
        var(--primary-color),
        transparent
    );
    animation: shimmer 3s infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 140, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.about-header {
    position: relative;
    margin-bottom: 6rem;
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.about-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 60, 255, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 26, 255, 0.2),
        transparent
    );
    transition: 0.7s;
}

.about-card:hover::before {
    left: 100%;
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.3));
}

.about-card:hover .about-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.5));
}

.about-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Stats Cards */
.about-stats {
    text-align: center;
    margin-top: 5rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 195, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 153, 255, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 4, 255, 0.1),
        transparent
    );
    transition: 0.7s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item::after {
    display: none; /* Remove the vertical divider */
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 15px rgba(0, 81, 255, 0.3);
    position: relative;
    z-index: 1;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.3s ease;
}

.stat-item:hover .stat-number::after {
    width: 60px;
}

.stat-label {
    color: var(--text-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 2rem;
        min-width: 200px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

.about-header .lead {
    color: #e0e0e0;
    font-size: 1.25rem;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Add smooth scrolling to the whole page */
html {
    scroll-padding-top: 80px; /* Height of your navbar */
    scroll-behavior: smooth;
}

/* Server Status Section Styles */
.server-status-section {
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

.server-status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grid-pattern.png') repeat;
    opacity: 0.05;
}

.server-monitor-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 47, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.server-monitor-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 119, 255, 0.2);
    transform: translateY(-5px);
}

.server-monitor-header {
    background: rgba(255, 140, 0, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(47, 0, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.server-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.server-name i {
    margin-right: 10px;
    animation: serverPulse 2s infinite;
}

.server-ip {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(17, 0, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-ip:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--primary-color);
}

.copy-ip {
    color: #fff;
    font-family: monospace;
    font-size: 1.1rem;
}

.server-monitor-body {
    padding: 2rem;
}

.status-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 17, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    will-change: transform;
}

.status-card:hover {
    background: rgba(0, 140, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 4, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.status-card:hover .status-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.status-info {
    flex: 1;
}

.status-label {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.status-value {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.join-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 81, 255, 0.3);
    color: #fff;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn i {
    margin-right: 8px;
}

@keyframes serverPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .server-monitor-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .status-card {
        flex-direction: column;
        text-align: center;
    }
    
    .status-icon {
        margin: 0 auto;
    }
}

/* Server Status Animations */
@keyframes statusUpdated {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(0, 162, 255, 0);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 17, 255, 0.3);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(255, 140, 0, 0);
    }
}

@keyframes statusError {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

.status-updated {
    animation: statusUpdated 1s ease;
}

.status-error {
    animation: statusError 0.5s ease;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Media Tabs Styles */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-tab {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 17, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.media-tab i {
    margin-right: 0.5rem;
}

.media-tab:hover {
    border-color: var(--primary-color);
    background: rgba(0, 26, 255, 0.1);
}

.media-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 68, 255, 0.3);
}

/* Media Content Styles */
.media-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.media-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Media Card Styles */
.media-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(17, 0, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 68, 255, 0.2);
}

.media-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-image img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.media-card:hover .media-overlay i {
    transform: scale(1);
}

.media-info {
    padding: 1.5rem;
}

.media-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.media-info p {
    color: #aaa;
    margin: 0;
    font-size: 0.9rem;
}

/* Stream Card Specific Styles */
.stream-card .live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff0000;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.streamer-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 0.75rem;
}

.streamer-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.streamer-name {
    color: #fff;
    font-size: 0.9rem;
}

.viewer-count {
    color: #aaa;
    font-size: 0.8rem;
    margin-left: auto;
}

.viewer-count i {
    margin-right: 0.25rem;
} 