
:root {
    --primary: #4a90e2;
    --admin-color: #e74c3c;
    --bg-dark: rgba(0, 0, 0, 0.85);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://i.imgur.com/IDoGcls.jpeg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#header-logo { display: flex; align-items: center; gap: 10px; }
#header-logo h1 { font-size: 1.5rem; letter-spacing: 2px; margin: 0; }

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.point-btn {
    background: rgba(74, 144, 226, 0.2);
    border: 2px solid var(--primary);
    color: white;
    padding: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.point-btn:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74,144,226,0.4);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

.product-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card:hover { transform: scale(1.03); }
.product-card img { width: 100%; height: 180px; object-fit: contain; background: #000; }
.product-card .info { padding: 10px; text-align: center; }

.card {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-only { border-left: 5px solid var(--admin-color); }

input, select, button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: none;
    box-sizing: border-box;
}

form button {
    background: var(--primary);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

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

.modal {
    position: fixed;
    top:0; left:0; width: 100%; height:100%;
    background: rgba(0,0,0,0.8);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000;
}
.modal-content { background: #222; padding: 30px; border-radius: 15px; max-width: 400px; text-align: center; }
