/* Terminal Portfolio CSS */
:root {
    --terminal-bg: #0a0a0a;
    --terminal-secondary: #1a1a1a;
    --terminal-border: #333;
    --terminal-green: #00ff41;
    --terminal-orange: #ff8c00;
    --terminal-blue: #00bfff;
    --terminal-purple: #9d4edd;
    --terminal-red: #ff4757;
    --terminal-yellow: #feca57;
    --terminal-gray: #666;
    --terminal-white: #ffffff;
    --aws-orange: #ff9900;
    --aws-blue: #232f3e;
    --glow-green: 0 0 10px var(--terminal-green);
    --glow-blue: 0 0 10px var(--terminal-blue);
    --glow-orange: 0 0 10px var(--terminal-orange);
}

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

body {
    font-family: 'Fira Code', monospace;
    background: var(--terminal-bg);
    color: var(--terminal-green);
    overflow: hidden;
    height: 100vh;
}

/* Boot Sequence */
.boot-sequence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--terminal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}

.boot-content {
    text-align: center;
    color: var(--terminal-green);
}

.ascii-art {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: var(--glow-green);
    animation: glow 2s ease-in-out infinite alternate;
}

.boot-progress {
    width: 400px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--terminal-secondary);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--terminal-green), var(--terminal-blue));
    width: 0%;
    animation: loadProgress 4s ease-out forwards;
    box-shadow: var(--glow-green);
    border-radius: 2px;
}

.boot-text {
    font-size: 14px;
    color: var(--terminal-gray);
    animation: typewriter 2s steps(30) forwards;
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    top: 60px;
    right: 20px;
    background: var(--terminal-secondary);
    border: 1px solid var(--terminal-border);
    color: var(--terminal-green);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    background: var(--terminal-green);
    color: var(--terminal-bg);
    box-shadow: var(--glow-green);
    transform: scale(1.1);
}

.sound-toggle:active {
    transform: scale(0.95);
    background: var(--terminal-blue);
}

.sound-toggle.disabled {
    background: var(--terminal-red);
    opacity: 0.8;
}

/* Main Interface */
.main-interface {
    width: 100%;
    height: 100vh;
    background: var(--terminal-bg);
    display: flex;
    flex-direction: column;
}

.main-interface.hidden {
    display: none;
}

/* Terminal Header */
.terminal-header {
    background: var(--terminal-secondary);
    border-bottom: 1px solid var(--terminal-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 40px;
}

.terminal-tabs {
    display: flex;
    height: 100%;
}

.tab {
    background: var(--terminal-bg);
    border-right: 1px solid var(--terminal-border);
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--terminal-gray);
    transition: all 0.3s ease;
    position: relative;
}

.tab.active {
    background: var(--terminal-bg);
    color: var(--terminal-green);
    border-bottom: 2px solid var(--terminal-green);
}

.tab:hover {
    background: var(--terminal-secondary);
    color: var(--terminal-white);
}



/* Terminal Content */
.terminal-content {
    flex: 1;
    overflow: hidden;
}

.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: block;
}

/* Terminal Window */
.terminal-window {
    height: 100%;
    background: var(--terminal-bg);
    padding: 20px;
    overflow-y: auto;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.03) 0%, transparent 50%);
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 65, 0.02) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 65, 0.01) 50%, transparent 100%);
    pointer-events: none;
    animation: terminal-scan 4s linear infinite;
}

@keyframes terminal-scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.terminal-output {
    font-size: 14px;
    line-height: 1.6;
}

.output-line {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    animation: fadeInUp 0.3s ease-out;
    position: relative;
}

.output-line:hover {
    background: rgba(0, 255, 65, 0.05);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 2px -8px;
}

.output-line.command-executed {
    border-left: 2px solid var(--terminal-green);
    padding-left: 10px;
    margin-left: -12px;
}

.output-line.command-executed::before {
    content: '▶';
    color: var(--terminal-green);
    margin-right: 8px;
    font-size: 10px;
}

.prompt {
    color: var(--terminal-blue);
    margin-right: 8px;
    text-shadow: var(--glow-blue);
}

.command {
    color: var(--terminal-green);
    text-shadow: var(--glow-green);
}

.response {
    color: var(--terminal-white);
    margin-left: 0;
    padding-left: 20px;
}

.user-info .name {
    color: var(--terminal-orange);
    font-weight: bold;
    text-shadow: var(--glow-orange);
}

.user-info .role {
    color: var(--terminal-purple);
}

.user-info .tech {
    color: var(--terminal-blue);
}

/* File Listing */
.file-listing {
    font-family: 'Fira Code', monospace;
}

.file-item {
    display: grid;
    grid-template-columns: 120px 60px 120px 1fr;
    gap: 10px;
    padding: 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: var(--terminal-secondary);
    padding-left: 10px;
    border-radius: 4px;
}

.permissions {
    color: var(--terminal-gray);
}

.size {
    color: var(--terminal-yellow);
}

.date {
    color: var(--terminal-gray);
}

.filename {
    font-weight: bold;
}

.filename.executable {
    color: var(--terminal-green);
    text-shadow: var(--glow-green);
}

.filename.directory {
    color: var(--terminal-blue);
    text-shadow: var(--glow-blue);
}

.filename.log {
    color: var(--terminal-orange);
    text-shadow: var(--glow-orange);
}

/* Current Line */
.current-line {
    position: relative;
}

.command-input {
    color: var(--terminal-green);
    min-width: 1px;
}

.cursor {
    color: var(--terminal-green);
    animation: blink 1s infinite;
    text-shadow: var(--glow-green);
}

.hidden-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Command Suggestions */
.command-suggestions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--terminal-secondary);
    border: 1px solid var(--terminal-green);
    border-radius: 12px;
    padding: 20px;
    max-width: 450px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    backdrop-filter: blur(15px);
    animation: slideInUp 0.4s ease-out;
    z-index: 1000;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.suggestion-header {
    color: var(--terminal-orange);
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.suggestion-header::before {
    content: "💡";
    font-size: 16px;
    animation: pulse 2s infinite;
}

.suggestion-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--terminal-gray);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.suggestion-close:hover {
    color: var(--terminal-red);
    background: rgba(255, 71, 87, 0.1);
    transform: scale(1.1);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}



.suggestion {
    background: var(--terminal-bg);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.suggestion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.suggestion:hover {
    border-color: var(--terminal-green);
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.suggestion:active {
    transform: translateY(-2px) scale(0.98);
}

.suggestion.recently-used {
    border-color: var(--terminal-orange);
    background: rgba(255, 140, 0, 0.05);
}

.suggestion.recently-used::after {
    content: "⭐";
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 10px;
    opacity: 0.7;
}

.suggestion i {
    color: var(--terminal-blue);
    font-size: 16px;
}

.suggestion span {
    color: var(--terminal-green);
    font-size: 12px;
    font-weight: bold;
}

.suggestion small {
    color: var(--terminal-gray);
    font-size: 10px;
}

/* AWS Console */
.aws-console {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f2f3f3;
    color: #232f3e;
}

.aws-header {
    background: var(--aws-blue);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.aws-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.aws-logo i {
    color: var(--aws-orange);
    font-size: 20px;
}

.aws-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aws-console .aws-sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    width: 250px;
    height: calc(100vh - 60px);
    background: white;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar-section {
    margin-bottom: 20px;
}

.section-title {
    padding: 10px 20px;
    font-weight: bold;
    color: var(--aws-blue);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-item {
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.service-item:hover {
    background: #f0f0f0;
    color: var(--aws-blue);
    border-left: 3px solid var(--aws-orange);
}

.aws-main {
    margin-left: 250px;
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-header h2 {
    color: var(--aws-blue);
    margin-bottom: 20px;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--aws-orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header i {
    color: var(--aws-orange);
}

.card-header h3 {
    color: var(--aws-blue);
    font-size: 16px;
    margin: 0;
}

.card-content {
    padding: 20px;
}

.stack-item,
.lambda-item,
.instance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.stack-item:last-child,
.lambda-item:last-child,
.instance-item:last-child {
    border-bottom: none;
}

.stack-status,
.instance-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.stack-status.success,
.instance-status.running {
    background: #d4edda;
    color: #155724;
}

.stack-status.warning {
    background: #fff3cd;
    color: #856404;
}

.lambda-runtime {
    color: #666;
    font-size: 12px;
}

.lambda-invocations {
    color: var(--aws-orange);
    font-weight: bold;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.metric-name {
    min-width: 120px;
    font-size: 12px;
    color: #666;
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--aws-orange), #ff6b35);
    transition: width 1s ease;
}

.metric-value {
    min-width: 40px;
    text-align: right;
    font-weight: bold;
    color: var(--aws-orange);
}

/* Content Modal */
.content-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.content-modal.hidden {
    display: none;
}

.modal-content {
    background: var(--terminal-secondary);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    max-width: 80%;
    max-height: 80%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: var(--terminal-bg);
    padding: 15px 20px;
    border-bottom: 1px solid var(--terminal-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--terminal-green);
    font-weight: bold;
}

.modal-close {
    background: none;
    border: none;
    color: var(--terminal-red);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--terminal-red);
    color: white;
    border-radius: 50%;
}

.modal-body {
    padding: 20px;
    color: var(--terminal-white);
    max-height: 60vh;
    overflow-y: auto;
}

/* Animations */
@keyframes loadProgress {
    to {
        width: 100%;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--terminal-green);
    }
    to {
        text-shadow: 0 0 20px var(--terminal-green), 0 0 30px var(--terminal-green);
    }
}

/* Loading animations */
.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: var(--terminal-white);
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow:
            .25em 0 0 var(--terminal-white),
            .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow:
            .25em 0 0 var(--terminal-white),
            .5em 0 0 var(--terminal-white);
    }
}

/* Enhanced file item hover effects */
.file-item:hover .filename {
    text-shadow: 0 0 8px currentColor;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* ASCII art glow effect */
.ascii-cloud pre {
    text-shadow: 0 0 10px var(--terminal-blue);
    animation: cloudFloat 3s ease-in-out infinite;
}

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

/* Enhanced command suggestions */
.command-suggestions {
    backdrop-filter: blur(10px);
    border: 1px solid var(--terminal-green);
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.suggestion:hover {
    background: linear-gradient(135deg, var(--terminal-bg), var(--terminal-secondary));
    border-color: var(--terminal-green);
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.5),
        inset 0 0 15px rgba(0, 255, 65, 0.1);
    transform: translateY(-3px) scale(1.02);
}

/* Terminal window enhancements */
.terminal-window {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        var(--terminal-bg);
}

/* Project card enhancements */
.project-card {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-left-color: var(--terminal-orange);
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), transparent);
    transform: translateX(10px);
}

/* Skill progress bars with glow */
.skill-item {
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    animation: skillScan 3s infinite;
}

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

/* Enhanced AWS console */
.aws-console {
    background: linear-gradient(135deg, #f2f3f3, #e8e9ea);
}

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

.metric-fill {
    background: linear-gradient(90deg, var(--aws-orange), #ff6b35);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
    animation: metricPulse 2s ease-in-out infinite;
}

@keyframes metricPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 153, 0, 0.8);
    }
}

/* Enhanced Visual Effects */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--terminal-green);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 8s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Command History Panel */
.command-history {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: var(--terminal-secondary);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.command-history.visible {
    opacity: 1;
    transform: translateX(0);
}

.history-item {
    padding: 5px 8px;
    margin: 2px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    color: var(--terminal-gray);
    transition: all 0.2s ease;
}

.history-item:hover {
    background: var(--terminal-bg);
    color: var(--terminal-green);
}

/* Progress Indicators */
.command-progress {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--terminal-secondary);
    border: 1px solid var(--terminal-green);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    z-index: 2000;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--terminal-bg);
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}



@keyframes progress-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Typing Indicator */
.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 10px;
}

.typing-dot {
    width: 4px;
    height: 4px;
    background: var(--terminal-green);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Interactive Command Hints */
.command-hint {
    position: absolute;
    background: var(--terminal-bg);
    border: 1px solid var(--terminal-green);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 11px;
    color: var(--terminal-green);
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.command-hint.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .aws-sidebar {
        width: 200px;
    }
    
    .aws-main {
        margin-left: 200px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .command-suggestions {
        position: fixed;
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .command-history {
        display: none;
    }
}

@media (max-width: 480px) {
    .aws-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .aws-sidebar.open {
        transform: translateX(0);
    }
    
    .aws-main {
        margin-left: 0;
    }
    
    .terminal-window {
        padding: 10px;
    }
    
    .file-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
/* GitH
ub Stats Specific Styles */
.github-stats-section {
    max-width: 100%;
    overflow-x: auto;
}

.github-stats-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 5px;
    box-shadow: 0 4px 8px rgba(0, 255, 65, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.github-stats-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 255, 65, 0.2);
}

.github-profile-section img {
    transition: transform 0.3s ease;
}

.github-profile-section img:hover {
    transform: scale(1.05);
}

.github-activity-section {
    max-height: 600px;
    overflow-y: auto;
}

.github-activity-section::-webkit-scrollbar {
    width: 8px;
}

.github-activity-section::-webkit-scrollbar-track {
    background: var(--terminal-secondary);
    border-radius: 4px;
}

.github-activity-section::-webkit-scrollbar-thumb {
    background: var(--terminal-green);
    border-radius: 4px;
}

.github-activity-section::-webkit-scrollbar-thumb:hover {
    background: var(--terminal-blue);
}

/* Responsive GitHub Stats */
@media (max-width: 768px) {
    .github-stats-section img {
        width: 100%;
        margin: 5px 0;
    }
    
    .github-profile-section > div {
        flex-direction: column;
    }
    
    .github-activity-section {
        max-height: 400px;
    }
}

/* GitHub Badge Animations */
.github-stats-section img,
.github-profile-section img {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading indicator for GitHub API calls */
.github-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--terminal-secondary);
    border-radius: 50%;
    border-top-color: var(--terminal-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}