            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .main-container {
            max-width:1200px;
            margin:30px auto;
            padding:10px 20px;
            background:#fff;
            border-radius:10px;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

        .top-bar {
            background: #fff;
            border-radius: 10px;
            padding: 18px 25px;
            margin-bottom: 20px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size:18px;
        }

        .breadcrumb a {
            color: #333;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: white;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.5);
        }

        .breadcrumb .current {
            color:#ff9800;
            font-weight: 500;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 20px;
        }

        .left-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .prompt-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: none;
        }

        .prompt-image {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            position: relative;
            overflow: hidden;
        }

        .prompt-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .prompt-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.5);
            color: #333;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
        }

        .prompt-content {
            padding: 25px 10px;
        }

        .prompt-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color#333;
        }
h1{color:#222;}
        .prompt-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            color:#222;
        }

        .meta-item {
            background: rgba(255,255,255,0.15);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
        }

        .prompt-text-box {
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .prompt-label {
            font-size: 12px;
            font-weight: 600;
            color: #f39c12;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .prompt-text {
            font-size: 14px;
            line-height: 1.8;
            color: #222;
            white-space: pre-wrap;
        }

        .copy-btn {
            
            color: #222;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .copy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
        }

        .copy-btn.copied {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
        }

        .author-box {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-label {
            font-size: 11px;
            color:#333;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .author-name {
            font-size: 15px;
            font-weight: 600;
            color: #222;
        }

        .author-socials {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .author-social {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
            color: #222;
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .author-social:hover {
            transform: translateY(-2px);
        }

        .author-social.instagram:hover {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
        }

        .author-social.youtube:hover {
            background: #FF0000;
        }

        .author-social.twitter:hover {
            background: #1DA1F2;
        }

        .right-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 5px;
        }

        .related-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }

        .related-image {
            height:auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            overflow: hidden;
        }

        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-content {
            padding: 12px 15px;
        }

        .related-category {
            font-size: 10px;
            color: #222;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .related-title {
            font-size: 13px;
            color: #222;
            font-weight: 500;
            line-height: 1.4;
        }

        .bottom-bar {
            background: #fff;
            border-radius: 10px;
            padding: 20px 25px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .share-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .share-label {
            font-size: 14px;
            font-weight: 500;
        }

        .share-btns {
            display: flex;
            gap: 8px;
        }

        .share-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.2s;
            text-decoration: none;
            background: rgba(255,255,255,0.15);
        }

        .share-btn:hover {
            transform: scale(1.1);
            background: rgba(255,255,255,0.25);
        }

        .tags-section {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: #eee;
            color: #222;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .tag:hover {
            background: #f39c12;
        }


        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #333;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .right-section {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .section-title {
                grid-column: span 2;
            }
        }

        @media (max-width: 600px) {
            .right-section {
                grid-template-columns: 1fr;
            }

            .section-title {
                grid-column: span 1;
            }

            .prompt-image {
                min-height: 250px;
                font-size: 80px;
            }

            .nav-links {
                display: none;
            }

            .bottom-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            
        .breadcrumb .current {
  max-width:100px;      /* adjust width as needed */
  white-space: nowrap;   /* keep text in one line */
  overflow: hidden;      /* hide extra text */
  text-overflow: ellipsis; /* show ... */
  font-size: 18px;
  font-weight: 600;
        }
        }