/* Basic Reset & Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2a2a2a);
    color: #ffffff;
    font-size: 14.4px;
    line-height: 1.7;
    min-height: 100vh;
}

/* Main Container */
main {
    max-width: 720px;
    margin: 2.4rem auto;
    padding: 1.6rem;
    background: #1e1e1e;
    border-radius: 12.8px;
    border: 1px solid #333333;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

/* Header */
header {
    text-align: center;
    padding: 2.4rem 0;
    background: #2a2a2a;
    border-radius: 9.6px;
    margin-bottom: 2.4rem;
    border: 1px solid #404040;
}

header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

header p {
    font-size: 0.96rem;
    color: #b0b0b0;
}

/* Sections & Typography */
section {
    margin-bottom: 2.4rem;
    padding: 1.2rem 0;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    border-left: 4px solid #ffffff;
    padding-left: 0.8rem;
}

h3 {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin: 1.6rem 0 0.8rem 0;
    font-weight: 600;
}

/* About Section */
#aboutMe {
    background: #2a2a2a;
    padding: 1.6rem;
    border-radius: 6.4px;
    border-left: 4px solid #ffffff;
    font-size: 0.96rem;
    line-height: 1.8;
    border: 1px solid #404040;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 1rem;
}

ul li {
    margin-bottom: 0.64rem;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
}

ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Education & Contact */
.dspace {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #2a2a2a;
    padding: 1.2rem;
    border-radius: 6.4px;
    margin-top: 0.8rem;
    border: 1px solid #404040;
}

.dspace h4 {
    font-size: 1.12rem;
    font-weight: 600;
}

.dspace p {
    color: #b0b0b0;
    font-size: 0.88rem;
}

.contactinfo {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.contactinfo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.64rem 1.6rem;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contactinfo a:hover {
    background: #404040;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    main { margin: 0.8rem; padding: 1.2rem; }
    header h1 { font-size: 2rem; }
    .contactinfo { flex-direction: column; align-items: center; }
    .dspace { flex-direction: column; gap: 0.4rem; }
}
