* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    background: radial-gradient(circle at 10% 0%, rgba(255, 215, 0, 0.18) 0, transparent 55%),
                radial-gradient(circle at 90% 100%, rgba(255, 69, 0, 0.18) 0, transparent 55%),
                linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 100%);
    color: #FFF;
    line-height: 1.8;
    padding: 2rem;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.container::before,
.container::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.container::before {
    background: radial-gradient(circle, rgba(255,215,0,0.9) 0%, rgba(255,215,0,0) 60%);
    top: -120px;
    right: -80px;
}

.container::after {
    background: radial-gradient(circle, rgba(255,69,0,0.85) 0%, rgba(255,69,0,0) 60%);
    bottom: -140px;
    left: -80px;
}

h1 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 1rem;
}

h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

ul {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #FFD700;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 2px solid #FFD700;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.back-link:hover {
    background: #FFD700;
    color: #000;
}

.date {
    text-align: left;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}


