/* LANKHAOS - LAN Party Association Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Color Scheme - Gaming/Tech Theme */
:root {
    --primary-color: #00ff88;
    --secondary-color: #ff0066;
    --accent-color: #00ccff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --border-color: #333333;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(0, 255, 136, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--dark-bg) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Cards */
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--primary-color);
    margin-top: 4rem;
}

footer p {
    color: var(--gray-text);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.15) !important;
}

.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

/* FAQ Links Styling */
.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.1) 0%, rgba(0, 204, 255, 0.05) 100%);
    border: 1px solid rgba(0, 204, 255, 0.2);
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateY(0);
}

.faq-answer a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.faq-answer a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 255, 0.1) 100%);
    border-color: rgba(0, 255, 136, 0.4);
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.2);
}

.faq-answer a:hover::before {
    width: 100%;
}

.faq-answer a:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    }
}

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

/* Games Page Styles */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
}

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

.game-card:hover::after {
    opacity: 0.3;
}

.game-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.game-info {
    flex: 1;
    margin-bottom: 1.5rem;
}

.game-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
    line-height: 1.2;
}

.game-genre {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.game-players {
    background: linear-gradient(45deg, var(--secondary-color), #ff3399);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(255, 0, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.game-card:hover .game-players {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.5);
}

/* Game Modal Styles */
.game-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.game-modal-content {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-modal-close {
    color: var(--gray-text);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.game-modal-close:hover {
    color: var(--primary-color);
}

.game-modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.game-modal-title-section {
    text-align: center;
}

.game-modal-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.game-modal-genre {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
}

.game-modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-detail-item {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.game-detail-label {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.game-modal-description {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Join Discord Page Styles */
.join-simple-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    text-align: center;
}

.discord-actions {
    display: flex;
    justify-content: center;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.discord-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: left 0.5s ease;
}

.discord-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn svg {
    width: 24px;
    height: 24px;
}



.qr-code-container {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.qr-code-container:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
}

.qr-code-container h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.qr-code {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.qr-instructions {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
}



/* About Us Page Styles */
.about-hero {
    padding: 1rem 0 2rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
}

.about-hero-image {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
    font-weight: 700;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-intro p {
    color: var(--gray-text);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 600;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.about-features li {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.about-features li::before {
    content: '▶';
    color: var(--accent-color);
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
}

/* About Features Links Styling */
.about-features a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-shadow: 0 1px 4px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateY(0);
}

.about-features a::before {
    content: '📍';
    margin-right: 0.3rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-features a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.about-features a:hover {
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-color: rgba(0, 204, 255, 0.4);
    text-shadow: 0 2px 8px rgba(0, 204, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.about-features a:hover::after {
    width: 100%;
}

.about-features a:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-description p strong {
    color: var(--primary-color);
    text-shadow: 0 1px 4px rgba(0, 255, 136, 0.3);
}

.about-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-contact:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
}

.about-contact p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-contact p:last-child {
    margin-bottom: 0;
}

.about-contact h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.facebook-btn,
.discord-btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.facebook-btn::before,
.discord-btn-about::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: left 0.5s ease;
}

.facebook-btn:hover::before,
.discord-btn-about:hover::before {
    left: 100%;
}

.facebook-btn {
    background: linear-gradient(45deg, #1877F2, #42A5F5);
    color: #ffffff;
}

.facebook-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-btn-about {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: #ffffff;
}

.discord-btn-about:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.facebook-btn svg,
.discord-btn-about svg {
    width: 24px;
    height: 24px;
}

/* Programme Page Styles */
.programme-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programme-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.current-time {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 300px;
    backdrop-filter: blur(10px);
}

.time-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

#current-time-display {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
}

.legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.past {
    background: var(--gray-text);
    opacity: 0.6;
}

.legend-dot.current {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: pulse 2s infinite;
}

.legend-dot.upcoming {
    background: var(--accent-color);
    box-shadow: 0 0 8px rgba(0, 204, 255, 0.3);
}

.schedule-container {
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-day {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.day-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.day-header h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
}

.day-date {
    color: var(--gray-text);
    font-size: 1rem;
    text-transform: capitalize;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.event-item.past {
    opacity: 0.6;
    filter: grayscale(0.3);
}

.event-item.past::before {
    background: var(--gray-text);
}

.event-item.current {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

.event-item.current::before {
    background: var(--primary-color);
    width: 6px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.event-item.upcoming::before {
    background: var(--accent-color);
}

.event-time {
    min-width: 140px;
    text-align: center;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-range {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 204, 255, 0.3);
    white-space: nowrap;
}

.event-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.event-item.past .event-status-indicator {
    background: var(--gray-text);
    opacity: 0.6;
}

.event-item.current .event-status-indicator {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: pulse 1.5s infinite;
}

.event-content {
    flex: 1;
}

.event-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.event-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.event-name {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 255, 136, 0.3);
    flex: 1;
}

.event-item.past .event-name {
    color: var(--gray-text);
}

.event-item.current .event-name {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(0, 255, 136, 0.4);
}

.event-type {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-item.past .event-type {
    background: var(--gray-text);
    opacity: 0.6;
}

.event-description {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.event-item.current .event-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-text);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 204, 255, 0.2);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.error-message {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1) 0%, rgba(255, 0, 102, 0.05) 100%);
    border: 2px solid rgba(255, 0, 102, 0.3);
    border-radius: 20px;
    color: var(--gray-text);
}

.error-message h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Animations */
@keyframes glow {
    from {
        box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    }
    to {
        box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .hero h2 {
        font-size: 1.3rem !important;
    }

    .container {
        padding: 0 1rem;
    }

    nav {
        padding: 0 1rem;
    }

    /* Homepage specific mobile adjustments */
    .hero-content div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .hero-content div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem !important;
    }

    .hero h2 {
        font-size: 1.1rem !important;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    /* Homepage mobile adjustments */
    .hero-content div[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }

    .hero-content div[style*="gap: 2rem"] {
        gap: 1rem !important;
    }

    .btn {
        font-size: 1.1rem !important;
        padding: 1.2rem 2rem !important;
    }

    /* Games page mobile adjustments */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card {
        padding: 1.5rem;
    }

    .game-info h3 {
        font-size: 1.3rem;
    }

    .game-genre {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .game-players {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .game-modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .game-modal-title {
        font-size: 2rem;
    }

    /* FAQ Links Mobile */
    .faq-answer a {
        padding: 0.3rem 0.5rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .game-modal-genre {
        font-size: 1rem;
    }

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

    /* Join Discord Page Mobile */
    .join-simple-content {
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .discord-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .qr-code-container {
        padding: 2rem;
    }

    .qr-code-container h3 {
        font-size: 1.3rem;
    }

    .qr-image {
        width: 150px;
        height: 150px;
    }

    /* About Us Page Mobile */
    .about-hero {
        padding: 1rem 0;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-intro p {
        font-size: 1.1rem;
    }

    .about-features li {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .about-features a {
        padding: 0.2rem 0.4rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .about-description p {
        font-size: 1rem;
    }

    .about-contact {
        padding: 1.5rem;
    }

    .about-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .facebook-btn,
    .discord-btn-about {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Programme Page Mobile */
    .programme-header h1 {
        font-size: 2rem;
    }

    .current-time {
        padding: 0.8rem 1.5rem;
        margin: 1.5rem auto;
    }

    #current-time-display {
        font-size: 1.5rem;
    }

    .legend {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .schedule-day {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .day-header h2 {
        font-size: 1.6rem;
    }

    .event-item {
        flex-direction: column;
        padding: 1.2rem;
        gap: 1rem;
    }

    .event-time {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
        align-items: flex-start;
    }

    .time-range {
        font-size: 1rem;
    }

    .event-header {
        gap: 0.8rem;
    }

    .event-name {
        font-size: 1.2rem;
    }

    .event-icon {
        font-size: 1.3rem;
        min-width: 1.8rem;
    }

    .event-type {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* ===== COUNTDOWN TIMER STYLES ===== */
.countdown-container {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    letter-spacing: 1px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: pulse 2s infinite;
}

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

/* Event Status Styles */
.event-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.status-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.status-message {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.event-in-progress .status-message {
    color: var(--primary-color);
}

.event-finished .status-message {
    color: var(--secondary-color);
}

.event-upcoming .status-message {
    color: var(--accent-color);
}

/* Countdown responsive styles */
@media (max-width: 768px) {
    .countdown-container {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }

    .countdown-header h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .countdown-display {
        gap: 0.5rem;
    }

    .countdown-unit {
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .countdown-separator {
        font-size: 1.8rem;
    }

    .status-icon {
        font-size: 3rem;
    }

    .status-message {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .countdown-display {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-unit {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .countdown-number {
        margin-bottom: 0;
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }
}
