* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    color: white;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    color: #d6b3ff;
    text-shadow: 0 0 40px rgba(200,130,255,0.9);
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.85;
}

/* PROJECTS */
.projects {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.card {
    background: rgba(20, 5, 40, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 45px;
    border: 1px solid rgba(200,130,255,0.35);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 60px rgba(200,130,255,0.6);
}

.icon {
    font-size: 3.2rem;
    color: #e9ccff;
    margin-bottom: 15px;
}

.card h2 {
    margin-bottom: 15px;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 28px;
    background: linear-gradient(135deg, #9d4edd, #5a189a);
    border-radius: 9px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    box-shadow: 0 0 22px rgba(200,130,255,1);
}

.outline {
    background: transparent;
    border: 2px solid #9d4edd;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 35px;
    opacity: 0.65;
}
