:root {
    --bg-main: #080a0c;
    --bg-card: #12161d;
    --accent-red: #ff0000;
    --gold: #ffcc00;
    --blue: #0088ff;
    --text-gray: #a0a6b1;
    --max-width: 1280px;
    --header-height: 110px;
}

* { box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }

body { 
    background-color: var(--bg-main); 
    color: var(--text-gray); 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    user-select: none; 
    overflow-x: hidden; 
    width: 100%; 
    line-height: 1.5;
    padding-bottom: 80px; 
}

.article-content a, .ticker-text a {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.article-content a:hover, .ticker-text a:hover {
    color: var(--gold) !important;
}

.main-header { 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    background: var(--bg-main); 
    border-bottom: 1px solid #1a1e23; 
    width: 100%; 
}

.header-top-row { 
    display: flex; 
    align-items: center; 
    background: #000; 
    height: var(--header-height); 
    overflow: visible; 
    position: relative; 
}

.story-wrapper { 
    flex: 1; 
    overflow: hidden; 
    cursor: grab; 
    height: 100%; 
    display: flex; 
    align-items: center; 
}
.story-wrapper:active { cursor: grabbing; }

.story-track { 
    display: flex; 
    gap: 15px; 
    animation: slideScroll 45s linear infinite; 
    width: max-content; 
    padding: 0 20px; 
}
.story-wrapper:hover .story-track { animation-play-state: paused; }

.story-card { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 85px; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    flex-shrink: 0; 
    text-decoration: none; 
}
.story-card:hover { transform: scale(1.1); }

.story-card img { 
    width: 65px; 
    height: 65px; 
    border-radius: 50%; 
    border: 2px solid var(--accent-red); 
    padding: 2px; 
    object-fit: contain; 
    background: #fff; 
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.story-card span { 
    font-size: 10px; 
    color: var(--gold); 
    margin-top: 5px; 
    font-weight: bold; 
    text-align: center; 
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.live-ticker-section { padding: 40px 10px; background: #000; }

.ticker-header-container {
    border: 1px solid #ffcc00;
    border-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.article-title { color: #ffcc00; font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.title-line { color: #ff3333; font-weight: 900; }

.live-comment-ticker { width: 100%; overflow: hidden; }

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-card {
    background: #111419;
    border-radius: 12px;
    padding: 20px;
    margin-right: 20px;
    width: 350px;
    border: 1px solid #1e232b;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-meta { display: flex; gap: 12px; align-items: center; }
.user-icon-box {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid #ffcc00;
    color: #ffcc00;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.username { color: #fff; font-weight: 700; font-size: 14px; display: block; }
.star-rating { color: #ffcc00; font-size: 9px; margin-top: 2px; }
.review-text { color: #a0aec0; font-size: 13px; line-height: 1.5; margin: 0; }

.lang-container { padding: 0 15px; border-left: 1px solid #222; position: relative; z-index: 2001; }
.lang-btn { background: #1a1e23; border: 1px solid #333; color: #fff; padding: 10px 15px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 12px; transition: 0.3s; }
.lang-btn:hover { border-color: var(--gold); background: #252a33; }

.lang-menu { 
    display: none; 
    position: absolute; 
    right: 0; /* right: 15px yerine 0 yaparak hizayı düzeltin */
    top: 100%; 
    background: #0c0f13; 
    border: 1px solid #444; 
    width: 180px; 
    max-height: 350px; 
    overflow-y: auto; 
    border-radius: 8px; 
    z-index: 99999; /* Çok yüksek bir değer verin */
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    margin-top: 10px;
}
.lang-menu.show { display: block; animation: menuFadeIn 0.2s ease-out; }
.lang-item { padding: 12px 15px; cursor: pointer; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #1a1e23; font-size: 13px; color: #fff; transition: 0.2s; }
.lang-item:hover { background: #1a1e23; color: var(--gold); }

.provider-nav { 
    background: #0c0f13; 
    border-bottom: 3px solid var(--accent-red); 
    width: 100%; 
    position: sticky; 
    top: var(--header-height); 
    z-index: 1500; 
    backdrop-filter: blur(10px);
}
.nav-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; padding: 12px 15px; gap: 15px; }

.hepsi-btn { 
    background: linear-gradient(145deg, #ff0000, #b30000); 
    color: #fff; border: none; padding: 10px 22px; border-radius: 8px; 
    font-weight: 800; cursor: pointer; display: flex; align-items: center; 
    gap: 10px; font-size: 13px; flex-shrink: 0; transition: 0.3s; 
    white-space: nowrap;
}
.hepsi-btn:hover { filter: brightness(1.2); transform: scale(1.02); }

.dropdown-list { 
    display: none; position: absolute; background: #0c0f13; border: 1px solid #333; 
    min-width: 250px;
    max-width: 350px;
    max-height: 400px; overflow-y: auto; 
    list-style: none; padding: 5px 0; 
    margin-top: 10px; border-radius: 12px; z-index: 10000; box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.dropdown-list.show { display: block; animation: menuFadeIn 0.3s ease-out; }

.dropdown-list li { 
    padding: 12px 20px; 
    cursor: pointer; 
    transition: 0.25s; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    border-left: 3px solid transparent; 
    color: #fff; 
    white-space: nowrap;
}
.dropdown-list li:hover { background: #1a1e23; color: var(--gold); border-left-color: var(--gold); padding-left: 28px; }

.text-provider-list { 
    display: flex; gap: 12px; overflow-x: auto; cursor: grab; padding: 5px 0; 
    scrollbar-width: none; 
}
.text-provider-list::-webkit-scrollbar { display: none; }

.text-provider-list span { 
    background: #1a1e23; color: #d1d5db; padding: 8px 18px; border-radius: 25px; 
    font-size: 12px; font-weight: 700; white-space: nowrap; border: 1px solid #333; 
    display: flex; align-items: center; gap: 8px; transition: 0.3s;
    flex-shrink: 0;
}
.text-provider-list span:hover { border-color: var(--gold); color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,204,0,0.2); }

.content-area { padding: 30px 0; width: 100%; display: flex; flex-direction: column; align-items: center; }
.max-container { width: 100%; max-width: var(--max-width); padding: 0 20px; }
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.game-card { 
    background: var(--bg-card); border-radius: 14px; overflow: hidden; 
    border: 1px solid #1a1e23; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative; 
}
.game-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.img-container { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.game-card:hover img { transform: scale(1.15); }

.provider-badge { 
    position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.85); 
    color: var(--gold); padding: 5px 10px; font-size: 10px; font-weight: 900; 
    border-radius: 6px; border: 1px solid var(--gold); z-index: 2;
}
.game-info { 
    position: absolute; bottom: 0; width: 100%; padding: 20px 10px 10px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.95)); z-index: 2;
}
.game-card h4 { margin: 0; font-size: 13px; color: #fff; text-align: center; font-weight: 600; }

.main-article-section, .faq-section, .reviews-section { 
    margin-top: 40px; padding: 30px; background: #0c0f13; 
    border-radius: 16px; border: 1px solid #1a1e23; width: 100%; 
}
.article-title { color: #fff; font-size: 20px; margin-bottom: 20px; border-left: 4px solid var(--accent-red); padding-left: 15px; font-weight: 800; }

.article-content { color: var(--text-gray); font-size: 14px; overflow: hidden; transition: 0.6s ease-in-out; position: relative; line-height: 1.8; }
.article-content.collapsed { max-height: 450px; }
.article-content.collapsed::after { 
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; 
    height: 100px; background: linear-gradient(transparent, #0c0f13); 
}

.reviews-grid { display: flex; flex-direction: column; gap: 15px; width: 100%; }
.review-item { 
    background: #12161d; 
    border: 1px solid #1a1e23; 
    border-radius: 12px; 
    padding: 22px; 
    display: flex; 
    gap: 18px; 
    align-items: flex-start; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.review-item:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold); 
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.1); 
    background: #161b24; 
}

.user-icon-box { 
    background: #1a1e23; 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border: 2px solid var(--gold); 
    flex-shrink: 0; 
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}
.user-icon-box i { font-size: 18px; color: var(--gold); }

.user-name { 
    color: #fff; 
    font-weight: 700; 
    font-size: 14px; 
    display: block; 
    margin-bottom: 4px; 
}
.star-rating { 
    color: var(--gold); 
    font-size: 10px; 
    letter-spacing: 2px; 
    margin-bottom: 10px; 
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3); 
}
.review-text { 
    color: var(--text-gray); 
    font-size: 0.9rem; 
    line-height: 1.6; 
    font-style: italic; 
    margin: 0; 
    text-align: left; 
}

.faq-container { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.faq-item { background: #12161d; border: 1px solid #1a1e23; border-radius: 10px; overflow: hidden; transition: 0.3s; }
.faq-question { 
    padding: 18px 20px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    gap: 15px; 
    color: #fff; 
    font-weight: 600; 
    font-size: 14px; 
}
.faq-question span { flex: 1; }
.faq-question:hover { background: #1a1e23; }

.faq-question i.arrow-icon { 
    margin-left: auto; 
    flex-shrink: 0; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
.faq-question i:first-child { flex-shrink: 0; width: 25px; text-align: center; }

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s;
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 15px 20px 20px;
    border-top: 1px solid #1a1e23;
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.pagination-area, .toggle-area { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 30px; }
.casino-btn {
    background: #1a1e23; border: 2px solid #333; color: #fff; padding: 14px 35px;
    border-radius: 50px; cursor: pointer; font-weight: 800; font-size: 12px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
    transition: all 0.5s ease;
    min-width: 220px; text-transform: uppercase; letter-spacing: 1px;
    white-space: nowrap;
}

.casino-btn:hover { transform: translateY(-3px); }

.btn-blue { border-color: var(--blue) !important; }
.btn-blue:hover { background: var(--blue) !important; color: #fff !important; box-shadow: 0 0 20px rgba(0, 136, 255, 0.35); }

.btn-red { border-color: var(--accent-red) !important; }
.btn-red:hover { background: var(--accent-red) !important; color: #fff !important; box-shadow: 0 0 20px rgba(255, 0, 0, 0.35); }

.btn-gold { border-color: var(--gold) !important; }
.btn-gold:hover { background: var(--gold) !important; color: #000 !important; box-shadow: 0 0 20px rgba(255, 204, 0, 0.35); }

#loadMoreBtn { border-color: #fff !important; }
#loadMoreBtn:hover { 
    background: #fff !important; 
    color: #000 !important; 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.35); 
}

.hidden { display: none !important; }
.faq-item.hidden, .review-item.hidden { display: none !important; }

.review-item, .faq-item {
    animation: menuFadeIn 0.4s ease forwards;
}

.article-image-left {
    float: left;
    width: 280px;
    height: auto;
    margin-right: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.article-image-left:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    filter: brightness(1.1);
    cursor: pointer;
}

h2 { clear: both; padding-top: 20px; }

.main-footer {
    background: #050709;
    padding: 60px 0 120px 0;
    border-top: 1px solid #1a1e23;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo { color: #fff; font-weight: 800; font-size: 24px; margin: 0; }
.footer-logo span { color: var(--accent-red); }
.footer-info p { font-size: 14px; margin-top: 15px; max-width: 400px; color: var(--text-gray); }
.footer-links h4, .footer-social h4 { color: #fff; margin-bottom: 20px; font-size: 16px; font-weight: 700; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text-gray); text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-links ul li a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 15px; }
.social-icons a { 
    width: 40px; height: 40px; background: #12161d; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: #fff; border: 1px solid #222; transition: 0.3s;
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.footer-bottom { 
    text-align: center; margin-top: 50px; padding-top: 25px; 
    border-top: 1px solid #1a1e23; font-size: 12px; color: #555;
}

.sticky-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(12, 15, 19, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid var(--gold);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
}

.menu-item, .menu-item:link, .menu-item:visited {
    text-decoration: none !important;
    color: #8e94a0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-item i { font-size: 20px; }
.menu-item span { font-size: 10px; font-weight: 600; letter-spacing: 0.5px; }

.menu-item.active, .menu-item:active, .menu-item:focus {
    color: #ffcc00 !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.menu-item.special { position: relative; top: -15px; }

.special-inner {
    background: linear-gradient(145deg, var(--accent-red), #b30000);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--bg-main);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    color: #fff;
}
.special-inner i { font-size: 24px; }

.provider-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 30px;
}

.provider-brand-card, .provider-stats-card {
    background: linear-gradient(145deg, #161a20, #0c0f13);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.provider-brand-card::after, .provider-stats-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(30deg);
    transition: all 0.7s;
}

.provider-brand-card:hover::after, .provider-stats-card:hover::after { left: 120%; }
.provider-brand-card:hover, .provider-stats-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.1);
}

.provider-brand-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.provider-main-logo {
    max-width: 170px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.05));
    transition: transform 0.3s ease;
}
.provider-brand-card:hover .provider-main-logo { transform: scale(1.05); }

.provider-stats-card {
    flex: 2;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-badge {
    background: rgba(0, 182, 122, 0.1);
    color: #00ffaa;
    border: 1px solid rgba(0, 182, 122, 0.3);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(0, 182, 122, 0.1);
    text-transform: uppercase;
}

.rating-score-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.big-score {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.star-rating {
    color: #ffcc00;
    font-size: 1.4rem;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    margin-bottom: 5px;
}

.stats-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-item:hover {
    background: rgba(255, 204, 0, 0.05);
    border-color: rgba(255, 204, 0, 0.2);
}

.stat-value {
    display: block;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.stat-label {
    font-size: 0.6rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spin-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
    z-index: 10002; display: none; opacity: 0; transition: 0.4s;
}
.spin-overlay.active { display: block; opacity: 1; }

.spin-popup {
    position: fixed; bottom: -100%; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 500px; max-height: 90vh;
    background: #080a0c; border-top: 4px solid #ffcc00;
    z-index: 10003; transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 40px 40px 0 0; display: flex; flex-direction: column;
    padding-bottom: 30px; overflow: hidden;
}
.spin-popup.active { bottom: 0; }

.spin-header {
    padding: 15px 20px; display: flex; justify-content: space-between; align-items: center;
    background: #12161d; border-bottom: 1px solid #1a1e23;
}
.spin-header h3 { color: #ffcc00; margin: 0; font-size: 16px; font-weight: 800; }
.spin-header button { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

.spin-body { display: flex; flex-direction: column; align-items: center; padding: 20px; }

.wheel-outer-frame {
    position: relative; width: 340px; height: 340px;
    background: radial-gradient(circle, #5d3a24 0%, #2a1a12 100%);
    border-radius: 50%; padding: 10px;
    box-shadow: inset 0 0 20px #000, 0 10px 40px rgba(0,0,0,0.8);
    border: 3px solid #ffcc00;
}

.roulette-wheel {
    width: 100%; height: 100%; border-radius: 50%; position: relative;
    overflow: hidden; transition: transform 8s cubic-bezier(0.15, 0, 0.1, 1);
    background: #000; border: 8px solid #1a1a1a;
}

.wheel-slice {
    position: absolute; width: 50%; height: 50%;
    left: 50%; top: 50%; transform-origin: 0 0;
    transform: rotate(calc(var(--i) * (360deg / var(--total)))) skewY(calc(90deg - (360deg / var(--total))));
    background: #0e0e0e; border: 0.5px solid rgba(255,204,0,0.2);
}
.wheel-slice:nth-child(even) { background: #b00000; }
.wheel-slice:nth-child(3n) { background: #000; }

.wheel-slice span {
    position: absolute; left: 8px; top: 20px;
    transform: skewY(calc(-1 * (90deg - (360deg / var(--total))))) rotate(8deg);
    color: #fff; font-weight: 800; font-size: 9px; width: 80px; text-shadow: 1px 1px 2px #000;
}

.wheel-center-hub {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; z-index: 120;
}
.hub-core {
    width: 100%; height: 100%; background: radial-gradient(circle, #ffcc00, #b89500);
    border-radius: 50%; border: 3px solid #3d261a; box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.hub-spoke {
    position: absolute; top: 50%; left: 50%; width: 120%; height: 10px;
    background: #ffcc00; transform: translate(-50%, -50%); border-radius: 5px;
}
.hub-spoke:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }

.ball-track {
    position: absolute; top: 40px; left: 40px; width: calc(100% - 80px); height: calc(100% - 80px);
    transition: transform 8s cubic-bezier(0.1, 0, 0.05, 1); z-index: 100;
}
.ball {
    position: absolute; top: 0; left: 50%; width: 14px; height: 14px;
    background: #fff; border-radius: 50%; transform: translateX(-50%);
    box-shadow: 0 0 10px #fff;
}

.spin-result {
    display: none; text-align: center; color: #fff;
}
.spin-result.show { display: block; animation: zoomIn 0.5s ease forwards; }

.congrats-small { color: #ffcc00; font-size: 14px; letter-spacing: 2px; margin: 0; }
.congrats-big { font-size: 30px; font-weight: 800; margin: 10px 0 20px 0; text-shadow: 0 0 15px #ffcc00; }

.winner-card {
    background: #1a1e23; padding: 25px; border-radius: 25px;
    border: 2px solid #ffcc00; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
#winnerLogo { width: 120px; height: 120px; object-fit: contain; background: #fff; border-radius: 15px; padding: 10px; margin-bottom: 15px; }

.spin-main-btn {
    background: #ffcc00; color: #000; border: none; padding: 15px 45px;
    font-size: 18px; font-weight: 800; border-radius: 50px; cursor: pointer; transition: 0.3s;
}
.spin-main-btn:disabled { background: #444; color: #888; cursor: not-allowed; }

.claim-btn {
    display: inline-block; padding: 15px 35px; background: linear-gradient(135deg, #00c853, #007e33);
    color: #fff; text-decoration: none; font-weight: 800; border-radius: 50px; animation: pulse 1.5s infinite;
}

@keyframes slideScroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}
@keyframes tickerScroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-33.33%); } 
}
@keyframes menuFadeIn { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
@keyframes zoomIn { 
    from { opacity: 0; transform: scale(0.5); } 
    to { opacity: 1; transform: scale(1); } 
}
@keyframes pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.05); } 
    100% { transform: scale(1); } 
}

@media (max-width: 768px) {
    :root { --header-height: 100px; }
    .header-top-row { height: var(--header-height); }
    .story-card { width: 75px; }
    .story-card img { width: 55px; height: 55px; }
    
    .provider-nav { top: var(--header-height); }
    .nav-inner { padding: 10px; gap: 10px; }
    .hepsi-btn { padding: 10px 15px; font-size: 11px; }

    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .main-article-section, .faq-section, .reviews-section { padding: 20px; margin-top: 25px; }
    
    .ticker-item { min-width: 300px; padding: 12px; }
    .ticker-text { font-size: 11px; }
    
    .casino-btn { width: 100%; padding: 12px; font-size: 11px; }
    .lang-menu { right: 5px; width: 160px; }
    
    .article-content.collapsed { max-height: 350px; }
    
    .review-text { font-size: 0.85rem; }
    .faq-answer { font-size: 0.85rem; }
    .review-item { padding: 15px; }
    .user-name { font-size: 13px; }
    .user-icon-box { width: 40px; height: 40px; }
    
    .provider-profile-header { flex-direction: column; }
    .big-score { font-size: 2.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-info p { margin: 15px auto; }
    .social-icons { justify-content: center; }
    
    .wheel-outer-frame { width: 260px; height: 260px; }
    .spin-popup { height: 75vh; }
    .congrats-big { font-size: 24px; }
}

@media (max-width: 600px) {
    .article-image-left {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.game-header-logo {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.game-header-logo img {
    max-width: 250px;
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4));
}

.play-action-box {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-real-play {
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transition: transform 0.2s;
}

.btn-real-play:hover {
    transform: scale(1.02);
}

.btn-demo-play {
    background: var(--bg-card);
    color: var(--gold);
    padding: 15px;
    border-radius: 12px;
    border: 2px solid var(--gold);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-demo-play:hover {
    background: var(--gold);
    color: #000;
}

.demo-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.demo-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 80vh;
    background: #000;
    border: 3px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
}

.demo-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.close-demo {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 0 10px #000;
}

.provider-stats-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px !important;
    background: linear-gradient(145deg, #161b22 0%, #0d1117 100%);
    border: 1px solid rgba(255, 204, 0, 0.15);
    border-radius: 15px;
}

.stats-top-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.game-title-h2 {
    color: #fff;
    margin: 2px 0 0 0;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.provider-badge {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.premium-rating-badge {
    background: linear-gradient(to right, #ffcc00, #ffaa00);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 4px;
}

.slot-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-box:hover { background: rgba(255, 204, 0, 0.05); border-color: var(--gold); }

.feature-box i { color: var(--gold); font-size: 1rem; margin-bottom: 5px; }
.f-label { font-size: 9px; color: var(--text-gray); text-transform: uppercase; }
.f-value { color: #fff; font-weight: 700; font-size: 12px; }

.rating-action-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,204,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border: 2px solid var(--gold);
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,204,0,0.2);
}

.score-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.score-circle .star-rating { margin-top: 4px; display: flex; gap: 1px; }
.score-circle .star-rating i { font-size: 8px; color: var(--gold); }

.play-action-box { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.btn-real-play-premium {
    background: linear-gradient(90deg, #e60000, #990000);
    color: #fff !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #660000;
    transition: 0.1s;
}

.btn-real-play-premium:active { transform: translateY(2px); box-shadow: 0 2px 0 #660000; }

.btn-demo-play-premium {
    background: transparent;
    color: var(--text-gray);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 480px) {
    .slot-features-grid { grid-template-columns: repeat(2, 1fr); }
    .game-title-h2 { font-size: 1.3rem; }
}

.provider-stats-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px !important;
    background: linear-gradient(145deg, #161b22 0%, #0d1117 100%);
    border: 1px solid rgba(255, 204, 0, 0.15);
    border-radius: 15px;
}

.stats-top-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.game-title-h2 {
    color: #fff;
    margin: 2px 0 0 0;
    font-size: 1.6rem;
    font-weight: 800;
}

.provider-badge {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.premium-rating-badge {
    background: linear-gradient(to right, #ffcc00, #ffaa00);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 4px;
}

.slot-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box i { color: var(--gold); font-size: 1rem; margin-bottom: 5px; }
.f-label { font-size: 9px; color: var(--text-gray); text-transform: uppercase; }
.f-value { color: #fff; font-weight: 700; font-size: 12px; }

.rating-action-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,204,0,0.2);
}

.score-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.score-circle .star-rating i { font-size: 8px; color: var(--gold); }

.play-action-box { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.btn-real-play-premium {
    background: linear-gradient(90deg, #e60000, #990000);
    color: #fff !important;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #660000;
    transition: 0.1s;
    text-decoration: none;
}

.btn-demo-play-premium {
    background: linear-gradient(90deg, #0088ff, #0055ff);
    color: #fff !important;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #003399;
    transition: 0.1s;
}

.btn-real-play-premium:active, .btn-demo-play-premium:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.5);
}

.demo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-wrapper {
    width: 100%;
    max-width: 1000px;
    background: #1a1d23;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold);
}

.demo-header {
    background: #252932;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    color: var(--gold);
    font-weight: 800;
}

.demo-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.demo-iframe-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.demo-footer { padding: 15px; display: flex; justify-content: center; }

.btn-real-play-mini {
    background: var(--accent-red);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .slot-features-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-modal { padding: 10px; }
}

.main-article-section .provider-brand-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    background: transparent;
}

.main-article-section .provider-main-logo {
    max-width: 100%;
    width: 300px !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .main-article-section .provider-main-logo {
        width: 250px !important;
    }
}

@media (max-width: 480px) {
    .main-article-section .provider-main-logo {
        width: 200px !important;
    }
}

.provider-profile-header {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
}

.provider-brand-card {
    flex: 0 0 300px;
    background: var(--bg-card);
    border: 2px solid #222;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-main-logo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.provider-stats-card {
    flex: 1;
    background: var(--bg-card);
    border: 2px solid #222;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .provider-profile-header {
        flex-direction: column;
        gap: 15px;
    }

    .provider-brand-card {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 5px;
    }

    .provider-main-logo {
        max-width: 280px;
        margin: 0 auto;
    }

    .provider-stats-card {
        width: 100%;
        padding: 20px 15px;
        border: 2px solid #222;
    }

    .slot-features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100%;
    }

    .feature-box {
        margin: 0 !important;
        width: 100% !important;
    }

    .stats-top-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .rating-action-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .play-action-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-real-play-premium, 
    .btn-demo-play-premium {
        width: 100%;
        margin: 0;
        justify-content: center;
        text-align: center;
    }
}

.article-content.collapsed {
    max-height: 450px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

@media (max-width: 768px) {
    .article-content.collapsed {
        max-height: 1200px; 
    }
}

.article-content.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-main));
    pointer-events: none;
}

@media (max-width: 768px) {
    .header-top-row {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }

    .lang-container {
        margin-right: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .lang-container::before, .lang-container::after,
    .lang-btn::before, .lang-btn::after {
        content: none !important;
        display: none !important;
    }

    .lang-btn {
        width: auto !important;
        min-width: 40px !important;
        height: 36px !important;
        background: transparent !important;
        border: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 5px !important;
        padding-right: 2px !important;
    }

    .lang-btn .fi {
        width: 20px !important;
        height: 14px !important;
        border-radius: 2px !important;
        object-fit: contain !important;
        filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5)) !important;
    }

    .lang-btn .fa-chevron-down {
        display: inline-block !important;
        font-size: 10px !important;
        color: #ffffff !important;
        margin: 0 !important;
        opacity: 0.8;
    }

    .lang-btn .l-name {
        display: none !important;
    }

    #langMenu {
        right: 0 !important;
    }
}

body.menu-active .reading-nav-container {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.reading-nav-container {
    z-index: 9999 !important;
}

body.menu-active .reading-nav-container {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

:root {
    --bg-main: #080a0c;
    --bg-card: #12161d;
    --accent-red: #ff0000;
    --gold: #ffcc00;
    --text-gray: #a0a6b1;
    --max-width: 1280px;
}

* { box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }

body { 
    background-color: var(--bg-main); 
    color: var(--text-gray); 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    user-select: none; 
    overflow-x: hidden; 
    width: 100%; 
    line-height: 1.5;
    padding-bottom: 80px; 
    font-size: 12px;
}

a, .article-content a, .faq-question a, .faq-answer a, .comment-text a, .ticker-text a, .live-comment-ticker a, .star-rating a {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
a:hover, .article-content a:hover, .faq-question a:hover, .faq-answer a:hover, .comment-text a:hover, .ticker-text a:hover, .live-comment-ticker a:hover {
    color: var(--gold) !important;
}

.article-title {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    border-left: 3px solid var(--accent-red);
    padding-left: 10px;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    margin-bottom: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.faq-question {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.reviews-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    margin-top: 15px !important;
}

.review-card {
    background: rgba(255,255,255,0.02) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    display: flex !important;
    flex-direction: column !important;
}

.reviewer-info {
    display: flex !important;
    align-items: center !important; 
    gap: 8px !important;
    margin-bottom: 2px !important;
}

.reviewer-info img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
}

.reviewer-details {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.reviewer-name {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    margin: 0 !important;
}

.star-rating {
    display: inline-flex !important;
    gap: 1px !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.star-rating i {
    font-size: 8px !important;
    color: var(--gold) !important;
    width: auto !important;
    height: auto !important;
}

.comment-text {
    font-size: 12px !important;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 2px !important;
    padding-left: 28px; 
    line-height: 1.4;
}

@media (max-width: 768px) {
    body { font-size: 12px !important; }
    .article-title { font-size: 13px !important; }
    
    .review-card { 
        padding: 6px 10px !important; 
    }
    
    .star-rating i {
        font-size: 7px !important;
    }

    .comment-text {
        padding-left: 0; 
        font-size: 12px !important;
    }
}

.sticky-bottom-menu {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    height: 70px;
    background: #0f1216;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.live-ticker-section {
    padding: 40px 10px;
    background: #000;
}

.ticker-header-container {
    border: 1px solid #ffcc00;
    border-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.article-title {
    color: #ffcc00;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-line {
    color: #ff3333;
    font-weight: 900;
}

.live-comment-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 80s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-card {
    background: #111419;
    border-radius: 12px;
    padding: 20px;
    margin-right: 20px;
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #1e232b;
}

.card-header {
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 70s linear infinite;
}

.user-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-icon-box {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid #ffcc00;
    color: #ffcc00;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.username {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.star-rating {
    display: flex;
    gap: 2px;
    color: #ffcc00;
    font-size: 10px;
}

.review-time {
    color: #555e6b;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.review-time i {
    font-size: 12px;
}

.review-text {
    color: #a0aec0;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    white-space: normal;
}

.review-text a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-style: italic;
}

.review-text a:hover {
    color: #ffcc00;
}

@media (max-width: 768px) {
    .hepsi-btn {
        position: relative;
        text-indent: -9999px; 
        white-space: nowrap;
        overflow: hidden;
        min-width: 80px;
    }

    .hepsi-btn i {
        text-indent: 0;
        position: absolute;
        overflow: visible;
    }

    .hepsi-btn i.fa-dice-d20 {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hepsi-btn i.arrow-icon {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hepsi-btn::after {
        content: "Alle";
        text-indent: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}