/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #0f0;
    --primary-dark: #00b300;
    --primary-light: #66ff66;
    --secondary-color: #00ffff;
    --dark-bg: #000;
    --dark-bg-2: #111;
    --dark-bg-3: #1a1a1a;
    --text-color: #0f0;
    --text-color-dim: #00b300;
    --accent-color: #ff00ff;
    --danger-color: #ff0000;
    --warning-color: #ffff00;
    --terminal-bg: rgba(0, 0, 0, 0.85);
    --terminal-border: #0f0;
    --terminal-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    --glitch-color-1: #0ff;
    --glitch-color-2: #f0f;
}

@font-face {
    font-family: 'Hack';
    src: url('https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hack';
    src: url('https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Hack', monospace;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

/* ===== BACKGROUND EFFECTS ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="20" fill="rgba(0,255,0,0.1)" font-family="monospace" font-size="10">10110101</text><text x="30" y="40" fill="rgba(0,255,0,0.1)" font-family="monospace" font-size="10">01001101</text><text x="50" y="60" fill="rgba(0,255,0,0.1)" font-family="monospace" font-size="10">11010010</text><text x="70" y="80" fill="rgba(0,255,0,0.1)" font-family="monospace" font-size="10">01101001</text></svg>');
    z-index: -3;
    opacity: 0.3;
}

/* ===== HEADER STYLES ===== */
header {
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.glitch-container {
    text-align: center;
    margin-bottom: 1rem;
}

.glitch {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-shadow: 0 0 5px var(--primary-color);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--glitch-color-1);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--glitch-color-2);
    clip: rect(24px, 450px, 36px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 var(--glitch-color-1), -0.05em -0.025em 0 var(--glitch-color-2);
    }
    14% {
        text-shadow: 0.05em 0 0 var(--glitch-color-1), -0.05em -0.025em 0 var(--glitch-color-2);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 var(--glitch-color-1), 0.025em 0.025em 0 var(--glitch-color-2);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 var(--glitch-color-1), 0.025em 0.025em 0 var(--glitch-color-2);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 var(--glitch-color-1), 0.05em 0 0 var(--glitch-color-2);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 var(--glitch-color-1), 0.05em 0 0 var(--glitch-color-2);
    }
    100% {
        text-shadow: -0.025em 0 0 var(--glitch-color-1), -0.025em -0.025em 0 var(--glitch-color-2);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(15px, 9999px, 64px, 0);
    }
    20% {
        clip: rect(36px, 9999px, 77px, 0);
    }
    40% {
        clip: rect(5px, 9999px, 94px, 0);
    }
    60% {
        clip: rect(82px, 9999px, 23px, 0);
    }
    80% {
        clip: rect(52px, 9999px, 35px, 0);
    }
    100% {
        clip: rect(79px, 9999px, 73px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 32px, 0);
    }
    20% {
        clip: rect(13px, 9999px, 95px, 0);
    }
    40% {
        clip: rect(85px, 9999px, 3px, 0);
    }
    60% {
        clip: rect(32px, 9999px, 25px, 0);
    }
    80% {
        clip: rect(75px, 9999px, 17px, 0);
    }
    100% {
        clip: rect(37px, 9999px, 49px, 0);
    }
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a.active {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* ===== MAIN CONTENT STYLES ===== */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
}

/* ===== TERMINAL STYLES ===== */
.terminal {
    background-color: var(--terminal-bg);
    border: 1px solid var(--terminal-border);
    border-radius: 5px;
    box-shadow: var(--terminal-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: terminal-glow 2s infinite alternate;
}

@keyframes terminal-glow {
    from {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
    }
    to {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    }
}

.terminal-header {
    background-color: var(--dark-bg-2);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
}

.terminal-buttons {
    display: flex;
    margin-right: 1rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.terminal-btn.close {
    background-color: #ff5f56;
}

.terminal-btn.minimize {
    background-color: #ffbd2e;
}

.terminal-btn.maximize {
    background-color: #27c93f;
}

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

.terminal-body {
    padding: 1.5rem;
    font-family: 'Hack', monospace;
    line-height: 1.6;
}

.command {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.command::before {
    content: '> ';
}

.response {
    color: #ccc;
    margin-bottom: 1.5rem;
    display: block;
}

/* ===== HOME PAGE STYLES ===== */
.hero {
    margin: 2rem 0 4rem;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.profile-image {
    flex: 0 0 250px;
}

.hexagon {
    position: relative;
    width: 250px;
    height: 250px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    animation: profile-pulse 3s infinite alternate;
}

@keyframes profile-pulse {
    from {
        box-shadow: 0 0 10px var(--primary-color);
    }
    to {
        box-shadow: 0 0 25px var(--primary-color);
    }
}

.hex-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), transparent);
    z-index: 1;
    opacity: 0.5;
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(120%);
    mix-blend-mode: luminosity;
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.typing-effect {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    height: 2.5rem;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary-color);
    animation: blink 1s infinite;
}

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

/* ===== SKILLS SECTION ===== */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.skills-category {
    flex: 1;
    min-width: 300px;
}

.skills-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 1rem;
    transition: all 0.3s ease;
}

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

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.skill-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.skill-percentage {
    color: var(--secondary-color);
}

.skill-bar {
    height: 8px;
    background-color: var(--dark-bg-3);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    position: relative;
    animation: skill-fill 2s ease-out forwards;
}

@keyframes skill-fill {
    from {
        width: 0;
    }
    to {
        width: var(--skill-percent);
    }
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: skill-shine 2s infinite;
}

@keyframes skill-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===== STATS SECTION ===== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-intro {
    margin-bottom: 3rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(120%);
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.buy-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    font-family: 'Hack', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.buy-btn:hover {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

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

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

.modal-content {
    background-color: var(--dark-bg-2);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    position: relative;
    animation: modal-appear 0.3s ease-out;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--danger-color);
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.payment-details {
    font-size: 1.1rem;
}

.payment-details p {
    margin-bottom: 1rem;
}

.quantity-selector {
    margin: 1.5rem 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.quantity-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: rgba(0, 255, 0, 0.1);
}

#quantity {
    width: 60px;
    height: 30px;
    text-align: center;
    margin: 0 0.5rem;
    background-color: var(--dark-bg-3);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    font-family: 'Hack', monospace;
}

.payment-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    font-family: 'Hack', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.payment-btn:hover {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* ===== JOIN PAGE STYLES ===== */
.join-intro {
    margin-bottom: 3rem;
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.network-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.network-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.network-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.network-name {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.network-description {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.network-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    font-family: 'Hack', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: block;
}

.network-btn:hover {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.network-links {
    margin-top: 1.5rem;
    display: none;
}

.network-links.active {
    display: block;
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.network-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid var(--primary-color);
    margin-bottom: 0.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.network-link:hover {
    background-color: rgba(0, 255, 0, 0.1);
}

.network-link-name {
    color: #ccc;
}

.network-link-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.3rem 0.8rem;
    font-family: 'Hack', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.network-link-btn:hover {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
}

/* ===== STORY PAGE STYLES ===== */
.story-intro {
    margin-bottom: 3rem;
}

.year-selector {
    margin-bottom: 2rem;
}

.year-selector ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
    justify-content: center;
}

.year-selector ul li {
    margin: 0;
}

.year-selector ul li button {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    font-family: 'Hack', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-selector ul li button:hover {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
}

.year-selector ul li button.active {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.timeline-events {
    position: relative;
}

.timeline-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-event {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: none;
}

.timeline-event.active {
    display: block;
    animation: fade-in 0.5s ease;
}

.timeline-event-content {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 1.5rem;
    width: calc(50% - 30px);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    position: relative;
}

.timeline-event:nth-child(odd) .timeline-event-content {
    margin-left: auto;
}

.timeline-event-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
}

.timeline-event:nth-child(odd) .timeline-event-content::before {
    left: -20px;
}

.timeline-event:nth-child(even) .timeline-event-content::before {
    right: -20px;
}

.timeline-event-date {
    position: absolute;
    top: 10px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
}

.timeline-event:nth-child(odd) .timeline-event-date {
    left: -100px;
}

.timeline-event:nth-child(even) .timeline-event-date {
    right: -100px;
}

.timeline-event-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-event-description {
    color: #ccc;
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--primary-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hack-heart {
    color: var(--primary-color);
    font-family: 'Hack', monospace;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color-dim);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-events::before {
        left: 30px;
    }
    
    .timeline-event-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-event:nth-child(odd) .timeline-event-content::before,
    .timeline-event:nth-child(even) .timeline-event-content::before {
        left: -20px;
        right: auto;
    }
    
    .timeline-event:nth-child(odd) .timeline-event-date,
    .timeline-event:nth-child(even) .timeline-event-date {
        left: -45px;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .skills-container,
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .services-list,
    .networks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .terminal-body {
        padding: 1rem;
    }
    
    .profile-image {
        flex: 0 0 200px;
    }
    
    .hexagon {
        width: 200px;
        height: 200px;
    }
    
    .typing-effect {
        font-size: 1.5rem;
    }
    
    .timeline-event-content {
        width: calc(100% - 40px);
        margin-left: 40px !important;
    }
}