.hero-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 10;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px 400px;
    gap: 24px;
    position: relative;
    z-index: 2;
    min-height: 100px;
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    position: relative;
    margin-left: 100px;
}

.hero-slider-wrapper {
    overflow: visible;
    border-radius: 12px;
    position: relative;
    height: 400px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateX(100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.hero-slide.next {
    opacity: 0.6;
    transform: translateX(10%) scale(0.9);
    z-index: 2;
}

.hero-slide.prev {
    opacity: 0.3;
    transform: translateX(-10%) scale(0.9);
    z-index: 1;
}

.hero-slide-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide-content img {
    width: 100%;
    height: 400px;
    object-fit: fill;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-slide.next .hero-slide-content img,
.hero-slide.prev .hero-slide-content img {
    filter: brightness(0.7);
}

.hero-nav-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.hero-slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-prev-btn,
.hero-next-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.hero-prev-btn:hover,
.hero-next-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hero-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px 0;
    z-index: 4;
}

.hero-category-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-category-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.hero-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-category-title {
    flex: 1;
    font-weight: 600;
    font-size: 14px;
}

.hero-category-arrow {
    font-size: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.hero-category-item:hover .hero-category-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.hero-weekly-stars {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 40px 0;
    margin-right: 100px;
    z-index: 4;
}

.weekly-stars-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    margin-bottom: 8px;
}

.weekly-stars-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.weekly-stars-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weekly-star-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.weekly-star-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.weekly-star-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.weekly-star-item:hover::before {
    opacity: 1;
}

.weekly-star-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.weekly-star-badge.earning {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.weekly-star-badge.speed {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.weekly-star-badge.rating {
    background: linear-gradient(135deg, #ff6b35, #f39c12);
}

.weekly-star-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.weekly-star-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.weekly-star-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--success-color), #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    border: 2px solid var(--bg-primary);
}

.weekly-star-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.weekly-star-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.weekly-star-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.weekly-star-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2px;
}

.weekly-stars-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.weekly-stars-empty i {
    font-size: 24px;
    color: var(--text-muted);
    opacity: 0.7;
}

.weekly-stars-empty span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.stories-container {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
}

.stories-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding: 0 20px;
}

.stories-wrapper {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

.stories-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    color: var(--text-muted);
    font-size: 14px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 0 20px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.home-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    grid-column: 1 / -1;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.home-loading .loading-spinner {
    width: 24px;
    height: 24px;
}

.no-stories-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    color: var(--text-muted);
    font-size: 14px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 0 20px;
}

.no-stories-message i {
    font-size: 20px;
    color: var(--primary-color);
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
}

.story-item:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.story-avatar {
    position: relative;
    width: 64px;
    height: 64px;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-primary);
}

.story-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--success-color));
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.story-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.story-viewer.active {
    display: block;
}

.story-viewer-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.story-viewer-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-viewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.story-viewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-viewer-user-details {
    display: flex;
    flex-direction: column;
}

.story-viewer-username {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.story-viewer-store-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.story-viewer-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.story-viewer-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.story-viewer-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    max-height: 80vh;
    width: 90%;
}

.story-viewer-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.story-viewer-progress {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-viewer-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), white);
    border-radius: 2px;
    width: 0%;
    animation: story-progress 5s linear forwards;
}

@keyframes story-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse-ring {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-home {
    margin-bottom: 48px;
}

.home-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    border-radius: 5px;
}

.home-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.swiper-navigation {
    display: flex;
    gap: 8px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom,
.swiper-button-prev-custom-ring,
.swiper-button-next-custom-ring {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover,
.swiper-button-prev-custom-ring:hover,
.swiper-button-next-custom-ring:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.swiper-button-prev-custom:disabled,
.swiper-button-next-custom:disabled,
.swiper-button-prev-custom-ring:disabled,
.swiper-button-next-custom-ring:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.son-ilanlar-swiper,
.son-ring-swiper {
    overflow: hidden;
}

.son-ilanlar-swiper .swiper-wrapper,
.son-ring-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.son-ilanlar-swiper .swiper-slide,
.son-ring-swiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
    display: flex;
    overflow: visible;
}

@media (min-width: 1200px) {
    .son-ilanlar-swiper .swiper-slide,
    .son-ring-swiper .swiper-slide {
        width: 280px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .son-ilanlar-swiper .swiper-slide,
    .son-ring-swiper .swiper-slide {
        width: 240px;
    }
}

@media (max-width: 767px) {
    .son-ilanlar-swiper .swiper-slide,
    .son-ring-swiper .swiper-slide {
        width: calc(50% - 6px);
        min-width: 140px;
    }
}

.son-ilanlar-swiper .mp-card,
.son-ring-swiper .mp-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    contain: none;
    isolation: auto;
}

.home-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-title i {
    color: var(--primary-color);
}

.home-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 16px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
}

.home-link:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(4px);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.yayincilar-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.yayincilar-container::-webkit-scrollbar {
    display: none;
}

.yayinci-item {
    position: relative;
    min-width: 150px;
    height: 180px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.yayinci-item img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.yayinci-item:hover img {
    border-color: var(--primary-color);
}

.yayinci-sponsor-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
    color: white;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: pulse-gold 2s infinite;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yayinci-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yayinci-item:hover .yayinci-name {
    color: var(--primary-color);
}

.no-results-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    grid-column: 1 / -1;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    flex-direction: column;
}

.no-results-placeholder.full-width {
    grid-column: 1 / -1;
}

.no-results-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.7;
    margin-bottom: 8px;
}

.no-results-placeholder small {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

.mp-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    overflow: visible;
    cursor:pointer;
}

.mp-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    z-index: 20;
}

.mp-card.stats-open {
    z-index: 20;
    overflow: visible;
}

.mp-online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-green 2s infinite;
}

.mp-discount-badge {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-red 2s infinite;
    flex-shrink: 0;
}

.mp-reverse-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--warning-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-reverse-badge.normal {
    background: var(--info-color);
}

.mp-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 12px 0;
    position: relative;
    gap: 8px;
}

.mp-main-image {
    width: 64px;
    height: 64px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.mp-main-image:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.mp-main-image img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.mp-title {
    text-align: center;
    margin: 8px 0;
}

.mp-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 6px;
}

.mp-server {
    display: flex;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.mp-stats {
    flex: 1;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.mp-stats-visible {
    transition: all 0.3s ease;
    position: relative;
}

.card-stats-gradient {
    display: inline-table;
    position: absolute;
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    left: 0;
    z-index: 9;
    height: 45%;
    width: 100%;
    pointer-events: none;
}

.mp-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 4px;
    background: var(--bg-secondary);
    transition: all 0.2s ease;
}

.mp-stat-row:hover {
    background: var(--bg-tertiary);
}

.mp-stat-row:last-child {
    margin-bottom: 0;
}

.mp-stat-label {
    font-weight: 500;
    color:var(--text-muted);
}

.mp-stat-value {
    font-weight: 600;
}

.stat-bonus {
    color: var(--success-color) !important;
}

.stat-required {
    color: var(--danger-color) !important;
}

.stat-damage {
    color: var(--info-color) !important;
}

.stat-defense {
    color: var(--secondary-color) !important;
}

.mp-character-level {
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    margin-top: 5px;
}

.mp-character-info {
    text-align: center;
    margin-bottom: 16px;
}

.mp-character-class-race {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mp-character-def-str {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

.mp-character-np {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.mp-character-np .label {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.mp-character-np .value {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
}

.mp-character-stats .mp-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
    padding: 3px 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mp-character-stats .mp-stat-row:hover {
    background: var(--bg-tertiary);
}

.mp-character-stats .mp-stat-row .mp-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.mp-character-stats .mp-stat-row .mp-stat-value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 700;
    text-align: right;
}

.mp-character-completion {
    margin-bottom: 5px;
}

.mp-character-completion-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.mp-character-completion-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--danger-color) 0%, var(--warning-color) 50%, var(--success-color) 100%);
    transition: width 0.3s ease;
}

.mp-character-completion-text {
    text-align: center;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.mp-set-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    justify-content: flex-end;
}

.mp-set-images {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.mp-set-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mp-set-image:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.mp-set-image img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
}

.mp-set-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--warning-color);
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.mp-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.mp-footer * {
    position: relative;
    z-index: 1;
}

.mp-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 1 !important;
}

.mp-price-currency {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 2px;
}

.mp-action-btn {
    background: linear-gradient(135deg, var(--primary-color), #e55a2e);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
    z-index: 1 !important;
}

.mp-action-btn:hover {
    background: linear-gradient(135deg, #e55a2e, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.discount-badge {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-red 2s infinite;
    flex-shrink: 0;
}

.mp-stats-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mp-stats-modal.active {
    display: flex;
}

.mp-stats-modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.mp-stats-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.mp-stats-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.mp-stats-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mp-stats-modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.mp-stats-modal-body {
    display: grid;
    gap: 8px;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse-gold {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hexagones-container {
    padding: 8px 0;
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}
.hexagones-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding: 0 20px;
}

.hexagones-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 50px;
}
.hexagones-wrapper::-webkit-scrollbar {
    display: none;
}

.hexagon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
}

.hexagon-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color), inset 0 0 30px rgba(255, 102, 0, 0.3);
}

.hexagon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hexagon-avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    -webkit-animation: dolaboynuma 32s infinite ease-in-out;
    animation: dolaboynuma 2s infinite ease-in-out;
    z-index: 1;
}

@keyframes dolaboynuma {
    0% { left: -120% }
    25% { left: -120% }
    50% { left: -120% }
    100% { left: 230% }
}

@keyframes pulse-star {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.countdown-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: rotate-bg 20s linear infinite;
    z-index: 1;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.countdown-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    animation: tick 1s ease-in-out infinite;
}

@keyframes tick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-text {
    text-align: left;
}

.countdown-main-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.countdown-sub-text {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

.deals-section {
    margin-bottom: 50px;
    overflow: visible;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.deals-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.deals-title i {
    color: var(--primary-color);
}

.deals-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s infinite;
}

.deals-badge.mystery {
    background: linear-gradient(135deg, #6b46c1, #8b5cf6);
}

.deals-badge i {
    font-size: 10px;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    overflow: visible;
}

.deals-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.deals-loading .loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.deals-card {
    position: relative;
    background: var(--bg-primary);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.deals-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.deals-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.deals-card:hover::before {
    opacity: 1;
}

.deals-card > * {
    position: relative;
    z-index: 2;
}

.deals-flash {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    animation: flash-deal 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 4px;
}

.deals-flash i {
    font-size: 8px;
}

@keyframes flash-deal {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.deals-price {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.deals-discount-badge {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.deals-btn {
    background: linear-gradient(135deg, var(--primary-color), #e55a2e) !important;
    color: white !important;
    border: none !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.deals-btn:hover {
    background: linear-gradient(135deg, #e55a2e, var(--primary-color)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

.deals-btn i {
    font-size: 10px !important;
}

.tomorrow-section .deals-title i {
    color: #6b46c1;
}

.tomorrow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    overflow: visible;
}

.tomorrow-card {
    position: relative;
    filter: grayscale(0.3);
    opacity: 0.8;
}

.tomorrow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 70, 193, 0.1);
    z-index: 5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tomorrow-lock {
    background: rgba(107, 70, 193, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.blurred {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.tomorrow-card .mp-action-btn.disabled {
    background: #6b7280 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.tomorrow-card .mp-action-btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 1400px) {
    .home-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .deals-grid, .tomorrow-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
        overflow: visible;
    }
}

@media (max-width: 1200px) {
    .home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 20px 0;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .hero-slider-wrapper {
        height: 250px;
    }
    
    .hero-slide.next {
        transform: translateX(60%) scale(0.9);
        opacity: 0.5;
    }
    
    .hero-slide.prev {
        transform: translateX(-60%) scale(0.9);
        opacity: 0.3;
    }
    
    .hero-slide-content img {
        height: 250px;
    }
    
    .hero-categories {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 20px 0;
        margin-right: 0px;
    }
    
    .hero-weekly-stars {
        padding: 0px;
        margin-right: 0px;
        gap:5px;
    }
    
    .hero-category-item {
        min-width: auto;
        padding: 14px 16px;
        flex: 1;
        min-width: calc(50% - 4px);
    }
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .yayinci-item {
        min-width: 120px;
        height: 150px;
    }
    
    .yayinci-item img {
        width: 120px;
        height: 120px;
    }
    
    .yayinci-name {
        font-size: 11px;
    }
    
    .yayinci-sponsor-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: 6px;
        right: 6px;
    }
    
    .stories-wrapper {
        padding: 0 16px;
        gap: 12px;
    }
    
    .story-avatar {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        padding: 20px;
    }
    
    .countdown-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .countdown-text {
        text-align: center;
    }
    
    .countdown-main-text {
        font-size: 18px;
    }
    
    .deals-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .deals-title {
        font-size: 20px;
    }
    
    .deals-grid, .tomorrow-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
        overflow: visible;
    }
    
    .deals-card {
        padding: 12px;
    }
    
    .tomorrow-lock {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .hero-container {
        padding: 0 12px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 16px 0;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .hero-slider-wrapper {
        height: 200px;
    }
    
    .hero-slide.next {
        transform: translateX(70%) scale(0.95);
        opacity: 0.4;
    }
    
    .hero-slide.prev {
        transform: translateX(-70%) scale(0.95);
        opacity: 0.2;
    }
    
    .hero-slide-content img {
        height: 200px;
    }
    
    .hero-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        padding: 16px 0;
        display: flex;
        flex-wrap: wrap;
        margin-right: 0px;
    }
    
    .hero-weekly-stars {
        padding: 0px;
        margin-right: 0px;
        gap:5px;
    }
    
    .weekly-stars-header {
        padding: 12px 16px;
        margin-bottom: 12px;
    }
    
    .weekly-stars-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .weekly-stars-title {
        font-size: 13px;
    }
    
    .weekly-star-item {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .weekly-star-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .weekly-star-avatar {
        width: 32px;
        height: 32px;
    }
    
    .weekly-star-name {
        font-size: 12px;
    }
    
    .weekly-star-label {
        font-size: 10px;
    }
    
    .weekly-star-value {
        font-size: 11px;
    }
    
    .hero-category-item {
        padding: 12px 14px;
    }
    
    .hero-category-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .hero-category-title {
        font-size: 13px;
    }
    
    .home-container {
        padding: 0 12px;
        margin: 0;
    }
    
    .home-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .home-actions {
        flex-shrink: 0;
    }
    
    .home-title h2 {
        font-size: 20px;
    }
    
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .yayinci-item {
        min-width: 110px;
        height: 140px;
    }
    
    .yayinci-item img {
        width: 110px;
        height: 110px;
    }
    
    .yayinci-name {
        font-size: 10px;
    }
    
    .yayinci-sponsor-badge {
        width: 14px;
        height: 14px;
        font-size: 11px;
        top: 4px;
        right: 4px;
    }
    
    .stories-wrapper {
        padding: 0 12px;
        gap: 10px;
    }
    
    .story-avatar {
        width: 48px;
        height: 48px;
    }
    
    .story-label {
        font-size: 11px;
        max-width: 60px;
    }

    .story-viewer-content {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hexagones-wrapper{
        gap:0px;
    }
    .countdown-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .countdown-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .countdown-main-text {
        font-size: 16px;
    }
    
    .countdown-sub-text {
        font-size: 12px;
    }
    
    .deals-title {
        font-size: 18px;
    }
    
    .deals-grid, .tomorrow-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 8px;
        overflow: visible;
    }
    
    .deals-card {
        padding: 8px;
        border-radius: 12px;
    }
    
    .deals-flash {
        font-size: 8px;
        padding: 2px 4px;
    }
    
    .tomorrow-lock {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider-wrapper {
        height: 150px;
    }
    
    .hero-slide.next {
        transform: translateX(80%) scale(0.95);
        opacity: 0.3;
    }
    
    .hero-slide.prev {
        transform: translateX(-80%) scale(0.95);
        opacity: 0.1;
    }
    
    .hero-slide-content img {
        height: 150px;
    }
    
    .hero-categories {
        grid-template-columns: 1fr;
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        margin-right: 0px;
    }
    
    .hero-weekly-stars {
        padding: 0px;
        margin-right: 0px;
        gap: 5px;
    }
    
    .weekly-stars-header {
        padding: 10px 12px;
        margin-bottom: 3px;
        gap: 8px;
    }
    
    .weekly-stars-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .weekly-stars-title {
        font-size: 12px;
    }
    
    .weekly-star-item {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .weekly-star-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .weekly-star-avatar {
        width: 28px;
        height: 28px;
    }
    
    .weekly-star-name {
        font-size: 11px;
    }
    
    .weekly-star-label {
        font-size: 9px;
    }
    
    .weekly-star-value {
        font-size: 10px;
    }
    
    .weekly-stars-empty {
        padding: 16px 12px;
        gap: 6px;
    }
    
    .weekly-stars-empty i {
        font-size: 20px;
    }
    
    .weekly-stars-empty span {
        font-size: 11px;
    }
    
    .hero-category-item {
        padding: 5px 6px;
    }
    
    .hero-category-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .hero-category-title {
        font-size: 12px;
    }
    
    .hero-content {
        padding: 16px 0;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .hero-nav-dots {
        bottom: 10px;
        left: 10px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider-controls {
        bottom: 5px;
        right: 10px;
        gap: 6px;
    }
    
    .hero-prev-btn,
    .hero-next-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .home-container {
        padding: 0 12px;
        margin: 0;
    }
    
    .home-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .home-actions {
        flex-shrink: 0;
    }
    
    .home-title h2 {
        font-size: 20px;
    }
    
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .yayinci-item {
        min-width: 110px;
        height: 140px;
    }
    
    .yayinci-item img {
        width: 110px;
        height: 110px;
    }
    
    .yayinci-name {
        font-size: 10px;
    }
    
    .yayinci-sponsor-badge {
        width: 14px;
        height: 14px;
        font-size: 11px;
        top: 4px;
        right: 4px;
    }
    
    .stories-wrapper {
        padding: 0 12px;
        gap: 10px;
    }
    
    .story-avatar {
        width: 48px;
        height: 48px;
    }
    
    .story-label {
        font-size: 11px;
        max-width: 60px;
    }

    .story-viewer-content {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    
    .countdown-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .countdown-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .countdown-main-text {
        font-size: 16px;
    }
    
    .countdown-sub-text {
        font-size: 12px;
    }
    
    .deals-title {
        font-size: 18px;
    }
    
    .deals-grid, .tomorrow-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 8px;
        overflow: visible;
    }
    
    .deals-card {
        padding: 8px;
        border-radius: 12px;
    }
    
    .deals-flash {
        font-size: 8px;
        padding: 2px 4px;
    }
    
    .tomorrow-lock {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider-wrapper {
        height: 150px;
    }
    
    .hero-slide.next {
        transform: translateX(80%) scale(0.95);
        opacity: 0.3;
    }
    
    .hero-slide.prev {
        transform: translateX(-80%) scale(0.95);
        opacity: 0.1;
    }
    
    .hero-slide-content img {
        height: 150px;
    }
    
    .hero-categories {
        grid-template-columns: 1fr;
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        margin-right: 0px;
    }
    
    .hero-weekly-stars {
        padding: 0px;
        margin-right: 0px;
        gap: 5px;
    }
    
    .weekly-stars-header {
        padding: 10px 12px;
        margin-bottom: 3px;
        gap: 8px;
    }
    
    .weekly-stars-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .weekly-stars-title {
        font-size: 12px;
    }
    
    .weekly-star-item {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .weekly-star-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .weekly-star-avatar {
        width: 28px;
        height: 28px;
    }
    
    .weekly-star-name {
        font-size: 11px;
    }
    
    .weekly-star-label {
        font-size: 9px;
    }
    
    .weekly-star-value {
        font-size: 10px;
    }
    
    .weekly-stars-empty {
        padding: 16px 12px;
        gap: 6px;
    }
    
    .weekly-stars-empty i {
        font-size: 20px;
    }
    
    .weekly-stars-empty span {
        font-size: 11px;
    }
    
    .hero-category-item {
        padding: 5px 6px;
    }
    
    .hero-category-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .hero-category-title {
        font-size: 12px;
    }
    
    .hero-content {
        padding: 16px 0;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .hero-nav-dots {
        bottom: 10px;
        left: 10px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider-controls {
        bottom: 5px;
        right: 10px;
        gap: 6px;
    }
    
    .hero-prev-btn,
    .hero-next-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .home-container {
        padding: 0 10px;
    }
    
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .yayinci-item {
        min-width: 100px;
        height: 130px;
    }
    
    .yayinci-item img {
        width: 100px;
        height: 100px;
    }
    
    .yayinci-name {
        font-size: 11px;
    }
    
    .yayinci-sponsor-badge {
        width: 12px;
        height: 12px;
        font-size: 11px;
        top: 4px;
        right: 4px;
    }
    
    .home-title h2 {
        font-size: 15px;
    }
    
    .mp-card {
        padding: 8px;
        min-height: 280px;
        border-radius: 8px;
    }
    
    .mp-main-image {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
    
    .mp-main-image img {
        width: 32px;
        height: 32px;
        border-radius: 4px;
    }
    
    .mp-name {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .mp-server {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .mp-stat-row {
        font-size: 11px;
        padding: 3px 4px;
        margin-bottom: 2px;
    }
    
    .mp-price {
        font-size: 14px;
    }
    
    .mp-price-currency {
        font-size: 11px;
    }
    
    .mp-action-btn {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 4px;
    }
    
    .mp-online-badge {
        padding: 3px 6px;
        font-size: 11px;
        border-radius: 8px;
        top: 6px;
        right: 6px;
    }
    
    .mp-discount-badge {
        padding: 3px 6px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .mp-reverse-badge {
        padding: 3px 6px;
        font-size: 11px;
        border-radius: 8px;
        top: 6px;
        left: 6px;
    }
    
    .mp-title {
        margin: 4px 0;
    }
    
    .mp-stats {
        margin-bottom: 8px;
    }
    
    .mp-footer {
        padding-top: 8px;
    }
    
    .mp-character-level {
        padding: 3px 6px;
        font-size: 11px;
        border-radius: 12px;
        margin-top: 3px;
    }
    
    .mp-character-class-race {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .mp-character-def-str {
        font-size: 11px;
    }
    
    .mp-character-np .label {
        font-size: 11px;
    }
    
    .mp-character-np .value {
        font-size: 10px;
    }
    
    .mp-character-stats .mp-stat-row .mp-stat-label {
        font-size: 11px;
    }
    
    .mp-character-stats .mp-stat-row .mp-stat-value {
        font-size: 11px;
    }
    
    .mp-character-completion-text {
        font-size: 11px;
    }
    
    .mp-character-completion-bar {
        height: 6px;
        margin-bottom: 3px;
    }
    
    .mp-set-count {
        font-size: 11px;
        padding: 2px 4px;
    }
    
    .mp-set-image img {
        width: 20px;
        height: 20px;
    }
    
    .mp-character-info {
        margin-bottom: 8px;
    }
    
    .mp-character-np {
        margin-bottom: 4px;
        padding: 3px;
    }
    
    .mp-character-stats .mp-stat-row {
        margin-bottom: 3px;
        padding: 2px 3px;
    }
    
    .mp-character-completion {
        margin-bottom: 4px;
    }
    
    .mp-image-container {
        margin: 6px 0;
        gap: 4px;
    }
    
    .stories-wrapper {
        padding: 0 10px;
        gap: 8px;
    }
    
    .story-avatar {
        width: 45px;
        height: 45px;
    }
    
    .story-label {
        font-size: 10px;
        max-width: 55px;
    }
    
    .hero-content {
        padding: 16px 0;
        margin-left:0px;
        margin-right:0px;
    }
    
    .hero-container {
        padding: 0 10px;
        min-height: auto;
        margin-bottom:10px;
        gap:0px;
    }
    
    .hero-nav-dots {
        bottom: 12px;
        left: 20px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-prev-btn,
    .hero-next-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .home-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .home-actions {
        flex-shrink: 0;
    }
    
    .swiper-button-prev-custom,
    .swiper-button-next-custom,
    .swiper-button-prev-custom-ring,
    .swiper-button-next-custom-ring {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .story-viewer-content {
        max-width: 300px;
    }

    .story-viewer-header {
        padding: 15px;
    }

    .story-viewer-username {
        font-size: 14px;
    }

    .story-viewer-store-name {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .home-grid {
        gap: 6px;
    }
    
    .yayinci-item {
        min-width: 90px;
        height: 120px;
    }
    
    .yayinci-item img {
        width: 90px;
        height: 90px;
    }
    
    .yayinci-name {
        font-size: 11px;
    }
    
    .yayinci-sponsor-badge {
        width: 10px;
        height: 10px;
        font-size: 7px;
        top: 3px;
        right: 3px;
    }
    
    .mp-card {
        padding: 6px;
        min-height: 260px;
    }
    
    .mp-name {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .mp-server {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .mp-stat-row {
        font-size: 11px;
        padding: 1px 3px;
        margin-bottom: 1px;
    }
    
    .mp-price {
        font-size: 11px;
    }
    
    .mp-price-currency {
        font-size: 11px;
    }
    
    .mp-action-btn {
        padding: 4px 6px;
        font-size: 11px;
    }
    
    .mp-main-image {
        width: 36px;
        height: 36px;
    }
    
    .mp-main-image img {
        width: 28px;
        height: 28px;
    }
    
    .mp-online-badge {
        padding: 1px 3px;
        font-size: 6px;
        top: 4px;
        right: 4px;
    }
    
    .mp-discount-badge {
        padding: 1px 3px;
        font-size: 6px;
    }
    
    .mp-reverse-badge {
        padding: 1px 3px;
        font-size: 6px;
        top: 4px;
        left: 4px;
    }
    
    .mp-character-level {
        padding: 2px 4px;
        font-size: 11px;
        margin-top: 2px;
    }
    
    .mp-character-class-race {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .mp-character-def-str {
        font-size: 11px;
    }
    
    .mp-character-np .label {
        font-size: 11px;
    }
    
    .mp-character-np .value {
        font-size: 11px;
    }
    
    .mp-character-stats .mp-stat-row .mp-stat-label {
        font-size: 7px;
    }
    
    .mp-character-stats .mp-stat-row .mp-stat-value {
        font-size: 11px;
    }
    
    .mp-character-completion-text {
        font-size: 11px;
    }
    
    .mp-character-completion-bar {
        height: 5px;
        margin-bottom: 2px;
    }
    
    .mp-set-count {
        font-size: 7px;
        padding: 1px 3px;
    }
    
    .mp-set-image img {
        width: 18px;
        height: 18px;
    }
    
    .mp-character-info {
        margin-bottom: 6px;
    }
    
    .mp-character-np {
        margin-bottom: 3px;
        padding: 2px;
    }
    
    .mp-character-stats .mp-stat-row {
        margin-bottom: 2px;
        padding: 1px 2px;
    }
    
    .mp-character-completion {
        margin-bottom: 3px;
    }
    
    .mp-image-container {
        margin: 4px 0;
        gap: 3px;
    }
    
    .mp-title {
        margin: 3px 0;
    }
    
    .mp-stats {
        margin-bottom: 6px;
    }
    
    .mp-footer {
        padding-top: 6px;
    }
    
    .home-title h2 {
        font-size: 15px;
    }
    
    .home-container {
        padding: 0 8px;
    }
    
    .stories-wrapper {
        padding: 0 8px;
        gap: 6px;
    }
    
    .story-avatar {
        width: 40px;
        height: 40px;
    }
    
    .story-label {
        font-size: 11px;
        max-width: 50px;
    }
    
    .hero-container {
        padding: 0 8px;
    }
    
    .hero-slider-wrapper {
        height: 120px;
    }
    
    .hero-slide-content img {
        height: 120px;
    }

    .story-viewer-content {
        max-width: 280px;
    }

    .story-viewer-header {
        padding: 12px;
    }

    .story-viewer-avatar {
        width: 35px;
        height: 35px;
    }

    .story-viewer-username {
        font-size: 13px;
    }

    .story-viewer-store-name {
        font-size: 11px;
    }
}

/*** HOME BLOG BÖLÜMÜ ***/
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.blog-card {
    max-width: 320px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}


.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-reading-time {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.blog-reading-time i {
    font-size: 10px;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-tag {
    background: var(--bg-secondary);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: lowercase;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.blog-author,
.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.blog-author i,
.blog-date i {
    font-size: 12px;
    color: var(--primary-color);
}

.blog-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.blog-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.blog-stat i {
    font-size: 12px;
    color: var(--text-secondary);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-read-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
    border-color: var(--primary-color);
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(2px);
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .blog-image {
        height: 150px;
    }
    .blog-content {
        padding: 12px;
    }
    .blog-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .blog-excerpt {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .blog-stats {
        margin-bottom: 12px;
    }
    .blog-read-more {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-image {
        height: 150px;
    }
    .blog-content {
        padding: 12px;
    }
    .blog-title {
        font-size: 15px;
    }
    .blog-excerpt {
        font-size: 12px;
    }
    .blog-category {
        font-size: 10px;
        padding: 3px 8px;
    }
    .blog-reading-time {
        font-size: 10px;
        padding: 3px 6px;
    }
    .blog-tags {
        gap: 6px;
        display:none;
    }
    .blog-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    .blog-author,
    .blog-date,
    .blog-stat {
        font-size: 12px;
    }
}
/*** HOME BLOG BÖLÜMÜ ***/
