* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #bfef02;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    animation: fadeInPage 1s ease-out forwards;
}

header {
    background: linear-gradient(125deg, 
        #111111 0%,
        #111111 40%,
        #222222 60%,
        #333333 80%,
        #cdfc02 100%
    );
    color: #cdfc02;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(205, 252, 2, 0.1),
        transparent
    );
    animation: shine 3s infinite;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
    background: #ddd;
    overflow: hidden;
    border: 3px solid #cdfc02;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(205, 252, 2, 0.3);
    transition: transform 0.3s ease;
}

.photo:hover {
    transform: scale(1.1) rotate(5deg);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 2.5em;
    margin-bottom: 10px;
    animation: slideInFromBottom 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 1.2em;
    animation: slideInFromBottom 1.2s ease-out, glowText 2s infinite;
    color: #cdfc02;
}

.section {
    background: #2b292c;
    margin: 20px 0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInAndFade 0.5s ease-out forwards;
}

.section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 25px rgba(205, 252, 2, 0.2);
}

h2 {
    color: #cdfc02;
    margin-bottom: 20px;
    border-bottom: 2px solid #cdfc02;
    padding-bottom: 10px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #cdfc02;
    color: black;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    animation: popIn 0.5s ease-out forwards;
    transition: transform 0.3s ease;
}

.skill:hover {
    transform: scale(1.1);
    background-color: #e4ff4d;
}

.experience-item {
    margin-bottom: 20px;
}

.date {
    color: #cdfc02;
    font-weight: bold;
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    color: #cdfc02;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(205, 252, 2, 0.3); }
    50% { box-shadow: 0 0 30px rgba(205, 252, 2, 0.5); }
    100% { box-shadow: 0 0 15px rgba(205, 252, 2, 0.3); }
}

@keyframes glowText {
    0% { text-shadow: 0 0 10px rgba(205, 252, 2, 0.5); }
    50% { text-shadow: 0 0 20px rgba(205, 252, 2, 0.7); }
    100% { text-shadow: 0 0 10px rgba(205, 252, 2, 0.5); }
}

@keyframes slideInAndFade {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        padding: 40px 10px;
    }

    .name {
        font-size: 2em;
    }

    .section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.8em;
    }

    .photo {
        width: 120px;
        height: 120px;
    }

    .skills {
        gap: 5px;
    }

    .skill {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}