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

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

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

header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(123, 31, 162, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

header .container {
    position: relative;
    z-index: 2;
}

header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(123, 31, 162, 0.5);
    animation: fadeInDown 1s ease-out;
}

header p {
    font-size: 1.2rem;
    color: #d1c4e9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

main {
    padding: 80px 0;
}

section {
    margin-bottom: 80px;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #9c27b0;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #9c27b0, #673ab7);
    border-radius: 2px;
}

.skill-list, .interest-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-item, .interest-item {
    background: rgba(30, 30, 40, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 31, 162, 0.2);
}

.skill-item:hover, .interest-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.3);
    border-color: #9c27b0;
}

.skill-item h3, .interest-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #9c27b0;
}

.skill-item p, .interest-item p {
    color: #c7c7c7;
    font-size: 1rem;
}

footer {
    background: #1a1a2e;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(123, 31, 162, 0.3);
}

footer p {
    color: #d1c4e9;
    font-size: 0.9rem;
}

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

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

@media (max-width: 768px) {
    header {
        padding: 80px 0;
    }
    
    header h1 {
        font-size: 3rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .skill-list, .interest-list {
        grid-template-columns: 1fr;
    }
}