@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary-color: #0f1111;
    --accent-color: #ff9900;
    --accent-hover: #e68a00;
    --bg-color: #eaeded;
    --card-bg: #ffffff;
    --text-color: #0f1111;
    --text-muted: #565959;
    --price-color: #b12704;
    --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-hover: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg-color); 
    color: var(--text-color); 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
}

.navbar {
    background: #232f3e;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background 0.2s;
}

.navbar a:hover {
    background: #37475a;
    outline: 1px solid #ccc;
}

.navbar a.active {
    font-weight: 700;
    color: var(--accent-color);
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    background: var(--card-bg); 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: var(--shadow); 
}

h1 { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-align: center; 
    color: var(--primary-color); 
    font-size: 2.5em;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.intro { 
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 1.2em; 
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-notice {
    background: #fff8f0;
    border: 1px solid #ffcc66;
    padding: 15px;
    border-radius: 8px;
    margin: 0 auto 40px;
    max-width: 800px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.top-item { 
    display: flex; 
    flex-wrap: nowrap; 
    align-items: center; 
    margin-bottom: 30px; 
    padding: 25px; 
    background: var(--card-bg); 
    border: 1px solid #ddd; 
    border-radius: 12px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.number { 
    font-family: 'Montserrat', sans-serif;
    font-size: 4em; 
    font-weight: 900; 
    color: #e5e7eb; 
    margin-right: 30px; 
    min-width: 80px; 
    text-align: center; 
    line-height: 1;
}

.content { flex: 1; }

.title { 
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em; 
    font-weight: 700;
    margin: 0 0 12px; 
    color: var(--primary-color); 
}

.desc { 
    margin: 10px 0; 
    color: var(--text-muted);
    font-size: 1.05em;
}

.price { 
    font-weight: 600; 
    color: var(--price-color); 
    font-size: 1.5em; 
    margin: 15px 0;
}

.buy-btn { 
    display: inline-block; 
    background: linear-gradient(to bottom, #f7dfa1, #f0c14b);
    border: 1px solid #a88734;
    color: #111; 
    padding: 10px 30px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 500; 
    font-size: 0.95em;
    box-shadow: 0 1px 0 rgba(255,255,255,.4) inset;
    transition: background 0.2s; 
}

.buy-btn:hover { 
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
    border-color: #9c7e31;
}

img { 
    max-width: 220px; 
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
    margin-left: 30px; 
    transition: transform 0.3s ease;
}

.top-item:hover img {
    transform: scale(1.05);
}

/* Footer style */
.footer-info { 
    text-align: center; 
    margin-top: 60px; 
    font-size: 1.1em; 
    color: var(--text-muted);
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.footer-info a {
    color: #007185;
    text-decoration: none;
}

.footer-info a:hover {
    color: #c45500;
    text-decoration: underline;
}

@media (max-width: 850px) {
    .top-item { flex-direction: column; text-align: center; }
    .number { margin: 0 0 15px; font-size: 3em; }
    img { margin: 30px 0 0; max-width: 100%; }
    .container { padding: 20px; }
}
