:root {
    --az-blue: #003366;
    --az-red: #AB0032;
    --white: #ffffff;
}
body { font-family: -apple-system, sans-serif; margin: 0; line-height: 1.6; transition: 0.3s; background-color: var(--white); }
nav { background: var(--az-blue); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid var(--az-red); }
nav a { color: white; text-decoration: none; margin-right: 15px; font-weight: bold; }
.hero { background: #f4f4f4; text-align: center; padding: 50px 20px; border-bottom: 1px solid #ddd; }
.hero-logo { width: 120px; }
.tagline { color: var(--az-red); font-weight: bold; font-style: italic; }
main { max-width: 800px; margin: auto; padding: 20px; }
h2 { color: var(--az-blue); border-bottom: 2px solid var(--az-red); padding-bottom: 5px; }
pre { background: #1e1e1e; color: #d4d4d4; padding: 20px; border-radius: 8px; border-top: 30px solid #323232; position: relative; overflow-x: auto; }
pre::before { content: "•••"; position: absolute; top: -22px; left: 15px; color: #ff5f56; font-size: 22px; text-shadow: 15px 0 #ffbd2e, 30px 0 #27c93f; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-card { border: 1px solid #ddd; padding: 15px; text-align: center; border-radius: 8px; }
.img-placeholder { background: #eee; height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
input, textarea { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
button { background: var(--az-red); color: white; border: none; padding: 12px 24px; cursor: pointer; border-radius: 4px; font-weight: bold; }