body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    background: #061449 !important;
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Arka plan efektleri */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(41, 66, 155, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(48, 79, 183, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(35, 57, 134, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 90% 70%, rgba(52, 86, 198, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: smokeMove 20s ease-in-out infinite alternate;
}

/* Header ve Logo */
.header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    z-index: 1000;
}

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

/* Brand Title ve Subtitle */
.brand-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin: 0;
    background: linear-gradient(180deg, 
        rgba(212, 176, 140, 0.95) 0%,
        rgba(212, 176, 140, 0.75) 50%,
        rgba(212, 176, 140, 0.6) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 25px rgba(212, 176, 140, 0.15);
    letter-spacing: 8px;
    position: relative;
    padding-bottom: 20px;
    margin-top: 50px;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(212, 176, 140, 0.2),
        rgba(212, 176, 140, 0.8),
        rgba(212, 176, 140, 0.2)
    );
    border-radius: 2px;
}

.fb-content{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.brand-subtitle {
   
    font-size: 20px;
    font-weight: 600;
    color: white;
    max-width: 900px;
    width: 90%;
    margin: 20px auto;
    line-height: 1.6;
    padding: 0 20px;
    margin-top: 50px;
}
.feature-description{
    font-weight: 600;
    color: white;
    margin: 20px auto;
    line-height: 1.6;
}

/* Platform Cards */
.platform-card {
    width: 120px;
    height: 180px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(185, 139, 112, 0.1),
        transparent
    );
    transition: 0.5s;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover:not(.active) {
    transform: translateY(-5px);
    background: rgba(185, 139, 112, 0.12);
    box-shadow: 0 15px 35px rgba(185, 139, 112, 0.15);
    border-color: rgba(185, 139, 112, 0.3);
}

.platform-icon {
    font-size: 32px;
    color: #E3F2FD;
    margin-bottom: 15px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, #D4B08C, #B98B70, #8B6B4F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: none;
}

.platform-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.platform-card:hover .platform-icon {
    background: linear-gradient(135deg, 
        rgba(212, 176, 140, 1),
        rgba(212, 176, 140, 0.8)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-card:hover .platform-name {
    color: #E3F2FD;
}

.platform-card.active {
    transform: scale(1.15) translateY(-15px);
    background: rgba(255, 180, 120, 0.15);
    box-shadow: 0 20px 40px rgba(255, 180, 120, 0.2),
               0 0 20px rgba(255, 180, 120, 0.1);
    border-color: rgba(255, 180, 120, 0.4);
}

.platform-card.active .platform-icon {
    transform: scale(1.3);
    background: linear-gradient(135deg, 
        #FFD700,
        #FFA500,
        #FF8C00
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 180, 120, 0.3));
}

.platform-card.active .platform-name {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 180, 120, 0.3);
}

.case-study {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    opacity: 1;
    transform: none;
}

.case-study.active .case-content {
    animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(185, 139, 112, 0.1);
    border-color: rgba(185, 139, 112, 0.3);
}

.feature-icon {
    font-size: 24px;
    color: #D4B08C;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    color: #E5C9A8;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.metrics-container {
    position: relative;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(185, 139, 112, 0.15);
}

.metric-title {
    font-size: 20px;
    color: #E5C9A8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-chart {
    height: 200px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to top, #B98B70, #E5C9A8);
    border-radius: 5px 5px 0 0;
    transform-origin: bottom;
    animation: barRise 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #D4B08C;
    font-weight: 600;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes barRise {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

@media (max-width: 1024px) {
    .case-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
   
    .brand-subtitle { 
        max-width: 800px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .header {
        padding-top: 80px;
    }

    .case-study {
        padding: 20px;
    }

    
}

/* Liste öğeleri için renk */
.metric-list li {
    color: rgba(255, 255, 255, 0.9);
}

.case-studies-container {
    position: relative;
    min-height: 500px;
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.counter {
    font-size: 48px;
    color: #E5C9A8;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.counter-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.platform-preview {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.preview-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(185, 139, 112, 0.15);
}

.preview-item.story {
    width: 320px;
    height: 570px;
    padding: 0;
    border-radius: 35px;
    background: #141414;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(165deg, #1e1e1e 0%, #0a0a0a 100%);
}

.story-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2),     /* Üst kısımdaki gölgeyi azalttık */
        transparent 100%
    );
    z-index: 3;
}

.story-profile {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #D4B08C;
    padding: 2px;
    background: #000;
}

.story-info {
    flex: 1;
}

.story-username {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.story-time {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    opacity: 0.5;
}

.story-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url('img/hotel.jpg') center/cover no-repeat;
}

.story-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),  /* Gölgeyi azalttık */
        rgba(0, 0, 0, 0.1)   /* Gölgeyi azalttık */
    );
    z-index: 1;
}

.promo-container {
    text-align: center;
    margin-bottom: 30px;
}

.promo-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FF5F40, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 95, 64, 0.2);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.gift-box {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 95, 64, 0.1);
}

.gift-box:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 95, 64, 0.1);
    border-color: rgba(255, 95, 64, 0.3);
    box-shadow: 0 10px 20px rgba(255, 95, 64, 0.1);
}

.gift-icon {
    font-size: 30px;
    filter: drop-shadow(0 2px 5px rgba(255, 95, 64, 0.3));
}

.action-button {
    background: linear-gradient(45deg, #FF5F40, #FF8A65);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    padding: 12px 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 95, 64, 0.3);
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    letter-spacing: 1px;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 95, 64, 0.4);
}

.story-progress {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    padding: 0 15px;
    z-index: 4;
}

.progress-bar {
    height: 3px;
    width: 100%;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 100%;
    background: #fff;
    transform-origin: left;
    animation: progressAnimation 5s linear forwards;
}

@keyframes progressAnimation {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}


@media (max-width: 768px) {
   
    
    .preview-item.story {
        width: 180px;
        height: 320px;
    }
    
    .preview-item.post {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .preview-item.story {
        width: 160px;
        height: 280px;
    }
    
    .preview-item.post {
        width: 320px;
        height: 320px;
    }
    

}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .brand-subtitle {
        max-width: 800px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .brand-subtitle {
        max-width: 600px;
        font-size: 18px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .brand-subtitle {
        max-width: 100%;
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Yazı tipleri için güncelleme */
.story-text h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.story-text p {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

.user-info .username {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.2px;
}

/* How It Works Section Styles */
.how-it-works-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, 
        rgba(212, 176, 140, 0.95),
        rgba(212, 176, 140, 0.8)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(212, 176, 140, 0.2),
        rgba(212, 176, 140, 0.8),
        rgba(212, 176, 140, 0.2)
    );
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 15px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4B08C, #B98B70, #8B6B4F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, 
        rgba(212, 176, 140, 1),
        rgba(212, 176, 140, 0.8)
    );
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, 
        rgba(212, 176, 140, 1),
        rgba(212, 176, 140, 0.8)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0 4px;
    transition: color 0.3s ease;
}

.feature-card p:first-of-type {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #fff;
}

.feature-card:hover p {
    color: #fff;
}

.feature-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }
    
    .feature-card p:first-of-type {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/* References Section */
.references-section {
    padding: 20px 0;
    margin: 0 auto 20px;
    max-width: 1200px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
    margin-top: 50px;
}

/* Reference Cards */
.reference-card {
    background: rgba(255, 255, 255, 1); /* Tam beyaz arka plan */
    border-radius: 12px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reference-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo img {
    max-width: 150px;
    object-fit: contain;
    opacity: 0.9; /* Logonun opaklığını artırdık */
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.reference-card:hover .reference-logo img {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .reference-card {
        height: 100px;
    }
    
    .reference-logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .reference-card {
        height: 90px;
    }
    
    .reference-logo img {
        max-width: 90px;
        max-height: 45px;
    }
}


/* Showcase Items */
.showcase-item {
    min-width: 350px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.item-header {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.header-info {
    flex: 1;
}

.username {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.item-content {
    position: relative;
    aspect-ratio: 1/1;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
}

.content-overlay h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.content-overlay p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Header Styles */
.item-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #D4B08C;
}

.header-info {
    margin-left: 12px;
}

.username {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.status, .location {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Content Styles */
.content-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.content-overlay {
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.content-actions {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-buttons {
    display: flex;
    gap: 16px;
}

button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

button:hover {
    color: #D4B08C;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 176, 140, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 12px;
}

.cta-button:hover {
    background: rgba(212, 176, 140, 1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .content-image {
        height: 240px;
    }
}

/* Hedeflenen Ülkeler Bölümü */
.target-countries-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: white;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.countries-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.country-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.country-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 176, 140, 0.05);
    border-color: rgba(212, 176, 140, 0.2);
    box-shadow: 0 10px 30px rgba(212, 176, 140, 0.1);
}

.country-flag {
    width: 80px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.country-card h3 {
    color: rgba(212, 176, 140, 0.9);
    font-size: 18px;
    margin-bottom: 12px;
}

.country-card .platforms {
    display: flex;
    gap: 12px;
    justify-content: center;
    color: rgba(212, 176, 140, 0.7);
    font-size: 18px;
}

.country-card .platforms i {
    transition: all 0.3s ease;
}

.country-card:hover .platforms i {
    color: rgba(212, 176, 140, 0.9);
}

.country-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Yatayda ortalar */
    text-align: center; /* Metinleri ortalar */
    gap: 8px;
    padding: 10px 0;
}

.country-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center; /* Metni ortalar */
}

.country-stat {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center; /* Metni ortalar */
}

.country-platforms {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: center; /* Platform ikonlarını ortalar */
    flex-wrap: wrap;
}

.country-platforms i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.country-platforms i:hover {
    color: #fff;
}

.countries-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(212, 176, 140, 1),
        rgba(212, 176, 140, 0.8)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .countries-container {
        padding: 20px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }

    .countries-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* Popup stilleri */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #000;
    max-width: 400px;
    width: 100%;
    height: 80vh;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.story-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.user-info .username {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.user-info .time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.story-image {
    flex: 1;
    position: relative;
}

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

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    z-index: 3;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(0, 0, 0, 0.7);
}

.swipe-up-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.swipe-up-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 95, 64, 0.4);
}

/* Platform kartları container'ı için güncelleme */
.showcase-container {
    position: relative;
    display: flex !important;
    gap: 25px !important; 
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
}

/* Mobil görünüm için */
@media (max-width: 767px) {
    .showcase-container.d-none.d-md-block {
        display: none !important;
    }
    .showcase-container.d-block.d-md-none {
        display: block !important;
    }
}

/* Desktop görünüm için */
@media (min-width: 768px) {
    .showcase-container.d-none.d-md-block {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 25px !important;
        justify-content: center;
    }
    .showcase-container.d-block.d-md-none {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .reference-logo img {
        width: 85%; /* veya istediğiniz bir yüzde değeri */
        height: auto;
        transform: scale(1.2); /* Görseli 1.2 kat büyütür */
    }
}



/* Footer Styles */
.footer {
    width: 100%;
    padding: 20px 40px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #D4B08C;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-logo {
    height: 20px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin: 15px 0;
    }
    
    .footer-brand {
        flex-direction: column; /* Dikey hizalama */
        justify-content: center;
        gap: 15px; /* Öğeler arası boşluğu artır */
    }
    
    .footer-brand span {
        order: -1; /* Yazıyı üste al */
    }
    
    .footer-brand a {
        margin-top: 10px; /* Logo ile üst kısım arasında boşluk */
    }
    
    .footer-logo {
        height: 25px; /* Logo boyutunu biraz büyüt */
    }
}

/* Daha küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .footer-content {
        gap: 15px;
    }
    
    .footer-brand {
        gap: 12px;
    }
}

/* Logo link stili */
.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

/* Facebook popup stilleri */
.facebook-style {
    background: #242526;
    max-width: 500px;
    border-radius: 8px;
}

.fb-container {
    padding: 12px;
}

.fb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.fb-text {
    color: #e4e6eb;
    font-size: 15px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.fb-image {
    margin: 0 -12px;
}

.fb-image img {
    width: 100%;
    height: auto;
}

.fb-stats {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #b0b3b8;
    font-size: 14px;
}

.reactions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reaction-icons {
    display: flex;
    gap: 2px;
}

.reaction-icons i {
    font-size: 18px;
}

.fa-thumbs-up {
    color: #2078f4;
}

.fa-heart {
    color: #f33e58;
}

.comments-shares {
    display: flex;
    gap: 20px;
}

.fb-actions-bar {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fb-actions-bar button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b3b8;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 4px;
}

.fb-actions-bar button:hover {
    background: rgba(255,255,255,0.1);
}

.post-meta {
    font-size: 13px;
    color: #b0b3b8;
}

/* YouTube popup stilleri - Son Güncelleme */
.youtube-style {
    background: #0f0f0f;
    max-width: 800px;
    width: 95%;
    border-radius: 12px;
}

.yt-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yt-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.yt-video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-content {
    padding: 16px;
}

.yt-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

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

.yt-channel {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.yt-channel-info {
    display: flex;
    flex-direction: column;
}

.yt-channel-name {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.yt-subscribers {
    color: #aaa;
    font-size: 12px;
}

.yt-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #aaa;
    font-size: 14px;
}

.yt-action-buttons {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.yt-action-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.yt-action-button:hover {
    background: rgba(255,255,255,0.2);
}

.yt-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0,0,0,0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.yt-play-button i {
    color: #fff;
    font-size: 24px;
}

.yt-play-button:hover {
    background: #ff0000;
}

/* X (Twitter) popup stilleri - Son Güncelleme */
.x-style {
    background: #000;
    max-width: 600px;
    border-radius: 16px;
    border: 1px solid #2f3336;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.x-container {
    padding: 12px 16px;
}

.x-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.x-profile {
    display: flex;
    gap: 12px;
}

.x-profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.x-profile-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.x-name {
    color: #e7e9ea;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.x-verified-badge {
    width: 16px;
    height: 16px;
    background: rgb(29, 155, 240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

.x-verified-badge i {
    color: #000;
    font-size: 9px;
}

.x-handle {
    color: #71767b;
    font-size: 15px;
}

.x-content {
    color: #e7e9ea;
    font-size: 15px;
    line-height: 1.5;
    margin: 12px 0;
    white-space: pre-line;
}

.x-media {
    margin: 12px -16px;
    position: relative;
}

.x-media img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border: 1px solid #2f3336;
}

.x-stats {
    display: flex;
    gap: 24px;
    color: #71767b;
    font-size: 13px;
    padding: 12px 16px;
    margin: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.x-actions {
    display: flex;
    justify-content: space-between;
    max-width: 425px;
    padding: 4px 0;
}

.x-action-group {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #71767b;
    transition: all 0.2s;
    padding: 4px 0;
}

.x-action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: all 0.2s;
}

.x-action-count {
    font-size: 13px;
    min-width: 20px;
    transition: color 0.2s;
}

.x-sponsored {
    margin-top: 12px;
    padding: 12px 16px;
    color: #71767b;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hover efektleri */
.x-action-group:hover {
    cursor: pointer;
}

.x-action-group:nth-child(1):hover {
    color: rgb(29, 155, 240);
}
.x-action-group:nth-child(1):hover .x-action-button {
    background: rgba(29, 155, 240, 0.1);
}

.x-action-group:nth-child(2):hover {
    color: rgb(0, 186, 124);
}
.x-action-group:nth-child(2):hover .x-action-button {
    background: rgba(0, 186, 124, 0.1);
}

.x-action-group:nth-child(3):hover {
    color: rgb(249, 24, 128);
}
.x-action-group:nth-child(3):hover .x-action-button {
    background: rgba(249, 24, 128, 0.1);
}

.x-action-group:nth-child(4):hover .x-action-button,
.x-action-group:nth-child(5):hover .x-action-button {
    background: rgba(239, 243, 244, 0.1);
}

.x-hashtag {
    color: rgb(29, 155, 240);
    cursor: pointer;
    text-decoration: none;
}

.x-hashtag:hover {
    text-decoration: underline;
}

.x-more {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #71767b;
    cursor: pointer;
    transition: all 0.2s;
}

.x-more:hover {
    background: rgba(239, 243, 244, 0.1);
}

/* Telegram popup stilleri */
.telegram-style {
    background: #1c1c1e;
    max-width: 420px;
    width: 100%;
    height: 85vh;
    border-radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tg-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tg-channel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-channel-pic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tg-channel-name {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.tg-subscribers {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.tg-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #121212;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tg-message {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    max-width: 85%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease;
}

.tg-message.sponsored {
    background: linear-gradient(135deg, rgba(88, 118, 252, 0.1), rgba(88, 118, 252, 0.05));
    margin: 24px auto;
    max-width: 95%;
    border: 1px solid rgba(88, 118, 252, 0.2);
}

.tg-message-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.tg-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tg-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.tg-media:hover img {
    transform: scale(1.02);
}

.tg-sponsored-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(88, 118, 252, 0.9);
    font-size: 13px;
    font-weight: 500;
    background: rgba(88, 118, 252, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.tg-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.tg-action-button {
    background: rgba(88, 118, 252, 0.15);
    color: rgba(88, 118, 252, 0.9);
    border: 1px solid rgba(88, 118, 252, 0.2);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.tg-action-button:hover {
    background: rgba(88, 118, 252, 0.2);
    transform: translateY(-1px);
}

.tg-message-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* VK popup stilleri */
.vk-style {
    background: #141414;
    max-width: 500px;
    width: 95%;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.vk-container {
    padding: 16px;
}

.vk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vk-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vk-profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(81, 129, 184, 0.2);
}

.vk-user-info {
    display: flex;
    flex-direction: column;
}

.vk-username {
    color: #5181B8;
    font-size: 15px;
    font-weight: 600;
}

.vk-post-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 2px;
}

.vk-content {
    margin-top: 12px;
}

.vk-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.vk-media {
    margin: 0 -16px;
    position: relative;
}

.vk-media img {
    width: 100%;
    height: auto;
    display: block;
}

.vk-sponsored-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5181B8;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.vk-stats {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 12px;
}

.vk-reactions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vk-reaction-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.vk-reaction-item i {
    color: #5181B8;
    font-size: 16px;
}

.vk-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vk-action-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(81, 129, 184, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vk-action-button:hover {
    background: rgba(81, 129, 184, 0.2);
    color: #5181B8;
}

.vk-action-button i {
    font-size: 16px;
}

/* TikTok popup stilleri */
.tiktok-style {
    background: #000;
    max-width: 360px;
    width: 95%;
    height: 85vh;
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    overflow: hidden;
    position: relative;
}

.tt-container {
    height: 100%;
    position: relative;
}

.tt-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

.tt-profile-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tt-profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.tt-user-info {
    flex: 1;
}

.tt-username {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tt-music-info {
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tt-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.tt-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 2;
}

.tt-description {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tt-hashtags {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tt-side-actions {
    position: absolute;
    right: 8px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 3;
}

.tt-action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

.tt-action-button i {
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tt-action-button span {
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.tt-action-button.like i {
    color: #FF2C55;
}

.tt-sponsored-label {
    position: absolute;
    top: 80px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    backdrop-filter: blur(4px);
    z-index: 3;
}

.tt-follow-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FF2C55;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    z-index: 3;
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* veya */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Genel font ayarları */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /* veya */
    /* font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Başlıklar için */
h1, h2, h3, .brand-title, .section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Alt başlıklar ve açıklamalar için */
.brand-subtitle, .section-subtitle, p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Butonlar ve etkileşimli elementler için */
button, .cta-button, .platform-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .brand-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 30px;
        letter-spacing: 4px;
    }
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 1000;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-select:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 8px;
}

@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 20px;
    }
}

/* Yeni navigasyon stilleri */
.top-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 20, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-navigation {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(6, 20, 73, 0.85);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Ana içerik düzenlemeleri */
.main-content {
    padding-top: 140px; /* top-section + navigation yüksekliği */
}

/* Bölüm başlıkları için ortak stil */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .main-content {
        padding-top: 120px;
    }
}

/* Smooth scroll davranışı */
html {
    scroll-behavior: smooth;
}

/* Başarı Hikayelerimiz Section */
.success-stories-section {
    max-width: 1200px;
    margin: 0 auto;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.success-story-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 176, 140, 0.05);
    border-color: rgba(212, 176, 140, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 20px;
}

.story-content h3 {
    color: #D4B08C;
    font-size: 24px;
    margin-bottom: 10px;
}

.story-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    color: #D4B08C;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Subtitle için geliştirilmiş stiller */
.subtitle {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    width: 90%;
    margin: 30px auto;
    line-height: 1.8;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .subtitle {
        font-size: 18px; /* Font boyutunu 18px'de tut */
        max-width: 800px;
        padding: 25px 35px;
    }
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 18px; /* Font boyutunu 18px'de tut */
        max-width: 600px;
        padding: 20px 30px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 18px; /* Font boyutunu 18px'de tut */
        max-width: 100%;
        padding: 20px 25px;
        line-height: 1.6;
    }
}

/* Ana stil */
.countries-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .countries-container {
        padding: 20px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }

    .countries-stats {
        flex-direction: row; /* Yatay düzende kal */
        gap: 20px; /* Boşluğu azalt */
        flex-wrap: nowrap; /* Yan yana kal */
        padding: 20px 10px;
    }

    .stat-item {
        flex: 1; /* Eşit genişlik */
        min-width: 0; /* Taşmayı önle */
    }

   

  
}


