* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PT Serif', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: #000;
    color: #fff;
}

::selection {
    background: #059272;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

::-moz-selection {
    background: #059272;
    color: #ffffff !important;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.left-side,
.center-content,
.right-side {
    position: relative;
    min-height: 100vh;
}

.left-bg,
.center-bg,
.right-bg {
    position: fixed;
    top: 0;
    height: 1200px;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: -1;
    background-size: 100% auto;
}

.left-side {
    width: 20vw;
    min-width: 300px;
    max-width: 762px;
    flex-shrink: 0;
}

.left-bg {
    left: 0;
    width: 20vw;
    min-width: 300px;
    max-width: 762px;
    background-image: url('../images/tlo1.webp');
    background-position: left top;
}

.center-content {
    flex: 1;
    min-width: 50vw;
    position: relative;
}

.center-bg {
    left: 0;
    right: 0;
    width: auto;
    background-image: url('../images/center.webp');
    background-position: center top;
}

.right-side {
    width: 20vw;
    min-width: 300px;
    max-width: 762px;
    flex-shrink: 0;
}

.right-bg {
    right: 0;
    width: 20vw;
    min-width: 300px;
    max-width: 762px;
    background-image: url('../images/gif.gif');
    background-position: right top;
}

.sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.menu-background {
    position: absolute;
    top: 10vh;
    left: 0;
    width: 100%;
    height: 90%;
    min-height: 100vh;
    background-image: url('../images/menubg.webp');
    background-size: 82% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    transition: all 0.5s ease;
    filter: brightness(0.95);
}

.sidebar:hover .menu-background {
    filter: brightness(1.10) contrast(1.1);
    animation: subtle-pulse 2s infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.97; }
}

.menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.menu-header {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    text-align: center;
}

.menu-header h2 {
    font-size: 2rem;
    color: #a8afa3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 2px solid #a8afa3;
    color: #a8afa3;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 101;
}

.menu-list {
    list-style: none;
    width: 100%;
    max-height: 54%;
    overflow-y: auto;
    margin-top: 2vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-list::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.menu-item {
    width: 100%;
    max-width: 280px;
}

.menu-link {
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    background-image: url('../images/kategoriabg.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9);
}

.menu-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.menu-link.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.admin-link {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    color: #414442;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.admin-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social-media-fixed {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 80%;
    max-width: 290px;
}

.social-media-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.social-bg-image {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}

.social-media-icons {
    position: absolute;
    top: 46%;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 12%;
    box-sizing: border-box;
    pointer-events: auto;
}

.social-media-icon {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    pointer-events: auto;
}

.social-media-icon img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.7));
}

.social-media-icon:hover {
    transform: scale(1.1);
}

.content {
    position: relative;
    z-index: 100;
    padding: 2rem;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sections-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.category-section {
    width: 100%;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item-section {
    margin-bottom: 3rem;
    color: #fff;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.item-section h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
	font-family: 'MedievalSharp', cursive !important;
    position: relative;
    padding-bottom: 3vh;
    background: linear-gradient(90deg, #a8afa3, #d1e4d7, #a8afa3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.item-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 25px;
    background: url('../images/separator.webp') no-repeat center center;
    background-size: 100% auto;
    max-width: 30vh;
}

.item-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a8afa3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 70vh;
    margin: 0 auto;
    text-align: center;
}

.footer {
    text-align: center;
    padding: 2rem;
    color: #fff;
    margin: 4rem auto 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 800px;
}

.category-image {
    position: relative;
    width: 100%;
    max-width: 30vh;
    margin: 0 auto 3rem;
    text-align: center;
}

.category-image img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    border-radius: 0;
}

.category-image-text {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(
        to right,
        hsla(36, 7%, 73%, 1) 0%,
        hsla(43, 47%, 97%, 1) 50%,
        hsla(144, 7%, 85%, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding: 5px 5px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1c2f29, #07714b);
    color: #d4d4d4;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    background: linear-gradient(90deg, #1c2f29, #07714b);
}

.item-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #a8afa3;
}

.item-content h1,
.item-content h2,
.item-content h3,
.item-content h4,
.item-content h5,
.item-content h6 {
    color: #68f4de;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(104, 244, 222, 0.3);
}

.item-content h1 { font-size: 2.5rem; }
.item-content h2 { font-size: 2rem; }
.item-content h3 { font-size: 1.75rem; }
.item-content h4 { font-size: 1.5rem; }
.item-content h5 { font-size: 1.25rem; }
.item-content h6 { font-size: 1rem; }

.item-content p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.item-content .ql-align-center ul,
.item-content .ql-align-center ol,
.item-content ul.ql-align-center,
.item-content ol.ql-align-center {
    margin: 1rem auto 1.5rem auto !important;
    display: table !important;
    text-align: left !important;
}

.item-content .ql-align-right ul,
.item-content .ql-align-right ol,
.item-content ul.ql-align-right,
.item-content ol.ql-align-right {
    margin: 1rem 0 1.5rem auto !important;
    display: table !important;
    text-align: left !important;
}

.item-content li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.item-content a {
    color: #68f4de;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(104, 244, 222, 0.3);
}

.item-content a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.item-content strong,
.item-content b {
    color: #ffd700;
    font-weight: bold;
}

.item-content em,
.item-content i {
    color: #a8afa3;
    font-style: italic;
}

.item-content u {
    color: #68f4de;
    text-decoration: underline;
}

.item-content s {
    color: #ff6b6b;
    text-decoration: line-through;
}

.item-content blockquote {
    border-left: 4px solid #277c65;
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    background: rgba(39, 124, 101, 0.1);
    color: #d1e4d7;
    font-style: italic;
}

.item-content code {
    background: rgba(255, 255, 255, 0.05);
    color: #ff79c6;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(255, 121, 198, 0.3);
}

.item-content pre {
    background: rgba(0, 0, 0, 0.5);
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #277c65;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: none;
	padding-left: 1vh;
	padding-right: 1vh;
    display: inline-block;
    vertical-align: middle;
}

.item-content img.ql-align-center {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.item-content img.ql-align-left {
    float: left !important;
    margin-right: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.item-content img.ql-align-right {
    float: right !important;
    margin-left: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.item-content::after {
    content: "";
    display: table;
    clear: both;
}

.item-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #277c65;
    border-radius: 8px;
    overflow: hidden;
}

.item-content th {
    background: rgba(39, 124, 101, 0.3);
    color: #68f4de;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #277c65;
}

.item-content td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(104, 244, 222, 0.2);
    color: #a8afa3;
}

.item-content tr:hover {
    background: rgba(104, 244, 222, 0.05);
}

.item-content .ql-color-red { color: #ff6b6b !important; }
.item-content .ql-color-orange { color: #ffa500 !important; }
.item-content .ql-color-yellow { color: #ffd700 !important; }
.item-content .ql-color-green { color: #32cd32 !important; }
.item-content .ql-color-blue { color: #1e90ff !important; }
.item-content .ql-color-purple { color: #9370db !important; }
.item-content .ql-color-pink { color: #ff69b4 !important; }

.item-content .ql-bg-red { background-color: rgba(255, 107, 107, 0.2) !important; }
.item-content .ql-bg-orange { background-color: rgba(255, 165, 0, 0.2) !important; }
.item-content .ql-bg-yellow { background-color: rgba(255, 215, 0, 0.2) !important; }
.item-content .ql-bg-green { background-color: rgba(50, 205, 50, 0.2) !important; }
.item-content .ql-bg-blue { background-color: rgba(30, 144, 255, 0.2) !important; }
.item-content .ql-bg-purple { background-color: rgba(147, 112, 219, 0.2) !important; }
.item-content .ql-bg-pink { background-color: rgba(255, 105, 180, 0.2) !important; }

.item-content .ql-align-center {
    text-align: center !important;
}

.item-content .ql-align-right {
    text-align: right !important;
}

.item-content .ql-align-justify {
    text-align: justify !important;
}

.item-content .ql-size-small {
    font-size: 0.75em !important;
}

.item-content .ql-size-large {
    font-size: 1.5em !important;
}

.item-content .ql-size-huge {
    font-size: 2em !important;
}

.item-content .ql-font-serif {
    font-family: Georgia, 'Times New Roman', serif !important;
}

.item-content .ql-font-monospace {
    font-family: 'Courier New', Courier, monospace !important;
}

.item-content .ql-syntax {
    background-color: #1a1a1a !important;
    color: #f8f8f2 !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    overflow-x: auto !important;
    font-family: 'Consolas', 'Monaco', monospace !important;
    font-size: 0.9rem !important;
    border: 1px solid #277c65 !important;
}

.ql-align-center {
    text-align: center !important;
}

.ql-align-right {
    text-align: right !important;
}

.ql-align-left {
    text-align: left !important;
}

.ql-editor {
    text-align: inherit;
}

.item-content div.ql-align-center {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
}

.item-content div.ql-align-right {
    display: flex !important;
    justify-content: flex-end !important;
    text-align: right !important;
}

.item-content span.ql-align-left {
    float: left !important;
    margin-right: 1rem !important;
}

.item-content span.ql-align-right {
    float: right !important;
    margin-left: 1rem !important;
}

.gold-text {
    color: #dcd29a !important;
    background: linear-gradient(45deg, #dcd29a, #fff3b5, #dcd29a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: bold !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
    display: inline !important;
}

.gradient-text {
    background: linear-gradient(90deg, #44cfae 0%, #d2ffee 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
	text-shadow: none !important;
    color: transparent !important;
    font-weight: bold !important;
    display: inline !important;
}

.glow-text {
    color: #35d16c!important;
    text-shadow: 0 0 10px #35d16c, 0 0 20px #35d16c !important;
    font-weight: bold !important;
    display: inline !important;
}

.metin2-text {
    color: #f6f6f6 !important;
    font-family: 'Cinzel', 'Georgia', serif !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    display: inline !important;
}

.fantasy-text {
    font-family: 'MedievalSharp', cursive !important;
    color: #25cbad !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    font-weight: bold !important;
    display: inline !important;
}

.ice-text {
    color: #a8f1ff !important;
    text-shadow: 
        0 0 5px #a8f1ff,
        0 0 10px #a8f1ff,
        0 0 15px #a8f1ff,
        0 0 20px #00b7ff !important;
    font-weight: bold !important;
    display: inline !important;
}

.fire-text {
    background: linear-gradient(to bottom, 
        #ff3300 0%, 
        #ff6600 25%, 
        #ffcc00 50%, 
        #ffff00 75%, 
        #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: 0 0 10px rgba(255, 51, 0, 0.5) !important;
    font-weight: bold !important;
    display: inline !important;
}

.text-3d {
    color: #68f4de !important;
    text-shadow: 
        1px 1px 0 #277c65,
        2px 2px 0 #1a4d3e,
        3px 3px 0 #0a1212 !important;
    font-weight: bold !important;
    display: inline !important;
}

.animated-gradient {
    background: linear-gradient(90deg, 
        #ff0000, #ff8000, #ffff00, 
        #80ff00, #00ff00, #00ff80, 
        #00ffff, #0080ff, #0000ff, 
        #8000ff, #ff00ff, #ff0080);
    background-size: 1200% 100%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    animation: gradient-flow 8s linear infinite;
    font-weight: bold !important;
    display: inline !important;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.metin-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #8b0000, #b22222);
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.metin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.5);
    background: linear-gradient(45deg, #b22222, #8b0000);
}

.metin-border {
    border: 2px solid;
    border-image: linear-gradient(45deg, #ffd700, #8b0000, #ffd700) 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .item-content h1 { font-size: 2rem; }
    .item-content h2 { font-size: 1.75rem; }
    .item-content h3 { font-size: 1.5rem; }
    .item-content h4 { font-size: 1.25rem; }
    
    .item-content table {
        display: block;
        overflow-x: auto;
    }
}

.item-content * {
    animation: fadeIn 0.5s ease;
}

@media (max-width: 1200px) {
    .left-side {
        position: fixed !important;
        right: -100% !important;
        top: 0 !important;
        width: 85% !important;
        max-width: 300px !important;
        height: 100vh !important;
        z-index: 999 !important;
        transition: right 0.3s ease !important;
        display: block !important;
        min-width: auto !important;
        background: linear-gradient(135deg, #020808 0%, #0c1414 100%) !important;
        border-left: 2px solid #277c65 !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7) !important;
    }
    
    .left-side.menu-open {
        right: 2vh !important;
    }
    
    .right-side,
    .left-bg,
    .right-bg {
        display: none;
    }
    
    .center-content {
        width: 100%;
        min-width: 100%;
        margin: 0;
    }
    
    .center-bg {
        width: 100%;
        background-size: cover;
    }
    
    .menu-toggle {
        position: fixed !important;
        top: 2% !important;
        right: 5% !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(39, 124, 101, 0.8) !important;
        border: 2px solid #68f4de !important;
        color: #68f4de !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-size: 1.5rem !important;
        z-index: 1000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }
    
	@media (max-width: 1200px) {
    .left-side {
        left: auto !important;
        right: -100% !important;
        transition: right 0.3s ease !important;
    }
    
    .left-side.menu-open {
        left: auto !important;
        right: 2vh !important;
    }
}
	
    @media (max-width: 768px) {
        .menu-toggle {
            width: 45px !important;
            height: 45px !important;
            font-size: 1.3rem !important;
        }
    }
    
    @media (max-width: 480px) {
        .menu-toggle {
            width: 40px !important;
            height: 40px !important;
            font-size: 1.2rem !important;
        }
    }
    
    .menu-toggle:hover {
        background: rgba(104, 244, 222, 0.8) !important;
        color: #000 !important;
        transform: scale(1.1) !important;
    }
    
    .left-side.menu-open ~ .menu-toggle {
        right: calc(85% + 2%) !important;
    }
    
    @media (max-width: 768px) {
        .left-side.menu-open ~ .menu-toggle {
            right: calc(85% + 1.5%) !important;
        }
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
    }
    
    .left-side.menu-open ~ .menu-overlay {
        display: block;
    }
    
    .sidebar {
        background: transparent !important;
        position: static !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
    
    .menu-background {
        display: none;
    }
    
    .menu-header {
        position: static;
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #277c65;
        text-align: center;
        z-index: 1;
        position: relative;
    }
    
    .menu-header h2 {
        font-size: 1.5rem;
        color: #68f4de;
        text-shadow: 0 0 10px rgba(104, 244, 222, 0.3);
    }
    
    .menu-list {
        max-height: 60vh;
        margin-top: 5vh;
        margin-bottom: 5vh;
        width: 100%;
        gap: 0.001rem!important;
        flex-grow: 1;
        scrollbar-width: thin;
        -ms-overflow-style: auto;
        padding: 0 20px;
        z-index: 1;
        position: relative;
    }
    
    .menu-list::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    
    .menu-list::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
    }
    
    .menu-list::-webkit-scrollbar-thumb {
        background: #277c65;
        border-radius: 3px;
    }
    
    .menu-item {
        width: 100%;
        max-width: 250px;
        margin-bottom: 15px;
        z-index: 1;
        position: relative;
    }
    
    .menu-link {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: 60px !important;
        background-image: url('../images/kategoriabg.webp') !important;
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        color: #fff !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        line-height: 60px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9) !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .menu-link:hover {
        transform: scale(1.05) !important;
        filter: brightness(1.1) !important;
    }

    .social-media-fixed {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 10px auto !important;
        background: transparent !important;
        z-index: 1;
        position: relative;
    }
    
    .social-media-bg {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .social-bg-image {
        display: none !important;
    }
    
    .social-media-icons {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        justify-content: space-around !important;
        display: flex !important;
        background: transparent !important;
    }
    
    .social-media-icon img {
        width: 60px !important;
        height: 60px !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.7)) !important;
    }
    
    .social-media-icon:hover {
        transform: scale(1.1) !important;
    }
    
    .admin-link {
        display: none !important;
    }
    
    .content {
        padding: 1rem;
        padding-top: 2vh;
    }
    
    .sections-container {
        max-width: 100%;
		 padding: 2vh;
    }
    
    .item-content {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .intro-gif	{
        max-width: 100%;
		padding: 2vh;
		margin-top: 7vh!important;
    }
	
    .category-image {
        max-width: 100%;
    }
    
    .back-to-top {
        position: fixed !important;
        bottom: 3% !important;
        right: 5% !important;
        width: 50px !important;
        height: 50px !important;
        background: linear-gradient(45deg, #1c2f29, #07714b) !important;
        color: #d4d4d4 !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        font-size: 1.2rem !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }
    
    @media (max-width: 768px) {
        .back-to-top {
            width: 45px !important;
            height: 45px !important;
            font-size: 1.1rem !important;
        }
    }
    
    @media (max-width: 480px) {
        .back-to-top {
            width: 40px !important;
            height: 40px !important;
            font-size: 1rem !important;
        }
    }
    
    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
        background: linear-gradient(90deg, #1c2f29, #07714b) !important;
    }
    
    .menu-content {
        padding: 20px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        background: transparent !important;
        border-left: none !important;
        box-shadow: none !important;
        overflow-y: auto !important;
    }
}

.intro-gif {
    text-align: center;
    margin-bottom: 4vh;
    margin-top: 3vh;
    width: 100%;
    position: relative;
    max-width: 100%;
    padding: 2vh;
}

.intro-gif video {
    width: 100%;
    max-width: 80vh;
    height: auto;
    display: block;
    margin: 0 auto;
}

.intro-gif img {
    width: 100%;
    max-width: 80vh;
    height: auto;
    display: block;
    margin: 0 auto;
}

.intro-gif .video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.06);
    width: 100%;
    max-width: 80vh;
    height: auto;
    pointer-events: none;
    z-index: 2;
    padding: 0;
}

@media (max-width: 1200px) {
    .intro-gif .video-frame {
        padding: 1vh;
    }
    
    .intro-gif .video-frame {
        transform: translate(-50%, -50%) scale(1.04);
    }
}

@media (max-width: 768px) {
    .intro-gif .video-frame {
        padding: 1.5vh;
        transform: translate(-50%, -50%) scale(1.02);
    }
    
    .intro-gif {
        padding: 1.5vh;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

@media (min-width: 1201px) {
    .menu-toggle {
        display: none !important;
    }
}

.menu-link.active {
    color: #1eeedb !important;
    text-shadow: 0 0 10px rgba(30, 238, 219, 0.5);

}

.category-section {
    scroll-margin-top: 100px;
}

.ql-editor img,
.item-content img {
    max-width: 100% !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 10px !important;
	    margin-left: 10px !important;
    padding: 2px !important;
    background-color: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.85));
}