:root {
    --tu-navy: #043865;
    --tu-gold: #ddb774;
    --tu-light-gold: #f4e8d8;
    --tu-dark-navy: #021a33;
    --white: #ffffff;
    --gray: #f8f9fa;
    --text-dark: #043865;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --success: #28a745;
    --warning: #ffc107;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--tu-navy);
    overflow-x: hidden;
    padding-top: 64px;
}

/* Navigation - matching main page style */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--tu-navy);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--tu-gold);
}

.cta-button {
    background: var(--tu-gold) !important;
    color: var(--tu-navy) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Hero Section - TU Navy/Gold gradient */
.hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--tu-navy) 0%, var(--tu-dark-navy) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neural network animation overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, var(--tu-gold) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, var(--tu-gold) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, var(--tu-gold) 0%, transparent 50%);
    opacity: 0.1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--tu-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-details span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: inline-block;
    background: var(--tu-gold);
    color: var(--tu-navy);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--tu-gold);
}

.hero-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(221, 183, 116, 0.4);
}

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

/* Section Headers - consistent with main page */
section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--tu-navy);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--tu-gold);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

/* Event Banner Image */
.event-banner {
    margin: 40px auto;
    max-width: 100%;
    text-align: center;
    padding: 0 20px;
}

.event-banner-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--tu-gold);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.event-banner-img:hover {
    transform: scale(1.02);
}

/* Mobile responsiveness for event banner */
@media (max-width: 768px) {
    .event-banner {
        margin: 30px auto;
        padding: 0 10px;
    }
    
    .event-banner-img {
        border-radius: 10px;
        border-width: 2px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    
    .event-banner-img:hover {
        transform: none; /* Disable hover effect on mobile */
    }
}

@media (max-width: 480px) {
    .event-banner {
        margin: 20px auto;
        padding: 0 5px;
    }
    
    .event-banner-img {
        border-radius: 8px;
    }
}

.lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature {
    background: var(--white);
    border: 2px solid var(--tu-gold);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--tu-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 56, 101, 0.15);
}

.feature:hover::before {
    opacity: 0.05;
}

.feature h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Funding Info */
.funding-info {
    background: linear-gradient(135deg, var(--tu-light-gold), var(--white));
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid var(--tu-gold);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.funding-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 56, 101, 0.15);
}

.funding-info h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.funding-info p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Theme Section */
.theme-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.theme-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.theme-card:hover {
    transform: translateY(-5px);
    border-color: var(--tu-gold);
}

.theme-card.highlight {
    background: linear-gradient(135deg, var(--tu-light-gold), var(--white));
    border: 2px solid var(--tu-gold);
}

.theme-card h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.theme-card ul {
    list-style-type: none;
    padding-left: 0;
}

.theme-card li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

.theme-extras {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--tu-gold);
}

.theme-extras h4 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
}

.theme-extras ul {
    list-style-position: inside;
    color: var(--text-dark);
}

/* Clubs Section */
.clubs-section {
    padding: 100px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.club-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--gray);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.club-card h3 {
    color: var(--tu-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.club-card .role {
    color: var(--tu-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.club-card.confirmed {
    border-color: var(--success);
    border-top: 4px solid var(--success);
}

.club-card.returning {
    border-color: var(--tu-gold);
    border-top: 4px solid var(--tu-gold);
}

.club-card.invited {
    border-color: var(--warning);
    border-top: 4px solid var(--warning);
    background: linear-gradient(to bottom, rgba(221, 183, 116, 0.1), var(--white));
}

.clubs-to-invite {
    background: var(--tu-light-gold);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.clubs-to-invite h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.clubs-to-invite ul {
    list-style-position: inside;
    color: var(--text-dark);
}

.club-signup {
    text-align: center;
    background: linear-gradient(135deg, var(--tu-gold), var(--tu-navy));
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
}

.club-signup h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.club-signup p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.signup-button {
    display: inline-block;
    background: var(--white);
    color: var(--tu-navy);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Collaborate Section */
.collaborate-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.collab-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 60px;
}

.requirement {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--tu-gold);
}

.requirement h3 {
    color: var(--tu-navy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.requirement ul {
    list-style-position: inside;
}

.requirement li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.activity-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.activity-type {
    background: var(--tu-light-gold);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--tu-gold);
}

.activity-type h4 {
    color: var(--tu-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.example {
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.testimonials {
    margin-top: 2rem;
}

.testimonials h2 {
    color: var(--tu-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(4, 56, 101, 0.05), rgba(221, 183, 116, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--tu-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--tu-navy);
    text-align: right;
    font-size: 0.9rem;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--tu-gold);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--tu-gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--tu-gold);
}

.timeline-item.highlight::before {
    width: 20px;
    height: 20px;
    background: var(--tu-navy);
    box-shadow: 0 0 0 4px var(--tu-gold);
}

.timeline-date {
    flex: 1;
    text-align: right;
    padding-right: 2rem;
    font-weight: bold;
    color: var(--tu-gold);
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
}

.timeline-content h3 {
    color: var(--tu-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Event Schedule Styles */
.event-schedule {
    list-style: none;
    padding: 0;
}

.event-schedule > li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(221, 183, 116, 0.2);
    color: var(--text-dark);
}

.event-schedule > li:last-child {
    border-bottom: none;
}

.event-schedule ul {
    list-style-position: inside;
    margin-left: 2rem;
    margin-top: 0.5rem;
    color: var(--text-light);
}

/* Prizes Section */
.prizes-section {
    background: linear-gradient(135deg, var(--tu-light-gold), var(--white));
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 2px solid var(--tu-gold);
}

.prizes-section h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.prizes-section ul {
    list-style: none;
}

.prizes-section li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Takeaways Section */
.takeaways-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.takeaway-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 60px;
    margin-bottom: 2rem;
}

.takeaway-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--tu-gold);
    transition: transform 0.3s;
}

.takeaway-card:hover {
    transform: translateY(-5px);
}

.takeaway-card h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.takeaway-card ul {
    list-style-position: inside;
}

.takeaway-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.sga-support {
    background: linear-gradient(135deg, rgba(4, 56, 101, 0.1), rgba(4, 56, 101, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--tu-navy);
    max-width: 800px;
    margin: 2rem auto 0;
}

.sga-support h3 {
    color: var(--tu-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.sga-support ul {
    list-style-position: inside;
    color: var(--text-dark);
}

/* RSVP Section */
.rsvp-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tu-navy), var(--tu-dark-navy));
    color: var(--white);
    position: relative;
}

.rsvp-section h2 {
    color: var(--white);
}

.rsvp-section h2::after {
    background: var(--tu-gold);
}

.rsvp-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.form-preview {
    text-align: center;
    color: var(--text-dark);
}

.form-preview p {
    margin-bottom: 1.5rem;
    color: var(--tu-navy);
}

.rsvp-submit {
    background: var(--tu-gold);
    color: var(--tu-navy);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--tu-gold);
}

.rsvp-submit:hover {
    background: var(--tu-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: var(--tu-gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--tu-dark-navy);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content p:last-child {
    color: var(--tu-gold);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .event-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-date {
        display: none;
    }
    
    .timeline-content {
        padding-left: 3rem;
    }
    
    .collab-requirements {
        grid-template-columns: 1fr;
    }
    
    .takeaway-cards {
        grid-template-columns: 1fr;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(4, 56, 101, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-nav-links {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
}

.mobile-nav-links li {
    text-align: center;
    border-bottom: 1px solid rgba(221, 183, 116, 0.2);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-link,
.mobile-nav-cta {
    display: block;
    padding: 1rem 2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: rgba(221, 183, 116, 0.1);
    color: var(--tu-gold);
}

.mobile-nav-cta {
    background: var(--tu-gold);
    color: var(--tu-navy);
    margin: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

.mobile-nav-cta:hover {
    background: var(--white);
}

/* Scary Ultra Jeopardy Styling */
.ultra-jeopardy {
    font-family: 'Creepster', 'Chiller', 'Nosifer', serif !important;
    font-weight: bold;
    color: #8B0000 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 
                 0 0 10px rgba(139, 0, 0, 0.6),
                 0 0 20px rgba(139, 0, 0, 0.4);
    letter-spacing: 1px;
    transform: rotate(-1deg);
    display: inline-block;
    position: relative;
}

.ultra-jeopardy::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    z-index: -1;
    border-radius: 3px;
}

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

    .mobile-menu-btn {
        display: flex;
    }
}