body.jamster-theme {
    background: #282b30;
    color: #fff;
    font-family: Cabin, sans-serif;
    margin: 0;
}

.jamster-header {
    background: #1e2124;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.jamster-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.logo {
    font-size: 16px;
    color: rgba(246, 9, 71);
    font-weight: bold;
    flex: 0 0 auto;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    max-width: 100%;
}

.main-nav a {
    color: rgba(246, 9, 71);
    text-decoration: none;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
}

.jamster-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    padding: 10px;
    margin: 0;
}

.box-style {
    position: relative;
    overflow: hidden;
}

.box-style::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.grid-item {
    background-color: #1e2124;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: row; 
    justify-content: flex-start;
    align-items: center;
    gap: 15px; 
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    height: 100px;
    padding: 0 20px;
    transition: background-color 0.2s, transform 0.2s;
    user-select: none;
    border: 1px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.grid-item:hover {
    transform: translateY(-2px);
    background-color: #131313;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

.category-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.jamster-footer {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    padding: 20px;
    border-top: 1px solid #333;
    position: relative;
}

.jamster-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.jamster-box {
    margin-bottom: 40px;
    position: relative;
}

.jamster-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.jamster-box h2 {
    border: 1px solid #131313;
    font-size: 18px;
    color: rgba(246, 9, 71);
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

@media (max-width: 600px) {
    .jamster-main {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        padding: 0;
        margin: 0;
    }

    .grid-item {
        height: 80px;
        font-size: 1.4rem;
        padding: 0 15px;
    }

    .category-icon {
        width: 30px;
        height: 30px;
    }

    .jamster-box {
        padding: 0;
        margin-bottom: 30px;
    }

    .jamster-box h2 {
        padding: 0 10px 6px 10px;
        border-left: none;
        border-right: none;
    }
}