* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.header-title {
    text-align: center;
    margin-bottom: 30px;
    animation: slideDown 0.6s ease;
}

.page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    font-size: 2.2em;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    display: inline-block;
    text-transform: uppercase;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 300px;
    animation: fadeIn 0.6s ease 0.2s both;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(102, 126, 234, 0.7);
    }
}
.content-section {
    padding: 35px;
}

.content-section h1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.content-section .subtitle {
    color: #764ba2;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.photo-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.photo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.photo-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.profile-photo {
    width: 260px;
    height: 320px;
    border-radius: 15px;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    margin: 0 auto;
}

.profile-photo:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.info-section {
    margin-bottom: 25px;
}

.info-section h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.info-row {
    margin-bottom: 5px;
}

.info-item-compact {
    display: flex;
    font-size: 0.95em;
    line-height: 1.6;
}

.info-item-compact .label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.info-item-compact .value {
    color: #666;
    flex: 1;
}

.info-item-compact .value a {
    color: #667eea;
    text-decoration: none;
}

.info-item-compact .value a:hover {
    text-decoration: underline;
}

.education-list, .experience-list {
    list-style: none;
}

.education-list li, .experience-list li {
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.education-list li:hover, .experience-list li:hover {
    transform: translateX(5px);
    color: #333;
}

.education-list li::before, .experience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.education-list .year, .experience-list .year {
    display: block;
    color: #999;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 3px;
}

.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.skills-list li {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 12px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    text-align: center;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.skills-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Social Media Section */
.social-media-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    padding: 35px;
    margin-top: 30px;
    animation: fadeIn 0.6s ease 0.4s both;
}

.social-media-section h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-items: center;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 150px;
    cursor: pointer;
}

.social-btn .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.social-btn i {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.social-btn .label {
    display: block;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: #667eea;
}

.social-btn.instagram {
    transition: all 0.4s ease;
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d92e7f 50%, #9b36b7 75%, #515bd4 100%);
    color: white;
    border-color: transparent;
}

.social-btn.gmail {
    transition: all 0.4s ease;
}

.social-btn.gmail:hover {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc04 25%, #34a853 50%, #4285f4 100%);
    color: white;
    border-color: transparent;
}

.social-btn.youtube {
    transition: all 0.4s ease;
}

.social-btn.youtube:hover {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b00 100%);
    color: white;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 900px) {
    .card {
        grid-template-columns: 1fr;
    }

    .photo-section {
        padding: 25px 20px;
        order: -1;
    }

    .profile-photo {
        width: 220px;
        height: 270px;
    }

    .content-section {
        padding: 30px;
    }

    .page-title {
        font-size: 1.6em;
    }

    .skills-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }

    .page-title {
        font-size: 1.3em;
        padding: 12px 20px;
    }

    .card {
        border-radius: 5px;
    }

    .content-section {
        padding: 20px;
    }

    .info-section {
        margin-bottom: 20px;
    }

    .info-item-compact {
        font-size: 0.9em;
    }

    .info-item-compact .label {
        min-width: 70px;
    }

    .profile-photo {
        width: 180px;
        height: 220px;
    }

    .skills-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* Audio Player Styles */
.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 15px;
    border-radius: 50px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: slideUp 0.5s ease;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.play-btn, .volume-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover, .volume-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.time-display {
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    min-width: 50px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    min-width: 100px;
}

.progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.volume-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .audio-player {
        gap: 10px;
        padding: 10px 12px;
    }

    .play-btn, .volume-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .time-display {
        font-size: 11px;
        min-width: 45px;
    }
}
