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

:root {
    /* Cyber Glass Theme Colors */
    --primary-cyan: #00ffff;
    --secondary-cyan: #0099cc;
    --neon-green: #00ff41;
    --electric-blue: #0080ff;
    --cyber-purple: #8a2be2;
    --matrix-green: #00ff00;
    --warning-orange: #00ccff; /* Changed from orange to cyan variant */
    --danger-red: #ff073a; /* Keep but don't use in animations */
    
    /* Glass and Background */
    --glass-bg: rgba(0, 20, 40, 0.1);
    --glass-border: rgba(0, 255, 255, 0.2);
    --dark-glass: rgba(0, 10, 20, 0.3);
    --darker-glass: rgba(0, 5, 15, 0.5);
    --backdrop-dark: #000510;
    --backdrop-darker: #000208;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3e5fc;
    --text-accent: #00ffff;
    --text-muted: #81c784;
    
    /* Effects */
    --glow-primary: #00ffff;
    --glow-secondary: #00ff41;
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-intense: 0 0 40px rgba(0, 255, 255, 0.5);
    
    /* Fonts */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
    --font-mono: 'Courier New', monospace;
}

body {
    font-family: var(--font-secondary);
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #000208 0%, #000510 25%, #001020 50%, #000510 75%, #000208 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Cyber Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Primary grid lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(0, 255, 255, 0.1) 50px,
            transparent 51px,
            transparent 99px,
            rgba(0, 255, 65, 0.08) 100px,
            transparent 101px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(0, 255, 255, 0.1) 50px,
            transparent 51px,
            transparent 99px,
            rgba(0, 255, 65, 0.08) 100px,
            transparent 101px
        ),
        /* Circuit nodes */
        radial-gradient(
            circle at 50px 50px,
            rgba(0, 255, 255, 0.3) 1px,
            rgba(0, 255, 255, 0.1) 2px,
            transparent 3px
        ),
        /* Data flow lines */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 24px,
            rgba(0, 255, 65, 0.05) 25px,
            transparent 26px
        );
    background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;
    animation: gridPulse 4s ease-in-out infinite, gridFlow 20s linear infinite;
    z-index: -3;
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.3;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.6;
        filter: brightness(1.2);
    }
}

@keyframes gridFlow {
    0% { transform: translate(0, 0); }
    25% { transform: translate(5px, 5px); }
    50% { transform: translate(0, 10px); }
    75% { transform: translate(-5px, 5px); }
    100% { transform: translate(0, 0); }
}

/* Floating Data Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--primary-cyan),
        0 0 20px rgba(0, 255, 255, 0.5);
    animation: dataFloat 20s infinite linear;
}

.particle:nth-child(odd) {
    background: var(--neon-green);
    box-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px rgba(0, 255, 65, 0.5);
}

.particle:nth-child(3n) {
    background: var(--electric-blue);
    box-shadow: 
        0 0 10px var(--electric-blue),
        0 0 20px rgba(0, 128, 255, 0.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 22s; }
.particle:nth-child(3) { left: 40%; animation-delay: 6s; animation-duration: 18s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 25s; }
.particle:nth-child(5) { left: 70%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(6) { left: 85%; animation-delay: 7s; animation-duration: 16s; }
.particle:nth-child(7) { left: 15%; animation-delay: 9s; animation-duration: 24s; }
.particle:nth-child(8) { left: 75%; animation-delay: 12s; animation-duration: 19s; }

@keyframes dataFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(95vh) rotate(18deg) scale(1);
    }
    95% {
        opacity: 1;
        transform: translateY(-5vh) rotate(342deg) scale(1);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Enhanced Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%, 
        rgba(0, 255, 255, 0.02) 50%, 
        rgba(0, 255, 65, 0.01) 51%, 
        transparent 51%
    );
    background-size: 100% 3px;
    animation: scanlines 0.08s linear infinite;
    pointer-events: none;
    z-index: -1;
}

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

/* Main Container */
.matrix-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

/* Glassmorphism Welcome Interface */
.welcome-interface {
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.interface-border {
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.2), 
        rgba(0, 255, 65, 0.1), 
        rgba(0, 128, 255, 0.15), 
        rgba(138, 43, 226, 0.1));
    background-size: 400% 400%;
    animation: glassShimmer 12s ease infinite;
    padding: 2px;
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
}

.interface-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.3), 
        rgba(0, 255, 65, 0.2), 
        rgba(0, 128, 255, 0.25), 
        rgba(138, 43, 226, 0.2));
    background-size: 400% 400%;
    animation: glassShimmer 12s ease infinite;
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
}

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

.interface-content {
    background: var(--darker-glass);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Logo and Title */
.logo-container {
    margin-bottom: 2.5rem;
}

.cyber-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    background: linear-gradient(45deg, var(--primary-cyan), var(--neon-green), var(--electric-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

@keyframes titleGlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
    }
    100% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.8));
    }
}

.title-underline {
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-cyan), 
        var(--neon-green), 
        var(--electric-blue), 
        transparent);
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    animation: underlineSlide 2s ease-out;
}

@keyframes underlineSlide {
    from { 
        width: 0; 
        opacity: 0;
    }
    to { 
        width: 250px; 
        opacity: 1;
    }
}

/* Minecraft Server Banner - Cyber Glass Style */
.minecraft-banner {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 255, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.minecraft-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 0, 0.1), 
        transparent);
    animation: dataShimmer 4s infinite;
}

.minecraft-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.minecraft-icon {
    font-size: 24px;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
}

.minecraft-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--matrix-green);
    font-size: 16px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.server-address {
    background: var(--dark-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.4);
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.server-address:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 
        0 0 25px rgba(0, 255, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.address-text {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--matrix-green);
    font-size: 18px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.copy-icon {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.5));
}

.server-address:hover .copy-icon {
    opacity: 1;
    transform: scale(1.1);
}

.copy-feedback {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--matrix-green);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
}

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

/* Status Display - Glass Style */
.status-display {
    margin-bottom: 2.5rem;
    font-family: var(--font-primary);
}

.status-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.status-line:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.status-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.status-value {
    color: var(--primary-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-cyan);
    background: linear-gradient(45deg, var(--primary-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Welcome Message */
.welcome-message {
    margin-bottom: 2.5rem;
}

.cyber-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-weight: 400;
}

.highlight {
    color: var(--primary-cyan);
    font-weight: 700;
    text-shadow: 0 0 15px var(--primary-cyan);
    background: linear-gradient(45deg, var(--primary-cyan), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Action Panel - Glass Buttons */
.action-panel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cyber-button {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: var(--primary-cyan);
    padding: 1.2rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cyber-button:hover {
    transform: translateY(-3px);
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    box-shadow: 
        0 15px 40px rgba(0, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--primary-cyan);
}

.cyber-button.terminal {
    border-color: rgba(0, 204, 255, 0.3); /* Changed from orange to cyan */
    color: #00ccff; /* Changed from orange to cyan */
}

.cyber-button.terminal:hover {
    background: rgba(0, 204, 255, 0.1); /* Changed from orange to cyan */
    border-color: #00ccff; /* Changed from orange to cyan */
    box-shadow: 
        0 15px 40px rgba(0, 204, 255, 0.3), /* Changed from orange to cyan */
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 20px #00ccff; /* Changed from orange to cyan */
}

.button-glow {
    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;
}

.cyber-button:hover .button-glow {
    left: 100%;
}

/* Corner Decorations - Updated for Glass Theme */
.corner-decoration {
    position: fixed;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-cyan);
    z-index: 5;
    opacity: 0.6;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.corner-decoration::before,
.corner-decoration::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.top-left {
    top: 2rem;
    left: 2rem;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 10px;
}

.top-right {
    top: 2rem;
    right: 2rem;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 10px;
}

.bottom-left {
    bottom: 2rem;
    left: 2rem;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 10px;
}

.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 10px;
}

/* Data Streams */
.data-stream {
    position: fixed;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--primary-cyan), 
        var(--neon-green),
        transparent);
    animation: streamFlow 4s linear infinite;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.data-stream.left {
    left: 12%;
    animation-delay: 0s;
}

.data-stream.right {
    right: 12%;
    animation-delay: 2s;
}

@keyframes streamFlow {
    0%, 100% {
        opacity: 0;
        transform: translateY(-100%) scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* Terminal Emulator - Glass Theme */
.terminal-emulator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 5, 15, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: terminalGlassIn 0.4s ease-out;
}

.terminal-emulator.active {
    display: flex;
}

@keyframes terminalGlassIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
        transform: scale(1);
    }
}

.terminal-window {
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: var(--darker-glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
    overflow: hidden;
}

.terminal-header {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1), 
        rgba(0, 128, 255, 0.05));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 0.8rem;
}

.control-button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.control-button.close {
    background: linear-gradient(135deg, var(--primary-cyan), var(--electric-blue));
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.control-button.minimize {
    background: linear-gradient(135deg, var(--neon-green), var(--matrix-green));
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.control-button.maximize {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
}

.control-button:hover {
    transform: scale(1.1);
    filter: brightness(1.3);
    box-shadow: 0 0 20px currentColor;
}

.terminal-title {
    color: var(--primary-cyan);
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-cyan);
}

.terminal-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terminal-body {
    flex: 1;
    padding: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.terminal-output {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-cyan) transparent;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.terminal-output::-webkit-scrollbar {
    width: 8px;
}

.terminal-output::-webkit-scrollbar-track {
    background: transparent;
}

.terminal-output::-webkit-scrollbar-thumb {
    background: var(--primary-cyan);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.boot-sequence {
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.boot-line {
    margin-bottom: 0.4rem;
    animation: dataLoad 0.8s ease-out forwards;
    opacity: 0;
    text-shadow: 0 0 5px var(--neon-green);
}

.boot-line:nth-child(1) { animation-delay: 0.2s; }
.boot-line:nth-child(2) { animation-delay: 0.8s; }
.boot-line:nth-child(3) { animation-delay: 1.4s; }
.boot-line:nth-child(4) { animation-delay: 2s; }

@keyframes dataLoad {
    to {
        opacity: 1;
    }
}

.terminal-input-line {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    position: relative;
    background: rgba(0, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
}

.terminal-prompt {
    color: var(--primary-cyan);
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 0 10px var(--primary-cyan);
}

.terminal-input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    outline: none;
    flex: 1;
    margin-left: 0.8rem;
}

.terminal-cursor {
    color: var(--primary-cyan);
    animation: cursorGlow 1s infinite;
    position: absolute;
    right: 15px;
    text-shadow: 0 0 10px var(--primary-cyan);
}

@keyframes cursorGlow {
    0%, 50% { 
        opacity: 1;
        text-shadow: 0 0 15px var(--primary-cyan);
    }
    51%, 100% { 
        opacity: 0;
    }
}

/* Terminal Footer - Glass Style */
.terminal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darker-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    z-index: 100;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.terminal-line {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.prompt {
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-green);
}

.command {
    color: var(--text-primary);
    margin-left: 0.8rem;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .matrix-container {
        padding: 1rem;
    }
    
    .interface-content {
        padding: 2rem 1.5rem;
    }
    
    .cyber-title {
        font-size: 2.8rem;
        letter-spacing: 0.2em;
    }
    
    .action-panel {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cyber-button {
        width: 100%;
        max-width: 280px;
    }
    
    .corner-decoration {
        width: 50px;
        height: 50px;
    }
    
    .minecraft-banner {
        margin: 20px 0;
        padding: 15px;
    }
    
    .address-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cyber-title {
        font-size: 2.2rem;
        letter-spacing: 0.15em;
    }
    
    .interface-content {
        padding: 1.5rem 1rem;
    }
    
    .corner-decoration {
        width: 35px;
        height: 35px;
    }
    
    .terminal-footer {
        position: relative;
        margin-top: 2rem;
    }
}

/* Enhanced Glow Effects */
.cyber-title,
.status-value,
.highlight,
.terminal-prompt {
    animation: cyberGlow 4s ease-in-out infinite alternate;
}

@keyframes cyberGlow {
    from {
        filter: drop-shadow(0 0 8px currentColor);
    }
    to {
        filter: drop-shadow(0 0 25px currentColor);
    }
}

/* Loading Animations */
.welcome-interface {
    animation: glassLoad 2s ease-out;
}

@keyframes glassLoad {
    0% {
        opacity: 0;
        transform: scale(0.8);
        backdrop-filter: blur(0px);
    }
    50% {
        opacity: 0.5;
        backdrop-filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        backdrop-filter: blur(30px);
    }
}