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

body {
    background-color: #0f172a;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(146, 94, 111, 0.4), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 100, 255, 0.4), transparent 40%);
    filter: blur(120px);
    z-index: -1; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    z-index: 10;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

nav a:hover, nav a.active {
    color: #4da6ff;
    border-bottom: 2px solid #4da6ff;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

footer {
    padding: 25px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: auto;
}

.resume-container {
    display: flex;
    max-width: 1100px;
    margin: 50px auto;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(77, 166, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.resume-sidebar {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-right: 1px solid rgba(77, 166, 255, 0.1);
}

.sidebar-block {
    margin-bottom: 40px;
}

.sidebar-block h3 {
    color: #00ffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 5px;
}

.sidebar-block p, .sidebar-block a {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    background: rgba(77, 166, 255, 0.1);
    color: #4da6ff;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    border-left: 3px solid #4da6ff;
}

.resume-main {
    flex: 2.5;
    padding: 50px;
}

.resume-header h1 {
    font-size: 2.8rem;
    color: #fff;
}

.tagline {
    color: #00ffff;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.main-block h2 {
    color: #4da6ff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.main-block h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(77, 166, 255, 0.2);
    margin-left: 15px;
}

.entry {
    margin-bottom: 25px;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.entry-header strong {
    color: #f1f5f9;
}

.entry-header span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.entry p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .resume-container {
        flex-direction: column;
        margin: 20px;
    }
    .resume-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(77, 166, 255, 0.1);
    }
}