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

:root {
    --primary: #00d4ff;
    --secondary: #7b2ff7;
    --dark: #000000;
    --darker: #000000;
    --light: #f8f9fa;
    --gray: #8892b0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

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

.sega-logo {
    font-size: 8rem;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 40px #00d4ff,
        0 0 80px #00d4ff;
    animation: segaPulse 1.5s ease-in-out infinite;
    letter-spacing: 1rem;
    margin-bottom: 2rem;
}

@keyframes segaPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 
            0 0 10px #00d4ff,
            0 0 20px #00d4ff,
            0 0 40px #00d4ff,
            0 0 80px #00d4ff;
    }
    50% {
        transform: scale(1.05);
        text-shadow: 
            0 0 20px #00d4ff,
            0 0 40px #00d4ff,
            0 0 60px #00d4ff,
            0 0 100px #00d4ff,
            0 0 140px #00d4ff;
    }
}

.loading-percent {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00d4ff;
}

.loading-bar {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #7b2ff7);
    animation: loadProgress 2.5s ease-in-out forwards;
    box-shadow: 0 0 20px #00d4ff;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

.particles::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    opacity: 0.1;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.mobile-menu-toggle {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.admin-btn {
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.profile-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: fadeInUp 1s ease-out;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.glitch {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    animation: glitchText 5s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% {
        text-shadow: 0 0 20px var(--primary);
    }
    95% {
        text-shadow: 5px 0 var(--primary), -5px 0 var(--secondary);
    }
}

.subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

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

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-links a {
    color: var(--gray);
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: center;
}

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

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.skill-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tags span {
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.skill-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.skill-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.skill-icons img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.project-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.project-tech span {
    background: rgba(123, 47, 247, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.project-tech img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 5px rgba(123, 47, 247, 0.3));
}

.project-tech img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(123, 47, 247, 0.6));
}

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

.project-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.project-links a:hover {
    color: var(--secondary);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--darker);
}

.timeline-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.timeline-item .duration {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-item ul {
    color: var(--gray);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item svg {
    color: var(--primary);
}

.achievements {
    background: rgba(255, 255, 255, 0.02);
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.achievement-label {
    color: var(--gray);
    font-size: 1rem;
}

.certifications {
    background: rgba(255, 255, 255, 0.02);
}

.certifications-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.cert-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.cert-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
}

.cert-icon {
    font-size: 2.5rem;
}

.cert-details h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cert-details p {
    color: var(--gray);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.testimonial-text {
    color: var(--light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary);
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.proficiency {
    background: rgba(255, 255, 255, 0.02);
}

.proficiency-bars {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.proficiency-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.proficiency-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.proficiency-name {
    color: var(--light);
    font-weight: 600;
}

.proficiency-level {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.proficiency-meter {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.meter-dot {
    width: 30px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.meter-dot.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary);
}

.proficiency-percent {
    color: var(--primary);
    font-weight: bold;
}

.proficiency-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.proficiency-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px var(--primary);
}

.github-stats {
    background: rgba(255, 255, 255, 0.02);
}

.github-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.github-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.github-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.github-stat-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.lang-logo {
    width: 80px;
    height: 80px;
    margin: 1rem auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.github-stats-img {
    max-width: 100%;
    margin-top: 1rem;
    border-radius: 5px;
}

.github-link-center {
    text-align: center;
    margin-top: 2rem;
}

.education-content {
    max-width: 600px;
    margin: 0 auto;
}

.education-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.education-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.edu-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.education-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.education-card h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.edu-year {
    color: var(--gray);
}

.awards {
    background: rgba(255, 255, 255, 0.02);
}

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

.award-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.award-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.award-card h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.award-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.award-desc {
    color: var(--gray);
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: var(--gray);
}

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

.skill-card { animation: scaleIn 0.5s ease forwards; opacity: 0; }
.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }

.project-card { animation: slideInLeft 0.6s ease forwards; opacity: 0; }
.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }

.github-stat-card { animation: scaleIn 0.6s ease forwards; opacity: 0; }
.github-stat-card:nth-child(1) { animation-delay: 0.1s; }
.github-stat-card:nth-child(2) { animation-delay: 0.2s; }
.github-stat-card:nth-child(3) { animation-delay: 0.3s; }
.github-stat-card:nth-child(4) { animation-delay: 0.4s; }

.profile-photo { animation: float 3s ease-in-out infinite; }

.achievement-card { animation: scaleIn 0.5s ease forwards; opacity: 0; }
.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.2s; }
.achievement-card:nth-child(3) { animation-delay: 0.3s; }
.achievement-card:nth-child(4) { animation-delay: 0.4s; }

.cert-item { animation: slideInRight 0.5s ease forwards; opacity: 0; }
.cert-item:nth-child(1) { animation-delay: 0.1s; }
.cert-item:nth-child(2) { animation-delay: 0.2s; }
.cert-item:nth-child(3) { animation-delay: 0.3s; }
.cert-item:nth-child(4) { animation-delay: 0.4s; }
.cert-item:nth-child(5) { animation-delay: 0.5s; }
.cert-item:nth-child(6) { animation-delay: 0.6s; }
.cert-item:nth-child(7) { animation-delay: 0.7s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container { padding: 0 1rem; }
    .nav-menu { 
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--primary);
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { margin: 0.5rem 0; }
    .mobile-menu-toggle { 
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        transition: 0.3s;
    }
    .hero { padding: 6rem 1rem 2rem; }
    .hero h1 { font-size: 2rem; }
    .hero h2 { font-size: 1.2rem; }
    .profile-photo { width: 150px; height: 150px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; padding: 0.8rem 1.5rem; }
    .skills-grid, .projects-grid, .achievements-grid, .awards-grid { grid-template-columns: 1fr; }
    .skill-icons img { width: 40px; height: 40px; }
    .proficiency-item { padding: 1rem; }
    .meter-dot { width: 25px; height: 10px; }
    .github-content { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.5rem; }
    .certifications-list { gap: 1rem; }
    .cert-item { padding: 1rem; }
    .cert-logo { width: 50px; height: 50px; }
    .testimonials-container { grid-template-columns: 1fr; }
    .timeline { padding-left: 1rem; }
    .timeline-item { padding-left: 1.5rem; }
    .section-title { font-size: 2rem; }
    .container { padding: 3rem 1rem; }
}

@media (max-width: 480px) {
    .sega-logo { font-size: 5rem; letter-spacing: 0.5rem; }
    .loading-bar { width: 200px; }
    .hero h1 { font-size: 1.5rem; }
    .hero h2 { font-size: 1rem; }
    .profile-photo { width: 120px; height: 120px; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
    .section-title { font-size: 1.5rem; }
    .skill-icons img { width: 35px; height: 35px; }
    .project-tech img { width: 28px; height: 28px; }
    .cert-logo { width: 40px; height: 40px; }
    .lang-logo { width: 60px; height: 60px; }
    .stat-number { font-size: 2rem; }
    .meter-dot { width: 20px; height: 8px; gap: 0.3rem; }
    .edu-icon, .award-icon { font-size: 3rem; }
}
