 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Navbar */
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background-color: rgb(255, 255, 252);
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .logo {
        display: flex;
        flex-direction:row; /* stack logo and text horizontally */
        align-items: center;
        gap: 10px;
        font-size: 2em;
        font-weight: bold;
    }

    .main-text {
        font-size: 1.5em;
        font-weight: bold;
    }

    .subtext {
        font-size: 0.6em;
        font-weight: normal;
        color: gray;
    }

    .logo img {
        height: 40px;
    }

    .subtext
    {
        font-size: 0.6em;
        font-weight: normal;
        color: gray;
        display: block; /* Make it a block element to appear below the main text */
        
    }
    .nav-items {
        margin-left: 180px;
        display: flex;
        gap: 15px;
    }

    .nav-item {
        font-size: 1.2em;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background-color 0.2s;
    }

    .nav-item:hover {
        background-color: #e0e0e0;
    }

    /* Header */
    header {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 40px 20px;
        font-size: 2em;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    header span span{
        font-weight: bold;
    }

    /* Button */
    .btn {
        background-color: orange;
        color: white;
        cursor: pointer;
        border-radius: 15px;
        border: none;
        padding: 10px 25px;;
        display: flex;
        flex-direction: column; /* stack main + reviews vertically */
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
        font-size: 0.5em;
    }

    .btn:hover{
        transform: scale(1.1);
        background-color: rgb(197, 157, 84);
    }

    .btn-content {
        font-size: 1em;
        font-weight: bold;
    }

    .btn-reviews {
        font-size: 1em;
        font-weight:bold;
    }

    /* Section */
    section {
        text-align: center;
        font-size: 1.8em;
        margin: 20px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    }


    .btn-1{
        background-color: rgb(95, 164, 187);
        color: white;
        cursor: pointer;
        font-weight: bold;
        font-size: 0.5em;
        border-radius: 15px;
        margin: 20px;
        padding: 20px 20px;
        border: none;
    }
    .btn-1:hover{
        transform: scale(1.05);
        background-color:  rgb(76, 136, 155);
    }
    .nav-right{
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .button1{
        background-color: white;
        color:black;
        cursor:pointer;
        font-weight:bold;
        font-size: 1em;
        width: 200px;
        border-radius: 15px;
        border: 2px solid black;
        margin: 10px;
        padding: 20px 20px;
        
    }
    
    .search-bar{
        margin-left: auto;
        padding: 20px 20px;
        cursor: pointer;
        border-radius: 10px;
        border: 2px solid black;
    }
    .search-icon{
        height: 20px;
        width: 20px;
        margin-left: -30px;
    }

    
    section p{
        font-size: 0.8em;
        font-weight:300;
        margin: 20px;

    }

.below {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px;
}

.below-text {
    text-align: center;
    font-size: 1.5em;      /* same size as other text if you like */  
    margin: 0;             /* no extra margin so it's aligned with image */
}
/* Improved Grid - matches UltraEdit official style */
    .grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Enhanced Cards - UltraEdit official style */
    .item{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 25px 20px;
        font-size: 1em;
        border-radius: 12px;
        background-color: #ffffff;
        color: #333;
        text-align: center;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border: 1px solid #e1e5e9;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        min-height: 240px;
    }

    .item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    }

    .item-lang{
        font-weight: 700;
        font-size: 1.4em;
        text-align: center;
        color: #2c3e50;
        margin-bottom: 8px;
    }

    /* Language subtitle styling */
    .item p{
        margin: 8px 0;
        font-size: 0.9em;
        line-height: 1.4;
        word-break: break-word;
        color: #666;
    }

    .item p span{
        font-size: 1.1em;
        font-weight: 600;
        color: #555;
    }

    /* SHA text styling */
    .item .sha-info{
        margin-top: 15px;
        font-size: 0.75em;
        line-height: 1.3;
        color: #888;
        font-family: 'Courier New', monospace;
        background-color: #f8f9fa;
        padding: 8px;
        border-radius: 6px;
        word-break: break-all;
        border: 1px solid #e9ecef;
    }

    /* Professional Download Button */
    .green-btn{
        height: 48px;
        width: 160px;
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: white;
        border-radius: 8px;
        font-size: 0.9em;
        font-weight: 600;
        padding: 0 16px;
        cursor: pointer;
        border: none;
        margin: 15px 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }

    .green-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
        background: linear-gradient(135deg, #218838 0%, #1e9e8a 100%);
    }

    .green-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .grid {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 15px;
        }
        
        .item {
            min-height: auto;
            padding: 20px 15px;
        }
    }