:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --ice-blue: #a8d5e2; 
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


.container {
    position: relative;
    z-index: 10; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    gap: 3rem;
}


.name-title {
    font-family: 'Fira Code', monospace;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    text-transform: lowercase; 
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
    margin-top: 0.5rem; 
}

.glass-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.glass-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ice-blue);
    box-shadow: 0 0 15px rgba(168, 213, 226, 0.5); 
    transform: translateY(-3px);
}

.chatbot-container {
    width: 100%;
    max-width: 800px; 
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.chat-window {
    max-height: 250px;
    padding: 1.5rem;
    overflow-y: auto;
    display: none; 
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-msg {
    background: rgba(168, 213, 226, 0.1);
    border: 1px solid rgba(168, 213, 226, 0.2);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-msg {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

#chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem;
    outline: none;
}

#chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#send-btn {
    background: transparent;
    border: none;
    color: var(--ice-blue);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: transform 0.2s;
}

#send-btn:hover {
    transform: scale(1.1);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#cursor-glow {
    position: fixed;
    width: 250px; 
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: width 0.1s, height 0.1s;
}

.name-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.name-title {
    transition: text-shadow 0.3s ease;
}

.name-link:hover .name-title {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8); 
}