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

body {
    background: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.typing-text {
    text-align: center;
    margin-bottom: 4rem;
    height: 120px;
}

.title {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    min-height: 60px;
}

.subtitle {
    font-size: 1.5rem;
    color: #888;
    opacity: 0;
    min-height: 40px;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    padding: 1.5rem;
    width: 100%;
}

.tech-icon {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.tech-icon span {
    display: block;
    font-size: 0.9rem;
}

.tech-icon:hover {
    transform: scale(1.1);
}

.tech-icon:hover i.fa-kubernetes { color: #326CE5; }
.tech-icon:hover i.fa-linux { color: #FCC624; }
.tech-icon:hover i.fa-docker { color: #2496ED; }
.tech-icon:hover i.fa-aws { color: #FF9900; }
.tech-icon:hover i.fa-github { color: #ffffff; }
.tech-icon:hover i.fa-jenkins { color: #D24939; }
.tech-icon:hover i.devicon-kubernetes-plain { color: #326CE5; }
.tech-icon:hover i.devicon-bamboo-original { color: #0052CC; }
.tech-icon:hover i.devicon-prometheus-original { color: #E6522C; }
.tech-icon:hover i.devicon-ansible-plain { color: #EE0000; }
.tech-icon:hover i.devicon-grafana-original { color: #F46800; }
.tech-icon:hover i.devicon-openstack-plain { color: #ED1944; }
.tech-icon:hover i.devicon-terraform-plain { color: #7B42BC; }
.tech-icon:hover i.fa-gitlab { color: #FC6D26; }
.tech-icon:hover i.devicon-python-plain { color: #3776AB; }
.tech-icon:hover i.devicon-bash-plain { color: #4EAA25; }
.tech-icon:hover i.devicon-nginx-original { color: #009639; }
.tech-icon:hover i.devicon-argocd-plain { color: #EF7B4D; }
.tech-icon:hover i.fas.fa-chart-line { color: #F46800; }
.tech-icon:hover i.fas.fa-network-wired { color: #00C7B7; }
.tech-icon:hover i.devicon-redis-plain { color: #DC382D; }
.tech-icon:hover i.devicon-postgresql-plain { color: #336791; }
.tech-icon:hover i.devicon-vagrant-plain { color: #1563FF; }
.tech-icon:hover i.devicon-go-original-wordmark { color: #00ADD8; }
.tech-icon:hover i.devicon-jira-plain { color: #0052CC; }
.tech-icon:hover i.devicon-vault-plain { color: #FFEC6E; }

/* Add these styles for the floating terminals */
.floating-terminal {
    position: fixed;
    width: 300px;
    background: rgba(30, 30, 30, 0.85);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    z-index: 3;
    opacity: 0;
    transition: opacity 1s ease;
}

.terminal-header {
    background: rgba(60, 60, 60, 0.9);
    padding: 8px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    color: #fff;
    font-size: 0.9rem;
}

.terminal-buttons {
    display: flex;
    gap: 5px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.terminal-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-buttons span:nth-child(3) {
    background: #27c93f;
}

.terminal-content {
    padding: 15px;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    white-space: pre-wrap;
}

/* Update the typing text styles */
.typing-text span {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
} 