* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0c0e;
    background: linear-gradient(135deg, #0a0c0e 0%, #1a1525 50%, #0a0c0e 100%);
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            rgba(48, 16, 78, 0.03) 1px, 
            transparent 1px
        ),
        linear-gradient(to right, 
            rgba(48, 16, 78, 0.03) 1px, 
            transparent 1px
        );
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 1;
}

.resume-container {
    display: flex;
    width: 90%;
    max-width: 1000px;
    min-height: 95vh;
    margin: 20px auto;
    background: white;
    position: relative;
    z-index: 2;
}

.resume-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        rgba(255, 0, 0, 0.13),
        rgba(255, 0, 0, 0.06),
        rgba(255, 0, 0, 0.13)
    );
    filter: blur(20px);
    z-index: -1;
}

.resume-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(255, 0, 0, 0.17),
        rgba(255, 0, 0, 0.06),
        rgba(255, 0, 0, 0.17)
    );
    filter: blur(12px);
    z-index: -1;
}

.sidebar {
    width: 300px;
    background: #0D1117;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.main-content {
    flex: 1;
    background: #0D1117;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.content-wrapper {
    background: #1F2B32;
    padding: 30px;
    border-radius: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2),
               0 0 20px rgba(0, 0, 0, 0.1);
}

.profile-section {
    margin-bottom: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid white;
}

.section-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar .section-title {
    color: #ffffff;
    border-bottom: 2px solid #30363d;
}

.skills-list {
    list-style: none;
    margin-bottom: 30px;
}

.skill-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
}

.skill-icon {
    margin-right: 10px;
    font-size: 18px;
}

.education-item {
    margin-bottom: 20px;
}

.education-item h4 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.education-item p {
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #c9d1d9;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    color: #c9d1d9;
}

.about-section {
    margin-bottom: 40px;
    width: 100%;
}

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

.about-intro {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-paragraph {
    margin-bottom: 20px;
    padding: 15px 0;
}

.about-paragraph h4 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-paragraph p {
    color: #ffffff;
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
}

.about-details,
.about-item {
    display: none;
}

.skills-list li {
    color: #c9d1d9;
}

.contact-section {
    margin-bottom: auto;
}

.skills-section {
    margin-top: 30px;
}

.education-section {
    width: 100%;
}

.education-section .section-title {
    color: #ffffff;
    border-bottom: 2px solid #30363d;
}

h1 {
    color: #ffffff;
    margin-bottom: 10px;
}

.profile-section p {
    color: #c9d1d9;
    font-size: 14px;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .resume-container {
        width: 100%;
        min-height: 100vh;
        margin: 0;
        flex-direction: column;
    }

    .sidebar {
        width: auto;
    }

    .content-wrapper {
        margin: 0;
        border-radius: 0;
    }
}