/* NukeFire MUD Website Styles - Immersive Design */

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

:root {
    --primary-color: #e63946; /* Strong red for wasteland/blood */
    --secondary-color: #2a9d8f; /* Teal for tech/metal */
    --tertiary-color: #f4a261; /* Warm yellow-orange for radiation */
    --dark-bg: #1d3557; /* Deep blue for night sky */
    --darker-bg: #0a1d35; /* Darker blue for depth */
    --medium-bg: #14213d; /* Dark blue for interface */
    --light-bg: #2b3e50; /* Medium interface */
    --text-light: #f1faee;
    --text-med: #c9ada7;
    --text-dark: #a9a9a9;
    --border-color: #457b9d;
    --accent-color: #fcbf49; /* Bright yellow for highlights */
    --glass-bg: rgba(20, 29, 61, 0.7);
    --terminal-green: #4caf50;
    --warning-red: #ef4444;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(252, 191, 73, 0.05) 0%, transparent 50%);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(20, 29, 61, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 29, 61, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    pointer-events: none;
}

/* Header and Navigation */
.header {
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(252, 191, 73, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 2.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.8);
    font-weight: 700;
    position: relative;
    font-family: 'Courier New', monospace;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

.logo-link:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--primary-color), transparent);
    animation: glow-line 2s infinite alternate;
}

@keyframes glow-line {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(252, 191, 73, 0.4);
    background: rgba(10, 29, 53, 0.7);
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    font-family: 'Courier New', monospace;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    isolation: isolate;
    min-height: 80vh;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.15) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.2) sepia(0.1);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.6;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 25px rgba(230, 57, 70, 0.8);
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    font-family: 'Courier New', monospace;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-med);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.hero-points {
    list-style: none;
    margin: 0 auto 2.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 1rem;
    background: rgba(10, 29, 53, 0.45);
    border: 1px solid rgba(252, 191, 73, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    text-align: left;
}

.hero-points li {
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.hero-points li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    opacity: 0.8;
}

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

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

.meta-card {
    background: rgba(13, 26, 44, 0.8);
    border: 1px solid rgba(69, 123, 157, 0.4);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.meta-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-med);
}

.meta-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0.3rem 0 0.5rem;
}

.meta-card p {
    margin: 0;
    color: var(--text-med);
    font-size: 0.95rem;
}

.status-online {
    color: var(--terminal-green);
    text-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.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: all 0.6s ease;
}

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

.btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

.btn-primary {
    background: var(--glass-bg);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: white;
    background: rgba(230, 57, 70, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    color: white;
    background: rgba(252, 191, 73, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 191, 73, 0.3);
}

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

section {
    background: 
        radial-gradient(circle at 20% 80%, rgba(42, 157, 143, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
        linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    border-bottom: 1px solid rgba(252, 191, 73, 0.2);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

section:nth-child(even) {
    background: 
        radial-gradient(circle at 70% 30%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(42, 157, 143, 0.05) 0%, transparent 40%),
        linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
}

h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 0 0 15px rgba(252, 191, 73, 0.3);
    font-family: 'Courier New', monospace;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.text-content {
    position: relative;
    z-index: 2;
}

.text-content p {
    margin-bottom: 2rem;
    color: var(--text-med);
    font-size: 1.2rem;
    line-height: 1.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
    position: relative;
}

.text-content p::before {
    content: '> ';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.image-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(45deg, var(--medium-bg), var(--light-bg));
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.feature-image:hover {
    transform: rotate(0deg);
}

.feature-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 80%);
    animation: rotate 20s linear infinite;
}

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

/* Classes Section */
.classes {
    padding: 0;
    position: relative;
}

.classes p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-med);
    font-size: 1.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.class-card {
    background: var(--glass-bg);
    border: 2px solid rgba(252, 191, 73, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.class-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.4);
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.class-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.class-card p {
    color: var(--text-med);
    line-height: 1.7;
    font-family: 'Courier New', monospace;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
    border-color: var(--primary-color);
    background: rgba(20, 29, 61, 0.85);
}

.prestige-section {
    grid-column: 1 / -1;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(42, 157, 143, 0.4);
    position: relative;
}

.prestige-section h3 {
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    text-shadow: 0 0 10px rgba(42, 157, 143, 0.4);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(42, 157, 143, 0.4);
    font-family: 'Courier New', monospace;
}

.prestige-card {
    background: var(--glass-bg);
    border: 2px solid rgba(42, 157, 143, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
}

.prestige-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.prestige-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(42, 157, 143, 0.4);
    font-family: 'Courier New', monospace;
}

.prestige-card p {
    color: var(--text-med);
    font-style: italic;
    line-height: 1.7;
    font-family: 'Courier New', monospace;
}

.prestige-card:hover {
    background: rgba(20, 29, 61, 0.85);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(252, 191, 73, 0.3);
}

/* Connect Section */
.connect {
    padding: 0;
    position: relative;
}

.connect p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-med);
    font-size: 1.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

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

.connection-method {
    background: var(--glass-bg);
    border: 2px solid rgba(252, 191, 73, 0.3);
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
}

.connection-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.connection-method h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.4);
    position: relative;
    font-family: 'Courier New', monospace;
}

.connection-method h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.connection-method p {
    color: var(--text-med);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Courier New', monospace;
}

.connection-details {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    background: rgba(10, 29, 61, 0.7);
    padding: 1.2rem;
    border-radius: 10px;
    margin: 1.8rem 0;
    border: 2px solid var(--border-color);
    color: var(--terminal-green);
    letter-spacing: 1px;
    word-break: break-all;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.connection-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    transition: all 0.8s ease;
}

.connection-details:hover::before {
    left: 100%;
}

.connection-details:hover {
    background: rgba(10, 35, 70, 0.8);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.client-instructions {
    text-align: left;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(252, 191, 73, 0.3);
}

.client-instructions h4 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-family: 'Courier New', monospace;
}

.client-instructions ol {
    padding-left: 2rem;
}

.client-instructions li {
    margin-bottom: 1.2rem;
    color: var(--text-med);
    line-height: 1.7;
    font-family: 'Courier New', monospace;
}

.client-instructions li::marker {
    color: var(--primary-color);
}

.connection-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(230, 57, 70, 0.4);
    border-color: var(--primary-color);
    background: rgba(20, 29, 61, 0.85);
}

/* Development Section */
.development {
    padding: 0;
    position: relative;
}

.development p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-med);
    font-size: 1.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.dev-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.dev-content .text-content {
    position: relative;
    z-index: 2;
}

.dev-content .text-content p {
    margin-bottom: 2rem;
    color: var(--text-med);
    font-size: 1.2rem;
    line-height: 1.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
    position: relative;
}

.dev-content .text-content p::before {
    content: '> ';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.stats {
    display: grid;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--glass-bg);
    border: 2px solid rgba(42, 157, 143, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
    font-family: 'Courier New', monospace;
}

.stat-card p {
    color: var(--text-med);
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Courier New', monospace;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(42, 157, 143, 0.3);
    border-color: var(--primary-color);
    background: rgba(20, 29, 61, 0.85);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 3rem;
    text-align: center;
    border-top: 2px solid rgba(252, 191, 73, 0.3);
    position: relative;
    margin-top: 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.footer p {
    margin-bottom: 2rem;
    color: var(--text-med);
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-med);
    text-decoration: none;
    transition: color 0.5s ease;
    position: relative;
    padding: 0.4rem 0;
    font-family: 'Courier New', monospace;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.5s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Terminal Effect */
.terminal-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    background: linear-gradient(rgba(18, 16, 16, 0.15) 50%, rgba(0, 0, 0, 0.3) 50%);
    background-size: 100% 4px;
    opacity: 0.25;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.2rem;
        background: rgba(10, 29, 53, 0.8);
        border: 1px solid rgba(252, 191, 73, 0.25);
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0.5rem;
    }

    .about-content,
    .dev-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-points {
        font-size: 0.95rem;
    }

    .hero-meta {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }

    .connection-info {
        grid-template-columns: 1fr;
    }

    .about-content,
    .dev-content {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 4rem 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .connection-info {
        gap: 2rem;
    }
}
