body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #1f1f2e, #2c2c3f);
    color: #f5f5f5;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    height: 70px;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navleft {
    position: absolute;
    left: 30px;
    display: flex;
    gap: 15px;
}

.navleft a svg {
    width: 28px;
    height: 28px;
    transition: 0.3s;
}

.navleft a:hover svg {
    fill: #a56eff;
    transform: scale(1.1);
}

.navcenter {
    display: flex;
    gap: 40px;
}

.navright {
    position: absolute;
    right: 30px;
    color: #c9a0ff;
    font-weight: 600;
    font-size: 1.2rem;
}

.navbar a {
    color: #ddd;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
    transition: 0.3s ease;
}

    .navbar a:hover {
        color: #c9a0ff;
    }

    .navbar a::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: -4px;
        left: 0;
        background: #c9a0ff;
        transition: 0.3s;
    }

    .navbar a:hover::after {
        width: 100%;
    }

.content {
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

.content-card {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    font-weight: 400;
    color: #c9a0ff;
    margin-bottom: 30px;
}

h3 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #c9a0ff;
    display: inline-block;
    padding-bottom: 5px;
}

p {
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
}

button {
    background: #c9a0ff;
    border: none;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

    button:hover {
        background: #a56eff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

.content-card ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.content-card li {
    background: rgba(255,255,255,0.08);
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s ease;
}

    .content-card li:hover {
        background: rgba(201, 160, 255, 0.2);
        transform: scale(1.05);
    }


.content-card img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin: 10px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

    .content-card img:hover {
        transform: scale(1.05);
    }


.content-card h3:last-of-type {
    margin-top: 40px;
    border: none;
    color: #c9a0ff;
}
