body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #18181b 0%, #312e81 60%, #fbbf24 100%);
    margin: 0;
    color: #222;
    overflow-x: hidden;
}
.hero {
    position: relative;
    background: none;
    color: #fff;
    text-align: center;
    padding: 4rem 0 2rem 0;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 30%, #312e81 0%, #6366f1 60%, #fbbf24 100%);
    opacity: 0.92;
    z-index: 0;
    animation: bgMove 12s infinite linear alternate;
}
@keyframes bgMove {
    0% { background-position: 50% 30%; filter: brightness(1.1) saturate(1.1); }
    50% { background-position: 60% 70%; filter: brightness(1.2) saturate(1.2); }
    100% { background-position: 40% 10%; filter: brightness(1.1) saturate(1.1); }
}
.hero-title {
    position: relative;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-shadow: 0 4px 32px #312e81, 0 1px 0 #fff, 0 0 24px #fbbf24;
    z-index: 1;
    animation: titlePop 1.2s cubic-bezier(.68,-0.55,.27,1.55) forwards;
    opacity: 0;
}
@keyframes titlePop {
    0% { opacity: 0; transform: scale(0.7) rotate(-8deg); }
    80% { opacity: 1; transform: scale(1.08) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.hero-sub {
    position: relative;
    font-size: 1.5rem;
    margin-top: 1.2rem;
    z-index: 1;
    animation: fadeIn 2s 1s forwards;
    opacity: 0;
    text-shadow: 0 2px 16px #6366f1, 0 0 8px #fbbf24;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.navbar-info {
    margin-top: 0.7rem;
    font-size: 1.35rem;
    color: #fff;
    background: #2a36d4;
    border-radius: 1rem;
    padding: 1rem 2.5rem;
    display: inline-block;
    box-shadow: 0 2px 32px #312e81, 0 0 0 4px #fbbf24;
    font-weight: 900;
    letter-spacing: 0.13em;
    border: 3px solid #fbbf24;
    z-index: 10;
    position: relative;
    opacity: 1 !important;
    text-shadow: 0 2px 8px #312e81, 0 1px 0 #fff;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 0 2px 8px #6366f1;
}
nav a:hover {
    color: #fbbf24;
    text-shadow: 0 2px 16px #fbbf24;
}
main {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(99,102,241,0.15);
    padding: 2.5rem;
    position: relative;
}
.intro h2 {
    font-size: 2.2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
    text-align: center;
}
.intro p {
    font-size: 1.2rem;
    text-align: center;
}
.quote {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
    color: #fff;
    font-size: 1.3rem;
    border-radius: 1rem;
    box-shadow: 0 2px 16px #a5b4fc44;
    text-align: center;
    font-style: italic;
}
.galerie {
    margin: 2rem 0;
    text-align: center;
}
.galerie-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.galerie-images img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 24px #6366f1aa;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}
.galerie-images img:hover {
    transform: scale(1.12) rotate(-2deg);
    box-shadow: 0 8px 32px #fbbf24cc;
}
.fun-facts {
    margin: 2rem 0;
    background: #e0e7ff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 16px #6366f144;
}
.fun-facts h3 {
    color: #6366f1;
    margin-bottom: 1rem;
}
.fun-facts ul {
    list-style: disc inside;
    font-size: 1.1rem;
    color: #222;
}
.articles-flash {
    margin: 2rem 0;
    text-align: center;
}
.articles-flash h3 {
    color: #6366f1;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}
.articles-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(120deg, #312e81 0%, #6366f1 80%, #fbbf24 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 1.2rem;
    box-shadow: 0 6px 32px #312e8144, 0 1px 0 #fff;
    padding: 2rem 1.5rem 1.2rem 1.5rem;
    min-width: 220px;
    max-width: 260px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.card-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px #fbbf24cc);
    animation: emojiPop 1.2s cubic-bezier(.68,-0.55,.27,1.55) forwards;
    opacity: 0;
}
@keyframes emojiPop {
    0% { opacity: 0; transform: scale(0.7) rotate(-8deg); }
    80% { opacity: 1; transform: scale(1.15) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px #6366f1cc;
}
.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 12px 48px #fbbf24cc, 0 1px 0 #fff;
    background: linear-gradient(120deg, #6366f1 0%, #fbbf24 100%);
}
footer {
    text-align: center;
    padding: 2rem 0;
    background: #e0e7ff;
    color: #6366f1;
    font-size: 1.1rem;
    margin-top: 2rem;
    border-top: 1px solid #c7d2fe;
    letter-spacing: 0.05em;
}
form label {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
}
form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #c7d2fe;
    border-radius: 0.5rem;
    font-size: 1rem;
}
form button {
    margin-top: 1rem;
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
form button:hover {
    background: #fbbf24;
    color: #222;
}
