* {
margin: 0;
padding: 0;
box-sizing: border-box;
opacity: 0;
}

body {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
min-height: 100vh;
padding: 40px 60px;
font-family: 'Ubuntu', sans-serif;
position: relative;
}

#particleCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
}

nav {
display: flex;
align-items: center;
gap: 50px;
flex-wrap: wrap;
margin-bottom: 60px;
position: relative;
z-index: 1;
}

h1 {
font-family: 'Ubuntu', sans-serif;
color: #FF5252;
font-size: 50px;
cursor: pointer;
transition: all 300ms ease;
}

h1:hover {
color: #ff7070;
transform: scale(1.05);
}

h2 {
font-family: 'Ubuntu', sans-serif;
color: #FF5252;
font-size: 40px;
font-weight: lighter;
}

.tabHover {
cursor: pointer;
transition: all 300ms ease;
}

.tabHover:hover {
color: #ff4141;
text-decoration: underline;
transform: translateY(-2px);
}

.project-content {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 1;
padding-bottom: 100px;
}

.project-header {
text-align: center;
margin-bottom: 50px;
}

.project-title {
font-family: 'Ubuntu', sans-serif;
color: #FF5252;
font-size: 48px;
margin-bottom: 20px;
letter-spacing: 1px;
}

.project-meta {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-bottom: 30px;
}

.meta-item {
font-family: 'Ubuntu', sans-serif;
color: #ff8888;
font-size: 16px;
background: rgba(125, 82, 82, 0.1);
padding: 10px 20px;
border-radius: 20px;
border: 1px solid #FF5252;
}

.project-links {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 50px;
}

.project-link {
font-family: 'Ubuntu', sans-serif;
background: transparent;
border: 2px solid #FF5252;
color: #FF5252;
font-size: 18px;
padding: 12px 30px;
cursor: pointer;
transition: all 300ms ease;
border-radius: 8px;
text-decoration: none;
display: inline-block;
}

.project-link:hover {
background: rgba(255, 82, 82, 0.2);
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(255, 82, 82, 0.3);
}

.section {
margin-bottom: 50px;
}

.section-title {
font-family: 'Ubuntu', sans-serif;
color: #FF5252;
font-size: 32px;
margin-bottom: 20px;
}

.section-content {
font-family: 'Ubuntu', sans-serif;
color: #ffaaaa;
font-size: 18px;
line-height: 1.8;
margin-bottom: 15px;
}

.tech-stack {
display: flex;
flex-wrap: wrap;
gap: 15px;
}

.tech-tag {
font-family: 'Ubuntu', sans-serif;
color: #FF5252;
background: rgba(125, 82, 82, 0.15);
padding: 8px 16px;
border-radius: 6px;
font-size: 16px;
border: 1px solid rgba(255, 82, 82, 0.3);
}

.feature-list {
list-style: none;
padding-left: 0;
}

.feature-list li {
font-family: 'Ubuntu', sans-serif;
color: #ffaaaa;
font-size: 18px;
line-height: 1.8;
margin-bottom: 10px;
padding-left: 25px;
position: relative;
}

.feature-list li:before {
content: "→";
position: absolute;
left: 0;
color: #FF5252;
}

.quote-footer {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 1;
}

.quote {
font-size: 16px;
font-style: italic;
color: #ff8888;
margin-bottom: 5px;
font-weight: 300;
opacity: 0.7;
}

.author {
font-size: 14px;
color: #ff8888;
opacity: 0.6;
}

@media (max-width: 768px) {
body {
    padding: 20px 30px;
}

nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

.project-title {
    font-size: 36px;
}

.section-title {
    font-size: 26px;
}

.section-content, .feature-list li {
    font-size: 16px;
}

.project-links {
    flex-direction: column;
}

.project-link {
    width: 100%;
    text-align: center;
}

.quote {
    font-size: 14px;
}

.author {
    font-size: 12px;
}
}