/*        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
            color: #333;
        }
*/



body .container{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1e1e1e;
    min-height: 100vh;
    padding: 20px;
    border-radius: 10px;
}
        .sticky-div.is-fixed {

          /* Sticky behavior */
          background: white;
          position: fixed;
          top: 0;
          z-index: 1000; /* Makes sure it appears above other content */
          max-width: calc(900px - 30px * 2);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            flex-basis: 100%;
            position: relative;
            background: #efefef;
        }

        .instagram-fonts header {
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            padding: 30px;
            text-align: center;
            color: white;
        }

        .instagram-fonts h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .input-section {
            padding: 30px;
            text-align: center;
        }

        .input-container {
            position: relative;
            margin-bottom: 25px;
        }

        .instagram-fonts input {
            width: 100%;
            padding: 18px 25px;
            font-size: 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            outline: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }

        .instagram-fonts input:focus {
            border-color: #667eea;
            box-shadow: 0 6px 12px rgba(102, 126, 234, 0.2);
        }

        .char-count {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 0.9rem;
        }

        .btn {
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            margin: 0 10px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.5);
        }

        .btn:active {
            transform: translateY(1px);
        }

        .btn-secondary {
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
        }

        .btn-secondary:hover {
            box-shadow: 0 7px 20px rgba(240, 147, 251, 0.5);
        }

        .fonts-section {
            padding: 0 30px 30px;
        }

        :has(.is-fixed) .fonts-section{
            padding-top: 245px;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #444;
            text-align: center;
            position: relative;
        }

        .section-title:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            border-radius: 3px;
        }

        .fonts-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .font-item {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .font-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .font-name {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .font-display {
            font-size: 1.4rem;
            line-height: 1.6;
            margin-bottom: 15px;
            min-height: 50px;
            word-break: break-all;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 8px;
            outline: none;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .font-display:focus {
            border-color: #667eea;
            background: #fff;
        }

        .copy-btn {
            background: #f0f0f0;
            color: #667eea;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            margin-left: auto;
        }

        .copy-btn:hover {
            background: #667eea;
            color: white;
        }

        .copy-btn.copied {
            background: #4CAF50;
            color: white;
        }

        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        .toast.show {
            opacity: 1;
        }

        .footer {
            text-align: center;
            padding: 20px;
            color: #888;
            font-size: 0.9rem;
        }

.page-content{
    padding:1.5em!important;
    font-size: 20px;
}

.page-content h2 {
  
  font-size: 2.25rem;
}

.page-content h3 {
    margin-top: 1em;
  font-size: 1.75rem;
}

.page-content h4 {
    margin-top: 1em;
  font-size: 1.25rem;
}



.page-content p{
    padding: 0.5em 0;
}

.page-content ul,.page-content ol{
    margin-left: 2em;
    line-height: 1.5em;
}

.page-content li{
    margin-bottom: 0.5em;
}


        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }
            
            .fonts-container {
                grid-template-columns: 1fr;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
