  /* ============ VARIABLES ============ */
        :root {
            --primary: #0f172a;
            --primary-light: #1e293b;
            --accent: #3b82f6;
            --accent-light: #60a5fa;
            --bg: #f8fafc;
            --surface: #ffffff;
            --border: #e2e8f0;
            --border-light: #e9eef3;
            --text: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.02);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
            --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.08);
            --radius-xs: 8px;
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --header-height: 60px;
            --sticky-controls-height: 56px;
            --sidebar-width: 300px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* ============ SIDEBAR OVERLAY ============ */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.55);
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            cursor: pointer;
        }
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============ SIDE MENU ============ */
        .side-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-width);
            max-width: 85vw;
            height: 100%;
            background: #fff;
            z-index: 1100;
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 4px 0 30px rgba(0,0,0,0.3);
            overflow-y: auto;
        }
        .side-menu.active {
            transform: translateX(0);
        }

        .side-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .side-menu-logo {
            font-size: 1.3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .side-menu-close {
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.5rem;
            border-radius: 6px;
            transition: var(--transition);
            line-height: 1;
        }
        .side-menu-close:hover {
            color: #222;
            background: rgba(255,255,255,0.08);
        }

        .side-menu-nav {
            flex: 1;
            padding: 1rem 0;
            display: flex;
            flex-direction: column;
        }
        .side-menu-nav a {
            display: block;
            padding: 0.9rem 1.8rem;
            color: #1e293b;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: var(--transition);
            border-left: 3px solid transparent;
            white-space: nowrap;
        }
        .side-menu-nav a:hover,
        .side-menu-nav a:focus {
            color: #222;
            background: rgba(255,255,255,0.05);
            border-left-color: var(--accent);
            outline: none;
        }
        .side-menu-nav a.active-link {
            color: #222;
            background: rgba(59,130,246,0.15);
            border-left-color: var(--accent);
            font-weight: 600;
        }
        .side-menu-footer {
            padding: 1.2rem 1.8rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.8rem;
            color: #64748b;
            flex-shrink: 0;
        }

        /* ============ HEADER ============ */
        .header {
            background: #fff;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            height: var(--header-height);
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            top: 0;
            z-index: 90;
        }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .logo {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-weight: 700;
            text-decoration: none;
            background: linear-gradient(135deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-links a {
            color: #222;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: white;
        }

        .menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.5rem;
            border-radius: 6px;
            transition: var(--transition);
            line-height: 1;
            z-index: 901;
            flex-shrink: 0;
        }
        .menu-toggle:hover {
            background: rgba(255,255,255,0.1);
        }
        .menu-toggle:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .hamburger-icon {
            display: inline-block;
            width: 26px;
            height: 20px;
            position: relative;
            transition: var(--transition);
        }
        .hamburger-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #222;
            border-radius: 3px;
            transition: all 0.3s ease;
            left: 0;
        }
        .hamburger-icon span:nth-child(1) { top: 0; }
        .hamburger-icon span:nth-child(2) { top: 8px; }
        .hamburger-icon span:nth-child(3) { top: 16px; }
        .menu-toggle.open .hamburger-icon span:nth-child(1) {
            top: 8px;
            transform: rotate(45deg);
        }
        .menu-toggle.open .hamburger-icon span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.open .hamburger-icon span:nth-child(3) {
            top: 8px;
            transform: rotate(-45deg);
        }

        /* ============ MAIN CONTAINER ============ */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: clamp(1rem, 3vw, 2rem);
            width: 100%;
            flex: 1;
        }
        .section {
            background: var(--surface);
            padding: clamp(1.2rem, 3vw, 2.5rem);
            margin-bottom: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
        }
        h1 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .subtitle {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        /* ============ TEXTAREA ============ */
        textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 0px;
            font-size: 1rem;
            resize: vertical;
            background: var(--surface);
            transition: var(--transition);
            margin-bottom: 0.8rem;
            font-family: inherit;
            color: var(--text);
            min-height: 60px;
        }
        textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
        }

        /* ============ CONTROLS BAR ============ */
        .font-controls-wrapper {
            margin: 0.8rem 0 1.5rem;
            position: relative;
            z-index: 50;
        }
        .controls-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            
            padding: 0.6rem 1rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            border: 0px solid var(--border);
        }
        .controls-bar.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 0;
            border-bottom: 1px solid var(--border);
            padding: 0.4rem 1.5rem;
            gap: 0.8rem;
            height: var(--sticky-controls-height);
        }
        .controls-placeholder {
            display: none;
        }
        .control-group {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .control-group label {
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--text);
            white-space: nowrap;
        }
        input[type="color"] {
            width: 32px;
            height: 32px;
            border: 2px solid var(--border);
            border-radius: 6px;
            cursor: pointer;
            background: white;
            padding: 2px;
            transition: var(--transition);
        }
        input[type="color"]:hover {
            border-color: var(--accent);
        }
        input[type="range"] {
            width: 90px;
            accent-color: var(--accent);
        }
        #fontSizeLabel {
            min-width: 38px;
            display: inline-block;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.8rem;
            text-align: center;
        }
        .btn-primary {
            display: none;
        }

        /* ============ FONT CARDS ============ */
        .font-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .font-card {
            background: var(--surface);
            border: 2px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: clamp(1rem, 2.5vw, 2rem) clamp(1.2rem, 3vw, 2.5rem);
            transition: var(--transition);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.2rem;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .font-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), #818cf8, #38bdf8);
            opacity: 0;
            transition: var(--transition);
        }
        .font-card:hover {
            border-color: #b9c7da;
            box-shadow: var(--shadow-xl);
            transform: translateY(-1px);
        }
        .font-card:hover::before {
            opacity: 1;
        }
.font-preview-wrapper {
    
    
    
    
}
        .preview-box {
            flex: 3;
            min-width: 250px;
            background: inherit;
            border-radius: 0px;
            padding: 1.8rem 1.2rem;
            transition: var(--transition);
            border:2px solid #eee;
        }
        .preview-box:hover {
            border-color: var(--border);
            background: rgba(241,245,249,0.3);
        }
        .preview-box .font-preview-area {
            font-size: clamp(1.4rem, 4vw, 2.8rem);
            line-height: 1.3;
            word-break: break-word;
            letter-spacing: 0.3px;
            font-weight: 400;
            color: inherit;
            min-height: 40px;
            display: flex;
            align-items: center;
        }
        .font-meta {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.6rem;
            min-width: 140px;
        }
        .font-name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
            text-align:left;
            margin:10px;
        }
        .button-group {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .png,
        .trans,
        .ttf {
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.75rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            border: 1px solid transparent;
            white-space: nowrap;
            margin-top: 10px;
            text-decoration: none;
        }
        .png-btn {
            background: #eff6ff;
            border-color: #bfdbfe;
            color: #1e40af;
        }
        .transparent-btn {
            background: #f0fdf4;
            border-color: #bbf7d0;
            color: #166534;
        }
        .ttf-btn {
            background: #fefce8;
            border-color: #fef08a;
            color: #854d0e;
        }
        .icon-btn:hover {
            transform: translateY(-1px);
            filter: brightness(0.97);
        }
        .icon-btn:active {
            transform: scale(0.96);
        }

        /* ============ PAGINATION ============ */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.4rem;
            margin: 2rem 0 0.5rem;
            flex-wrap: wrap;
        }
        .pagination a {
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            text-decoration: none;
            color: var(--text);
            background: #f1f5f9;
            font-weight: 500;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .pagination a:hover {
            background: #dde4ee;
        }
        .pagination a.active {
            background: var(--primary);
            color: white;
            font-weight: 600;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--primary);
            color: #cbd5e1;
            padding: 3rem 1.5rem 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-col h3 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }
        .footer-col h4 {
            color: #e2e8f0;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.7;
            color: #94a3b8;
            margin-bottom: 0.6rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.55rem;
        }
        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition);
            display: inline-block;
            padding: 2px 0;
        }
        .footer-col ul li a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.82rem;
            color: #64748b;
        }
        .footer-bottom a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-social {
            display: flex;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .footer-social a:hover {
            background: var(--accent);
            color: #fff;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .font-card {
                flex-direction: column;
                align-items: stretch;
            }
            .font-meta {
                width: 100%;
                align-items: flex-start;
                flex-direction: row;
                justify-content: space-between;
            }
            .font-name {
                text-align: left;
            }
            .button-group {
                justify-content: flex-start;
            }
            .controls-bar.sticky {
                padding: 0.4rem 1rem;
                gap: 0.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .controls-bar {
                padding: 0.5rem;
                gap: 0.5rem;
            }
            input[type="range"] {
                width: 70px;
            }
            .icon-btn {
                padding: 0.35rem 0.6rem;
                font-size: 0.7rem;
                flex: 1;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .side-menu {
                width: 85vw;
                max-width: 85vw;
            }
        }
 
.sc-comment-section{max-width:1350px;margin:20px auto;width:100%;} 
.sc-comment-section h3 {margin:20px;}
    /* Form Layout */
#sc-comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background:#fff;
    padding:clamp(1.2rem, 3vw, 2.5rem);;
    box-shadow: var(--shadow-lg);
    max-width:1500px;
    margin:0 auto;
}

#sc-comments-list{
    background: #fff;
    padding:20px;
    box-shadow: var(--shadow-lg);
}
.sc-comment-item {
    border-bottom: 0px solid #eee;
    margin-top:10px;
}
}
/* Name & Email */
.sc-form-group {
    display: flex;
    flex-direction: column;
}

/* Comment field spans full width */
.sc-form-group:has(textarea) {
    grid-column: 1 / -1;
}

/* Submit button spans full width */
#sc-comment-form button {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

#sc-comment-form button:hover {
    background: #1d4ed8;
}

/* Inputs */
.sc-form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.sc-form-group input,
.sc-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 0px;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition: .25s;
}

.sc-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.sc-form-group input:focus,
.sc-form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

/* Mobile */
@media (max-width: 768px) {
    #sc-comment-form {
        grid-template-columns: 1fr;
    }

    .sc-form-group,
    .sc-form-group:has(textarea),
    #sc-comment-form button {
        grid-column: auto;
    }

    #sc-comment-form button {
        width: 100%;
    }
}