/* style.css */ body, html { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: url('https://files.catbox.moe/zjc0k3.jpg') no-repeat center center fixed; background-size: cover; color: white; }

.overlay { background-color: rgba(0, 0, 0, 0.7); min-height: 100vh; padding: 20px; }

header { text-align: center; margin-bottom: 30px; }

header h1 { font-size: 2.5rem; margin: 0; }

header p { font-size: 1.2rem; }

.product-container { display: flex; flex-direction: column; gap: 30px; padding: 10px; max-width: 800px; margin: auto; }

.product-card { background: rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 30px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }

.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

.product-card img { max-width: 100%; width: 300px; border-radius: 10px; margin-bottom: 15px; }

.info h2 { margin: 10px 0; font-size: 2rem; }

.info p { font-size: 1rem; color: #ddd; }

.price { display: block; margin: 20px 0; font-weight: bold; font-size: 1.5rem; color: #00ffae; }

.buy-btn { background: #00ffae; color: #000; padding: 12px 30px; border-radius: 10px; text-decoration: none; font-weight: bold; font-size: 1rem; transition: background-color 0.3s ease; }

.buy-btn:hover { background-color: #00c68e; }

footer { text-align: center; margin-top: 40px; padding: 20px; }

.social-icons a { color: white; margin: 0 10px; font-size: 1.8rem; transition: color 0.3s ease; }

.social-icons a:hover { color: #00ffae; }

.nav-button { display: inline-block; background-color: #fff; color: #000; padding: 12px 25px; margin: 30px auto; text-align: center; font-weight: bold; border-radius: 12px; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; }

.nav-button:hover { background-color: #00ffae; color: #000; transform: scale(1.05); }

