\/* Base Workspace Configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0b091a; 
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; 
}

/* Fixed CSS-Only Star Field Generation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-image: 
        radial-gradient(circle, white 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: backgroundTwinkle 15s linear infinite;
}

@keyframes backgroundTwinkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-550px); }
}

/* Sticky Navigation Interface */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 9, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00f2fe; 
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #b19cd9;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff758c; 
}

/* Layout Structural Wrapper Dimensions */
.wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Glassmorphic Container Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 1.8rem;
    color: #00f2fe;
    margin-bottom: 25px;
    border-left: 4px solid #ff758c;
    padding-left: 15px;
}

/* About Section Box Framework */
.about-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #b19cd9;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(177, 156, 217, 0.4);
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.about-text h1 span {
    color: #ff758c;
}

.about-text p {
    color: #cccccc;
    line-height: 1.6;
}

/* Projects Flex Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #00f2fe;
}

.project-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.project-card p {
    font-size: 0.9rem;
    color: #b3a9cf;
    margin-bottom: 15px;
}

.project-link {
    color: #00f2fe;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: color 0.2s;
}

.project-link:hover {
    color: #ff758c;
}

/* Silly Lab Action Elements */
.silly-center {
    text-align: center;
}

.silly-btn {
    background: transparent;
    border: 2px solid #ff758c;
    color: #ff758c;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.silly-btn:hover {
    background: #ff758c;
    color: #0b091a;
    box-shadow: 0 0 20px #ff758c;
}

/* Contact Entry Controls */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #00f2fe;
}

.submit-btn {
    background: linear-gradient(90deg, #00f2fe, #b19cd9);
    color: #0b091a;
    border: none;
    padding: 14px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Responsive Adaptive Viewports rules */
@media (max-width: 768px) {
    .about-box {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        display: none;
    }
}
