        

        body {
            background-color: var(--bg-base);
            background-image:
                radial-gradient(ellipse at 15% 50%, rgba(59, 130, 246, 0.12), transparent 40%),
                radial-gradient(ellipse at 85% 30%, rgba(139, 92, 246, 0.12), transparent 40%),
                radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.05), transparent 50%);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            overflow-y: auto;
            font-family: 'Outfit', sans-serif;
            background-attachment: fixed;
        }

        .dashboard-wrapper {
            width: 95%;
            max-width: 1400px;
            margin: 1.25rem auto;
            animation: appEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes appEntry {
            from {
                opacity: 0;
                transform: scale(0.98) translateY(10px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* ----- MAIN BENTO GRID ----- */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: auto 1fr 1fr;
            gap: 14px;
        }

        .box-prompt,
        .box-fikir,
        .box-proje {
            grid-column: span 2;
        }

        .box-arastirma,
        .box-rad {
            grid-column: span 3;
        }

        .bento-box.banner {
            grid-column: 1 / -1;
            grid-row: 1;
            padding: 20px 28px;
            flex-direction: row;
            background: linear-gradient(120deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .banner-left {
            display: flex;
            align-items: center;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .banner-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
            color: #a78bfa;
            flex-shrink: 0;
        }

        .bento-box.banner::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 250px;
            height: 250px;
            background: var(--gradient-prompt);
            filter: blur(100px);
            opacity: 0.2;
            z-index: 0;
            border-radius: 50%;
        }

        .banner-text {
            position: relative;
            z-index: 1;
        }

        .banner-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 4px;
        }

        .banner-text p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .date-chip {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Module Cards */
        .bento-box {
            background: var(--bg-bento);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 20px;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-primary);
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto;
            gap: 0 12px;
            align-items: start;
            animation: cardEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
        }

        @keyframes cardEntry {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .box-prompt {
            animation-delay: 0.1s;
        }

        .box-fikir {
            animation-delay: 0.2s;
        }

        .box-settings {
            animation-delay: 0.3s;
        }

        .box-rad {
            animation-delay: 0.4s;
        }

        /* Mouse tracking glow effect layer */
        .glow-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            border-radius: 28px;
            background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
                    rgba(255, 255, 255, 0.06),
                    transparent 40%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .bento-box::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 28px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 80%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.4;
            transition: opacity 0.4s ease, background 0.4s ease;
            pointer-events: none;
        }

        .bento-box:hover {
            transform: translateY(-6px) scale(1.015);
            background: rgba(30, 41, 59, 0.6);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .bento-box:hover .glow-overlay {
            opacity: 1;
        }

        .bento-box:hover::after {
            opacity: 1;
            background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
                    rgba(255, 255, 255, 0.4),
                    transparent 40%);
        }

        .box-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
            grid-row: 1;
            grid-column: 1;
            align-self: center;
        }

        .box-content {
            position: relative;
            z-index: 2;
            grid-row: 1;
            grid-column: 2;
        }

        .box-title {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 4px;
            letter-spacing: -0.3px;
        }

        .box-desc {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* Module Specific Styling */
        .box-prompt .box-icon {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .box-prompt:hover {
            box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.2);
        }

        .box-fikir .box-icon {
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .box-fikir:hover {
            box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.2);
        }

        .box-proje .box-icon {
            background: rgba(168, 85, 247, 0.15);
            color: #a855f7;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .box-proje:hover {
            box-shadow: 0 20px 40px -10px rgba(168, 85, 247, 0.2);
        }

        .box-rad .box-icon {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .box-rad:hover {
            box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.2);
        }

        /* New Arastirma Box */
        .box-arastirma .box-icon {
            background: rgba(236, 72, 153, 0.15);
            color: #ec4899;
            border: 1px solid rgba(236, 72, 153, 0.3);
        }

        .box-arastirma:hover {
            box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.2);
        }

        .box-rad .box-inner-layout,
        .box-arastirma .box-inner-layout {
            display: contents;
        }

        .box-rad .box-inner-layout > div,
        .box-arastirma .box-inner-layout > div {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0 12px;
            align-items: start;
            grid-column: 1 / -1;
        }

        .box-rad .box-inner-layout > div > .box-icon,
        .box-arastirma .box-inner-layout > div > .box-icon {
            grid-row: 1;
            grid-column: 1;
            align-self: center;
        }

        .box-rad .box-inner-layout > div > .box-content,
        .box-arastirma .box-inner-layout > div > .box-content {
            grid-row: 1;
            grid-column: 2;
        }

        .bento-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: absolute;
            top: 32px;
            right: 32px;
            opacity: 0;
            transform: translateX(-10px) translateY(10px);
        }

        .bento-box:hover .bento-arrow {
            opacity: 1;
            transform: translateX(0) translateY(0);
            background: rgba(255, 255, 255, 0.1);
        }

        /* Abstract Graphic for RAD box */
        .rad-graphic {
            position: absolute;
            bottom: -20px;
            right: 20px;
            width: 150px;
            height: 150px;
            opacity: 0.1;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .bento-box.box-rad:hover .rad-graphic {
            opacity: 0.3;
        }

        @media(max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .bento-box.banner {
                grid-column: 1 / -1;
            }

            .box-prompt,
            .box-fikir,
            .box-proje {
                grid-column: span 1;
            }

            .box-arastirma,
            .box-rad {
                grid-column: span 1;
            }
        }

        @media(max-width: 768px) {
            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .bento-box {
                grid-column: 1 / -1 !important;
            }

            .banner-text h1 {
                font-size: 1.5rem;
            }

            .date-chip {
                display: none;
            }
        }

