@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --wood-border: #8B4513;
}

* {
    font-family: 'Inter', system_ui, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

.money-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.product-card {
    background: #111111;
    border: 3px solid var(--wood-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgb(139 69 19 / 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px -15px rgb(139 69 19 / 0.35);
}

.wood-effect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, transparent 40%, rgba(139,69,19,0.15) 50%, transparent 60%);
    pointer-events: none;
    border-radius: 13px;
    z-index: 1;
}

.login-container {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating-money {
    animation: floatMoney 12s infinite linear;
}

@keyframes floatMoney {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(720deg); }
}