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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0f2e 50%, #0f0f23 100%);
    color: #e8e8f0;
    line-height: 1.8;
    min-height: 100vh;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1f1f2e, #0e0e11);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

#webCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #64c8ff 0%, #96a4ff 50%, #ff8cc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    color: #a8b8ff;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.links {
    margin-top: 30px;
}

.links a {
    margin: 0 12px;
    color: #64c8ff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.links a:hover {
    background: rgba(100, 200, 255, 0.15);
    border-color: #64c8ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 200, 255, 0.25);
}

section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #64c8ff 0%, #96a4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #64c8ff, #96a4ff);
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.grid > div {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.08) 0%, rgba(150, 100, 255, 0.08) 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(100, 200, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.grid > div:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15) 0%, rgba(150, 100, 255, 0.15) 100%);
    border-color: rgba(100, 200, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(100, 200, 255, 0.2);
}

.grid strong {
    color: #64c8ff;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.card {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.08) 0%, rgba(150, 100, 255, 0.08) 100%);
    padding: 28px;
    border-radius: 14px;
    margin-top: 24px;
    border: 1px solid rgba(100, 200, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15) 0%, rgba(150, 100, 255, 0.15) 100%);
    border-color: rgba(100, 200, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(100, 200, 255, 0.25);
}

.card:hover::before {
    left: 100%;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.card p {
    color: #d0d0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tech {
    color: #64c8ff;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech::before {
    content: '🔧 ';
}

ul {
    list-style: none;
    margin-top: 20px;
}

ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #d0d0e0;
    transition: all 0.3s ease;
}

ul li:hover {
    color: #64c8ff;
    transform: translateX(5px);
}

ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #64c8ff;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    border-top: 1px solid rgba(100, 200, 255, 0.1);
    background: rgba(15, 15, 35, 0.8);
}
