:root {
    --wps-bento-bg: #f8f9fb;
    --wps-bento-card: #ffffff;
    --wps-bento-primary: #1d1d1f;
    --wps-bento-accent: #ff4d4f;
    --wps-bento-blue: #0071e3;
    --wps-bento-green: #34c759;
    --wps-bento-text: #1d1d1f;
    --wps-bento-text-sec: #86868b;
    --wps-bento-border: #e5e5e7;
    --wps-bento-radius: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Myriad Set Pro", sans-serif;
}

body {
    background: var(--wps-bento-bg);
    color: var(--wps-bento-text);
    padding: 40px 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 24px;
    margin-top: 40px;
}

.bento-item {
    background: var(--wps-bento-card);
    border: 1px solid var(--wps-bento-border);
    border-radius: var(--wps-bento-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #d2d2d7;
}

/* Variations */
.bento-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-1x2 { grid-column: span 1; grid-row: span 2; }
.bento-4x1 { grid-column: span 4; grid-row: span 1; }

/* Content Styles */
.bento-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bento-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.bento-desc {
    color: var(--wps-bento-text-sec);
    font-size: 16px;
    line-height: 1.5;
}

.bento-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Custom Accents */
.accent-red { color: var(--wps-bento-accent); }
.accent-blue { color: var(--wps-bento-blue); }
.accent-green { color: var(--wps-bento-green); }

.bg-dark { background: var(--wps-bento-primary); color: #fff; border: none; }
.bg-dark .bento-desc { color: rgba(255,255,255,0.6); }

/* Decorative Elements */
.bento-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

/* Header */
.nav-bento {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo-bento {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.btn-bento {
    padding: 12px 24px;
    background: var(--wps-bento-primary);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-bento:hover {
    background: #333;
}
