:root {
    --primary: #007bff;
    --bg-dark: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body { margin: 0; background: var(--bg-dark); color: white; font-family: 'Inter', sans-serif; }

nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav a { color: #a0a0a0; margin-left: 25px; text-decoration: none; font-weight: 600; }
nav a:hover { color: var(--primary); }

.container { padding: 140px 5% 60px; text-align: center; }

.title { font-size: 2.8rem; margin-bottom: 50px; font-weight: 800; background: linear-gradient(to right, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.pricing { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: flex-start; }

.p-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    width: 300px;
    transition: 0.4s;
    text-align: center;
}

.featured { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 20px 40px rgba(0,123,255,0.2); }

/* ICONOS MC CSS */
.mc-icon { height: 120px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
.sheep { width: 70px; height: 70px; background: #e2e2e2; position: relative; border: 2px solid #000; transition: 0.3s; }
.sheep-head { width: 45px; height: 35px; background: #f3b092; position: absolute; bottom: 0; left: 12px; border: 2px solid #000; }
.eye { width: 8px; height: 5px; background: #000; position: absolute; top: 10px; }
.eye.left { left: 5px; background: linear-gradient(to right, white 50%, black 50%); }
.eye.right { right: 5px; background: linear-gradient(to left, white 50%, black 50%); }
.nose { width: 14px; height: 7px; background: #ff8c8c; position: absolute; bottom: 5px; left: 15px; }

.golem { position: relative; width: 70px; height: 90px; transition: 0.3s; }
.golem-head { width: 30px; height: 40px; background: #d6d6d6; margin: 0 auto; border: 2px solid #000; position: relative; z-index: 2; }
.g-eye { width: 5px; height: 8px; background: #f00; position: absolute; top: 12px; }
.g-eye.l { left: 5px; } .g-eye.r { right: 5px; }
.g-nose { width: 8px; height: 12px; background: #b0b0b0; position: absolute; top: 20px; left: 10px; border: 1px solid #000; }
.golem-body { width: 70px; height: 40px; background: #cecece; border: 2px solid #000; margin-top: -5px; }

.price { font-size: 3.5rem; font-weight: 800; color: var(--primary); margin: 15px 0; }

.p-btn {
    display: block;
    padding: 16px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.p-btn:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,123,255,0.3); }

.p-card:hover .sheep, .p-card:hover .golem { transform: scale(1.1) rotate(5deg); }