/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066ff;
    --dark-blue: #001a4d;
    --light-blue: #3399ff;
    --deep-black: #0a0a0a;
    --glass-bg: rgba(10, 10, 20, 0.7);
    --glass-border: rgba(0, 102, 255, 0.2);
    --text-light: #ffffff;
    --text-gray: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #001a4d 100%);
    --gradient-2: linear-gradient(45deg, #001a4d 0%, #0066ff 50%, #3399ff 100%);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--deep-black);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMATED GRADIENT BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #000814, #001a4d, #002266, #0066ff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

/* ===== STAR CANVAS ===== */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: 0.5rem;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.loading-bar-container {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 10px;
    animation: loading 2.5s ease forwards;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease infinite;
}

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

/* ===== GLASS DARK UI ===== */
.glass-dark {
    background: rgba(10, 15, 30, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== MOUSE TRAIL ===== */
.mouse-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    filter: blur(5px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-logo span {
    color: var(--primary-blue);
}

.nav-logo:hover {
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link.active {
    opacity: 1;
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.nav-toggle:hover {
    color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 7rem 2rem 2rem;
    text-align: center;
}

.parallax-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.3;
    will-change: transform;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 10, 30, 0.8) 0%, rgba(0, 20, 50, 0.6) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    animation: fadeInUp 1s ease;
    position: relative;
    margin-bottom: 4rem;
    margin-top: 1rem;
}

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

.profile-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    padding: 5px;
    position: relative;
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

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

.profile-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: var(--gradient-2);
    opacity: 0.7;
    animation: rotate 10s linear infinite;
}

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

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.glitch-text {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.3), -0.05em -0.025em 0 rgba(0, 255, 255, 0.3);
    animation: glitch 500ms infinite;
    z-index: 15;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.3), -0.05em -0.025em 0 rgba(0, 255, 255, 0.3); }
    25% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.3), 0.025em 0.025em 0 rgba(0, 255, 255, 0.3); }
    50% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.3), 0.05em 0 0 rgba(0, 255, 255, 0.3); }
    75% { text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.3), -0.025em -0.025em 0 rgba(0, 255, 255, 0.3); }
}

.typing-container {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    min-height: 4rem;
}

.static-text {
    color: var(--text-gray);
}

.typing-text {
    color: var(--primary-blue);
    font-weight: 600;
}

.cursor {
    color: var(--primary-blue);
    animation: blink 0.7s infinite;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--text-light);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(0, 102, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-top: auto;
    padding-bottom: 1.5rem;
}

.scroll-indicator span {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 1rem;
    color: var(--primary-blue);
    animation: pulseArrow 1.5s infinite;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(6px); }
}

/* ===== QUICK INFO SECTION ===== */
.quick-info {
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 8;
    margin-top: 0;
}

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

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.4);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-title span {
    color: var(--primary-blue);
}

.title-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-2);
    margin: 0 auto;
    border-radius: 3px;
}

.page-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.about-image {
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    padding: 2rem;
    border-radius: 20px;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.focus-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.focus-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.focus-list i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.2rem;
}

.focus-list strong {
    display: block;
    margin-bottom: 0.3rem;
}

.focus-list span {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-closing {
    font-style: italic;
    border-left: 3px solid var(--primary-blue);
    padding-left: 1.5rem;
}

/* ===== SKILLS PAGE ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.4);
}

.skill-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon i {
    font-size: 2rem;
    color: white;
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.skill-level {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skill-bar {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.skill-percent {
    font-weight: 600;
    color: var(--primary-blue);
}

/* ===== EXPERIENCE PAGE ===== */
.experience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-blue), var(--primary-blue), transparent);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid rgba(0, 102, 255, 0.3);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-date {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.2rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.section-subtitle span {
    color: var(--primary-blue);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.4);
}

.achievement-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-card p {
    color: var(--text-gray);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info {
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.contact-item:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.contact-text strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
    border-color: transparent;
}

.contact-form {
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.btn-block {
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: auto;
        background: rgba(5, 10, 20, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-radius: 20px 0 0 20px;
        border: 1px solid rgba(0, 102, 255, 0.2);
        transition: right 0.3s ease;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .typing-container {
        font-size: 1.3rem;
    }
    
    .info-grid,
    .skills-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .scroll-indicator {
        padding-bottom: 1rem;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .hero {
        padding: 6rem 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .glitch-text {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-container {
        width: 140px;
        height: 140px;
    }
    
    .hero {
        padding: 5.5rem 1rem 0.5rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
}