/* ===== MOBIL UYUMLULUK TEMEL AYARLARI ===== */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1b1b 50%, #3d1f1f 75%, #1a1a1a 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 99, 71, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.main-logo:hover {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4500, #ff6347, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5)) 
                drop-shadow(0 0 10px rgba(255, 69, 0, 0.3));
    }
    to {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8)) 
                drop-shadow(0 0 20px rgba(255, 69, 0, 0.5));
    }
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #ff4500, #ff6347);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 20px !important;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff4500, #ff6347, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.feature {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #ff6347;
    backdrop-filter: blur(10px);
}

.cta-button {
    background: linear-gradient(135deg, #ff4500, #ff6347, #ff4500);
    background-size: 200% 200%;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(255, 69, 0, 0.3),
        0 0 0 0 rgba(255, 69, 0, 0.7);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: gradientShift 3s ease infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 69, 0, 0.4),
        0 0 0 10px rgba(255, 69, 0, 0.1);
    background-position: right center;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 20px rgba(255, 69, 0, 0.3),
        0 0 0 5px rgba(255, 69, 0, 0.2);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.today-winner-card {
    cursor: pointer;
    position: relative;
}

.winner-logo {
    width: 90px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.winner-link {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #ff6347;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 99, 71, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.today-winner-card:hover .winner-link {
    opacity: 1;
    background: rgba(255, 99, 71, 0.2);
}

.today-winner-card:hover .winner-link:hover {
    color: #ff4500;
    transform: scale(1.1);
}

.today-winner-card:hover .winner-logo {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4500, #ff6347, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(255, 99, 71, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.4);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6347, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 30px rgba(255, 99, 71, 0.4);
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}



/* Bonus Section */
.bonus-section {
    padding: 20px 0 80px !important;
    margin-top: 0 !important;
}

/* Bonus section içindeki ilk section header'ı özel olarak hedefle */
.bonus-section .section-header {
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
}

/* Other Sites Section */
.other-sites-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.2);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 69, 0, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #aaaaaa;
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ff4500, #ff6347, #ff4500);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(255, 69, 0, 0.3),
        0 0 0 0 rgba(255, 69, 0, 0.6);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: gradientShift 3.5s ease infinite;
}

.blog-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.blog-cta-button:hover::before {
    left: 100%;
}

.blog-cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.blog-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 69, 0, 0.4),
        0 0 0 10px rgba(255, 69, 0, 0.1);
    background-position: right center;
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-cta-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 20px rgba(255, 69, 0, 0.3),
        0 0 0 5px rgba(255, 69, 0, 0.2);
}

.cta-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff4500, #ff6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Framed Banner - ENHANCED */
.framed-banner-container {
    margin-bottom: 1.5rem;
    border: 4px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: 
        linear-gradient(45deg, #ff4500, #ff6347, #ff4500) padding-box,
        linear-gradient(45deg, #ff4500, #ff6347, #ff4500, #ff4500) border-box;
    background-size: 200% 200%;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(255, 69, 0, 0.2),
        0 0 0 1px rgba(255, 69, 0, 0.1),
        inset 0 0 20px rgba(255, 69, 0, 0.05);
    animation: bannerGlow 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .framed-banner-container {
        border-width: 2px;
        border-radius: 15px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .framed-banner-container {
        border-width: 1px;
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }
}

.framed-banner-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff4500, #ff6347, #ff4500, #ff6347);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.framed-banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 69, 0, 0.1) 0%, 
        rgba(255, 99, 71, 0.05) 50%, 
        rgba(255, 69, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.framed-banner-container:last-of-type {
    margin-bottom: 2.5rem;
}

.framed-banner-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 69, 0, 0.3),
        0 0 0 2px rgba(255, 69, 0, 0.2),
        inset 0 0 30px rgba(255, 69, 0, 0.1);
    background-position: right center;
}

.framed-banner-container:hover::before {
    opacity: 1;
}

@keyframes bannerGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(255, 69, 0, 0.2),
            0 0 0 1px rgba(255, 69, 0, 0.1),
            inset 0 0 20px rgba(255, 69, 0, 0.05);
    }
    50% { 
        box-shadow: 
            0 8px 35px rgba(255, 69, 0, 0.3),
            0 0 0 2px rgba(255, 69, 0, 0.15),
            inset 0 0 25px rgba(255, 69, 0, 0.08);
    }
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.framed-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.framed-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #ff4500, #ff6347);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Bonus Card Link */
.bonus-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff4500, #ff6347);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bonus-card:hover::before {
    transform: scaleX(1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.2);
}

.bonus-card-link:hover .bonus-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.2);
}

.bonus-card.featured {
    border: 2px solid #ff6347;
    box-shadow: 0 0 30px rgba(255, 99, 71, 0.2);
}

.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}



.card-logo {
    width: 120px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 8px;
}

.bonus-card:hover .card-logo img {
    transform: scale(1.1);
}

.card-content {
    margin-bottom: 0.5rem;
    display: flex;
        flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    color: #ffffff;
    text-align: center;
}

.bonus-amount {
        font-size: 1.2rem;
    font-weight: 700;
    color: #ff6347;
    margin-bottom: 0.5rem;
        text-align: center;
    }
    
.card-features {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.2);
    color: #ff6347;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.card-stats {
    margin-bottom: 0.5rem;
    text-align: center;
}

.users-today {
    color: #aaaaaa;
    font-size: 0.7rem;
    opacity: 0.8;
}

.card-footer {
        text-align: center;
    }
    
.bonus-button {
    background: linear-gradient(135deg, #ff4500, #ff6347, #ff4500);
    background-size: 200% 200%;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(255, 69, 0, 0.3),
        0 0 0 0 rgba(255, 69, 0, 0.5);
    animation: gradientShift 4s ease infinite;
}

.bonus-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.bonus-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.bonus-button:hover::before {
    left: 100%;
}

.bonus-button:hover::after {
    width: 200px;
    height: 200px;
}

.bonus-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 8px 25px rgba(255, 69, 0, 0.4),
        0 0 0 8px rgba(255, 69, 0, 0.1);
    background-position: right center;
    border-color: rgba(255, 255, 255, 0.3);
}

.bonus-button:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 4px 15px rgba(255, 69, 0, 0.3),
        0 0 0 4px rgba(255, 69, 0, 0.2);
}

.button-subtitle {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    margin-top: 0.1rem;
    opacity: 0.8;
}



/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6347;
        margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6347;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .framed-banner-container {
        margin-bottom: 2rem;
        border-width: 1px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .bonus-card {
        padding: 0.4rem;
        min-height: 120px;
        cursor: pointer;
    }
    
    .card-title {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
    
    .bonus-amount {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .card-features {
        margin-bottom: 0.3rem;
    }
    
    .feature-tag {
        padding: 0.05rem 0.2rem;
        font-size: 0.5rem;
        border-radius: 4px;
    }
    
    .card-stats {
        margin-bottom: 0.3rem;
    }
    
    .users-today {
        font-size: 0.5rem;
    }
    
    .bonus-button {
        display: none;
    }
    
    .card-footer {
        display: none;
    }
    
    .bonus-card-link {
        pointer-events: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
    flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    align-items: center;
    }
    
    .hero-features {
    justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .bonus-card {
        padding: 0.3rem;
        min-height: 100px;
        cursor: pointer;
    }
    
    .card-title {
        font-size: 0.65rem;
        margin-bottom: 0.08rem;
    }
    
    .bonus-amount {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }
    
    .card-features {
        margin-bottom: 0.2rem;
    }
    
    .feature-tag {
        padding: 0.04rem 0.15rem;
        font-size: 0.45rem;
        border-radius: 3px;
    }
    
    .card-stats {
        margin-bottom: 0.2rem;
    }
    
    .users-today {
        font-size: 0.45rem;
    }
    
    .bonus-button {
        display: none;
    }
    
    .card-footer {
        display: none;
    }
    
    .bonus-card-link {
        pointer-events: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 1rem;
    align-items: center;
    }
    
    .card-logo {
        width: 60px;
        height: 60px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3) { animation-delay: 0.3s; }
.bonus-card:nth-child(4) { animation-delay: 0.4s; }
.bonus-card:nth-child(5) { animation-delay: 0.5s; }
.bonus-card:nth-child(6) { animation-delay: 0.6s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff4500, #ff6347);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6347, #ff4500);
}

/* Blog Page Styles */
.blog-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff4500, #ff6347, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Blog Banner */
.blog-banner {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 99, 71, 0.1) 100%);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.3);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.banner-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

.banner-button {
    background: linear-gradient(45deg, #ff4500, #ff6347);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    color: #ffffff;
}

.banner-button i {
    transition: transform 0.3s ease;
}

.banner-button:hover i {
    transform: translateX(5px);
}



.blog-posts-section {
    padding: 80px 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff4500, #ff6347);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-post-card:hover::before {
    transform: scaleX(1);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.2);
}

.blog-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.blog-post-logo {
    width: 80px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.blog-post-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-post-category,
.blog-post-date {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    color: #ff6347;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.blog-post-content {
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.4;
}

.blog-post-excerpt {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-post-info {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #aaaaaa;
}

.blog-post-author,
.blog-post-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-post-author i,
.blog-post-read-time i {
    color: #ff6347;
    font-size: 0.9rem;
}

/* Blog Post Link Styles */
.blog-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-post-link:hover {
    transform: translateY(-5px);
}

.blog-post-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.3);
}

/* Blog Post CTA */
.blog-post-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6347;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-post-cta .cta-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-post-link:hover .blog-post-cta {
    color: #ff4500;
}

.blog-post-link:hover .blog-post-cta i {
    transform: translateX(3px);
}



/* ===== RESPONSIVE DESIGN ===== */

/* Tablet ve Küçük Masaüstü */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .framed-banner-container {
        margin: 2rem 0;
    }
    
    .framed-banner-image {
        max-height: 200px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 10px;
        font-size: 1rem;
    }
    
    /* Mobile menu overlay */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .main-logo {
        height: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .bonus-section {
        padding: 60px 0;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .card-logo {
        width: 80px;
        height: 50px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .bonus-amount {
        font-size: 1.1rem;
    }
    
    .card-features {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .feature-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .blog-post-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-post-cta {
        align-self: flex-end;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .framed-banner-image {
        max-height: 150px;
    }
    
    .other-sites-section {
        margin-top: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0.8rem;
    }
    
    .main-logo {
        height: 35px;
    }
    
    .nav {
        width: 220px;
        padding: 70px 1.5rem 1.5rem;
    }
    
    .nav-link {
        padding: 0.8rem;
        font-size: 0.9rem;
        margin: 0.3rem 0;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 20px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-radius: 40px;
    }
    
    .bonus-section {
        padding: 40px 0;
    }
    
    .bonus-grid {
        gap: 1rem;
    }
    
    .bonus-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .card-header {
        margin-bottom: 0.8rem;
    }
    
    .card-logo {
        width: 70px;
        height: 45px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .bonus-amount {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .card-features {
        gap: 0.4rem;
        margin: 0.8rem 0;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .card-stats {
        margin: 0.8rem 0;
    }
    
    .users-today {
        font-size: 0.8rem;
    }
    
    .bonus-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .button-subtitle {
        font-size: 0.7rem;
    }
    
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-grid {
        gap: 1rem;
    }
    
    .blog-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .blog-image {
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-meta {
        gap: 0.8rem;
    }
    
    .blog-date, .blog-read-time {
        font-size: 0.75rem;
    }
    
    .blog-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-post-card {
        padding: 1rem;
    }
    
    .blog-post-logo {
        width: 60px;
        height: 40px;
    }
    
    .blog-post-title {
        font-size: 1rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.85rem;
    }
    
    .blog-post-info {
        gap: 0.8rem;
    }
    
    .blog-post-author, .blog-post-read-time {
        font-size: 0.75rem;
    }
    
    .framed-banner-image {
        max-height: 120px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p, .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Çok Küçük Mobil */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .card-logo {
        width: 60px;
        height: 40px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 0.9rem;
    }
    
    .blog-card {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .main-logo {
        height: 30px;
    }
}

/* Yatay Mobil (Landscape) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-section {
        padding: 30px 0;
    }
    
    .blog-section {
        padding: 30px 0;
    }
}

/* Yüksek DPI Ekranlar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .card-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .blog-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
