
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: linear-gradient(180deg, #2a1b3d, #1b1026);
    color: #f2eef7;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

#container {
    width: 85%;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.6),
        inset 0 0 30px rgba(255,255,255,0.05);
    overflow: hidden;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header h1 {
    background: linear-gradient(120deg, #6a3fa0, #9b6cff, #6a3fa0);
    background-size: 200% 200%;
    font-size: 68px;
    text-align: center;
    padding: 60px 20px;
    letter-spacing: 6px;
    text-shadow:
        0 0 15px rgba(155,108,255,0.6),
        0 0 40px rgba(75,44,114,0.8);
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


nav {
    background-color: rgba(30, 15, 50, 0.9);
    padding: 18px 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 14px;
}

nav a {
    position: relative;
    background: rgba(255,255,255,0.1);
    color: #e6dcf3;
    text-decoration: none;
    font-size: 24px;
    padding: 12px 22px;
    border-radius: 14px;
    transition: all 0.35s ease;
}

nav a:hover {
    color: #1b1026;
    background: #b48cff;
    box-shadow:
        0 0 20px rgba(180,140,255,0.8),
        0 0 40px rgba(180,140,255,0.6);
    transform: translateY(-6px) scale(1.05);
}

/
main {
    padding: 40px;
}

article {
    padding: 30px;
    background: rgba(0,0,0,0.25);
    border-radius: 18px;
    box-shadow: inset 0 0 30px rgba(255,255,255,0.04);
}


article h1 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #c9a8ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

article h2 {
    font-size: 26px;
    color: #bfa7e6;
    opacity: 0.85;
    margin-bottom: 12px;
}


img {
    float: right;
    margin: 15px 20px 30px 35px;
    width: 200px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    transition: all 0.4s ease;
}

img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 25px 60px rgba(155,108,255,0.7);
}


footer {
    background: linear-gradient(90deg, #1b1026, #2a1b3d);
    color: #d9cdee;
    padding: 35px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
}
