
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Gideon+Roman&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Gideon Roman', serif;
    background: linear-gradient(-45deg, #111, #222, #333, #111);
    background-size: 400% 400%;
    animation: darkGradient 20s ease infinite;
    min-height: 100vh;
    color: #eee;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

@keyframes darkGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.banner h1 {
    font-family: 'Calistoga', cursive;
    color: #FFA726;
    font-size: 3.4rem;
    text-shadow: 2px 2px 15px #FF9800;
    animation: glowPulse 2.5s infinite;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 2px 2px 15px #FF9800; }
    50% { text-shadow: 2px 2px 25px #FFC107; }
}

.container {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #FFD54F;
    text-shadow: 1px 1px 10px #FFC107;
}

p, li {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 18px;
    animation: fadeText 2s ease-in-out;
    font-family: 'Gideon Roman', serif;
}

@keyframes fadeText {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

a {
    display: inline-block;
    margin: 20px 12px;
    padding: 14px 28px;
    background: linear-gradient(45deg, #EF6C00, #FFA726);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

a:hover {
    background: #FF8F00;
    transform: scale(1.1) rotate(-1deg);
}

.links {
    text-align: center;
    margin-top: 35px;
}

img {
    max-width: 70%;
    border-radius: 20px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    transition: transform 0.4s ease-in-out;
}

img:hover {
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

th, td {
    padding: 14px;
    border: 1px solid #444;
    text-align: left;
    font-size: 1.1rem;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

th {
    background-color: #FF7043;
    color: #fff;
    font-weight: bold;
}

pre {
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 1rem;
    overflow-x: auto;
    white-space: pre-wrap;
    border: 1px solid #555;
    color: #FFD54F;
}
