* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #fdf5e6, #fff8e7);
    color: #2a2a2a;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}
nav {
    background: linear-gradient(90deg, #2a2a2a, #3d3d3d);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #ffd700, #ff8c00) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    color: #ffd700;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid;
    border-image: linear-gradient(135deg, #ffd700, #ff8c00) 1;
    background: linear-gradient(135deg, #3a3a3a, #5a5a5a);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}
.nav-links a:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #2a2a2a;
}
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2a2a2a;
    padding: 40px 20px 10px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    letter-spacing: 2px;
    background: #ffffff;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
    background: linear-gradient(135deg, #fff8e7, #fefefe);
}
.card {
    background: linear-gradient(135deg, #fefefe, #fff8e7);
    border: 2px solid;
    border-image: linear-gradient(135deg, #ffd700, #ff8c00, #b8860b) 1;
    padding: 20px;
    image-rendering: auto;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3), 0 4px 8px 0 rgba(0,0,0,0.15);
    border-radius: 8px;
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card img {
    width: 100%;
    height: auto;
    border: 1px solid #d4af37;
    border-radius: 4px;
    margin-bottom: 12px;
    transition: box-shadow 0.3s ease;
}
.card h3 {
    color: #b8860b;
    margin-bottom: 8px;
}
.card p {
    font-size: 0.95rem;
}
.section-title {
    font-size: 1.8rem;
    color: #ffd700;
    border-left: 6px solid;
    border-image: linear-gradient(180deg, #ffd700, #ff8c00) 1;
    padding-left: 15px;
    margin: 40px 0 20px;
    text-transform: uppercase;
    background: #2a2a2a;
    border-radius: 0 8px 8px 0;
}
.faq-item {
    background: #fff8e7;
    border: 1px solid;
    border-image: linear-gradient(135deg, #d4af37, #ffd700) 1;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.1);
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item h4 {
    color: #b8860b;
    cursor: pointer;
}
.faq-item p {
    margin-top: 10px;
}
.news-card {
    background: #ffffff;
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff8c00, #ffd700) 1;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px -4px rgba(0,0,0,0.2);
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card .date {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.news-card h3 {
    color: #b8860b;
    margin-bottom: 8px;
}
footer {
    background: linear-gradient(135deg, #2a2a2a, #3d3d3d);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #ffd700, #ff8c00, #b8860b) 1;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #ccc;
}
footer a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 6px;
}
footer .friend-links {
    margin: 20px 0;
}
footer .friend-links a {
    margin: 0 8px;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.stat-item {
    background: linear-gradient(135deg, #fefefe, #fff8e7);
    border: 2px solid;
    border-image: linear-gradient(135deg, #d4af37, #ffd700) 1;
    padding: 20px 30px;
    text-align: center;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 8px 16px -6px rgba(0,0,0,0.3);
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item .num {
    font-size: 2.2rem;
    color: #ffd700;
    font-weight: bold;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.partner-logos span {
    background: linear-gradient(135deg, #fff8e7, #fefefe);
    border: 1px solid;
    border-image: linear-gradient(135deg, #d4af37, #ff8c00) 1;
    padding: 10px 18px;
    color: #b8860b;
    border-radius: 6px;
}
@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .nav-links { gap: 10px; }
}