* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d3561 50%, #1a4d5e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Decorative Elements */
.decoration {
    position: fixed;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border-color: rgba(56, 189, 248, 0.3);
    animation: morph 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* About Section */
.about-section {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.15) 100%);
    padding: 50px;
    border-radius: 40px 40px 200px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    margin-bottom: 40px;
}

.greeting {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #e0e7ff;
}

.name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.motto {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e7ff;
    opacity: 0.95;
}

.highlight {
    color: #fbbf24;
    font-weight: 700;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.contact-item i {
    font-size: 20px;
    color: #8b5cf6;
    min-width: 25px;
}

/* Photo Container */
.photo-container {
    flex-shrink: 0;
    margin-top: 60px;
}

.photo-frame {
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #38bdf8 0%, #6366f1 100%);
    border-radius: 200px 200px 200px 200px / 250px 250px 150px 150px;
    padding: 5px;
    position: relative;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 195px 195px 195px 195px / 245px 245px 145px 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Skills Section */
.skills-section {
    position: relative;
    z-index: 1;
}

.skills-container {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0.2) 100%);
    padding: 60px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.skill-group {
    margin-bottom: 40px;
}

.skill-group:last-child {
    margin-bottom: 0;
}

.skill-group h2 {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.year-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.education-info {
    font-size: 16px;
    color: #e0e7ff;
    line-height: 1.6;
}

/* Career Goals */
.career-goals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.goal-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #8b5cf6;
}

.goal-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.goal-item p {
    font-size: 15px;
    color: #e0e7ff;
    line-height: 1.6;
}

/* Technical Skills */
.tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.tech-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.tech-icon i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.tech-icon.html i { color: #e34c26; }
.tech-icon.css i { color: #264de4; }
.tech-icon.js i { color: #f0db4f; }
.tech-icon.design i { color: #ff61f6; }
.tech-icon.video i { color: #ff0050; }
.tech-icon.canva i { color: #00c4cc; }

.tech-icon span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.tools-info {
    font-size: 14px;
    color: #e0e7ff;
    font-style: italic;
    opacity: 0.9;
}

/* Soft Skills */
.soft-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.soft-skill-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.soft-skill-item:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Skill Set */
.skillset-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.skillset-item {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skillset-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(56, 189, 248, 0.3);
}

/* Achievement Card */
.achievement-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.achievement-card i {
    font-size: 50px;
    color: #fbbf24;
}

.achievement-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fbbf24;
}

.achievement-content p {
    font-size: 15px;
    color: #e0e7ff;
    line-height: 1.5;
}

/* Activity Card */
.activity-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.activity-card i {
    font-size: 50px;
    color: #8b5cf6;
}

.activity-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.activity-content p {
    font-size: 15px;
    color: #e0e7ff;
    line-height: 1.5;
}

/* Interest Tags */
.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .photo-frame {
        width: 300px;
        height: 450px;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 42px;
    }
    
    .about-content {
        padding: 30px;
        border-radius: 30px 30px 150px 30px;
    }
    
    .skills-container {
        padding: 40px 30px;
        border-radius: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .soft-skills-grid,
    .skillset-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-frame {
        width: 250px;
        height: 380px;
    }
    
    .skill-group h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .section-header h1 {
        font-size: 32px;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .skills-container {
        padding: 30px 20px;
    }
    
    .tech-icons {
        grid-template-columns: 1fr;
    }
    
    .name {
        font-size: 22px;
    }
    
    .motto {
        font-size: 20px;
    }
}