:root {
    --bg-color: #050510;
    --accent-blue: #4facfe;
    --accent-purple: #a044ff;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.nav-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--accent-blue);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1.5s ease-out;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-bottom: 1rem;
}

.quote-container {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.quote {
    font-style: italic;
}

.quote-continuation {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(160, 68, 255, 0.5);
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    perspective: 1000px;
}

.portal-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.portal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 
                0 0 15px var(--accent-blue);
    border-color: var(--accent-blue);
}

.portal-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    z-index: 2;
}

.portal-card p {
    color: var(--text-secondary);
    z-index: 2;
}

/* Planet decorations purely for aesthetics */
.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.portal-card:hover .planet {
    opacity: 0.6;
    transform: scale(1.1);
}

.robotics-planet {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff4b1f, #ff9068);
    bottom: -20px;
    right: -20px;
}

.stream-planet {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8E2DE2, #4A00E0);
    top: -10px;
    right: -10px;
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.4);
}

.photo-planet {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #11998e, #38ef7d);
    bottom: -30px;
    left: -30px;
}

.web-planet {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
    top: 20px;
    right: 10px;
    border: 2px solid rgba(255,255,255,0.1);
}

.event-planet {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #b92b27, #1565C0);
    bottom: -15px;
    left: -15px;
    box-shadow: 0 0 15px rgba(255, 100, 100, 0.4);
}

/* Page Layouts (About, Contact) */
.page-content {
    justify-content: flex-start;
    padding-top: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 900px;
    animation: fadeInDown 0.8s ease-out;
}

.content-block h2 Rajdhani', sans-serif;
    font-weight: 600
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.content-block p, .content-block li {
    line-height: 1.8;
    color: #ddd;
    font-size: 1.1rem;
}

blockquote {
    border-left: 4px solid var(--accent-purple);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Skills Grid (About) */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 10px;
}
Rajdhani', sans-serif;
    font-weight: 600
.skill-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.5rem;
}

.skill-card ul {
    list-style-position: inside;
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label Rajdhani', sans-serif;
    font-weight: 600
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.cta-button {
    background: liRajdhani', sans-serif;
    font-weight: 700var(--accent-blue), var(--accent-purple));
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(160, 68, 255, 0.4);
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .portal-grid {
        grid-template-columns: 1fr;
    }
    .top-nav {
        flex-direction: column;
        gap: 1rem;
    }
}