* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Logo ortada */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-login,
.btn-register {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

/* Butonların altı çizgisini kaldır */
.btn-login::after,
.btn-register::after {
    display: none !important;
}

.btn-login {
    background: transparent;
    color: #75C2B2;
    border: 2px solid #75C2B2;
}

.btn-login:hover {
    background: #75C2B2;
    color: white;
}

.btn-register {
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

/* Hero Container - Tam Genişlik Layout */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Sol ve Sağ Menüler */
.hero-sidebar {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    width: 280px;
    flex-shrink: 0;
    max-height: 80vh;
    overflow-y: auto;
}

/* Mobil menü wrapper içindeki sidebar'lar - masaustünde gizli */
.mobile-menu-wrapper .hero-sidebar {
    display: none;
}

/* Scrollbar stilleri */
.hero-sidebar::-webkit-scrollbar {
    width: 8px;
}

.hero-sidebar::-webkit-scrollbar-track {
    background: rgba(117, 194, 178, 0.1);
    border-radius: 10px;
}

.hero-sidebar::-webkit-scrollbar-thumb {
    background: #75C2B2;
    border-radius: 10px;
}

.hero-sidebar::-webkit-scrollbar-thumb:hover {
    background: #5aa08f;
}

.hero-sidebar-left {
    /* Tam solda */
}

.hero-sidebar-right {
    /* Tam sağda */
}

.mobile-menu-toggle {
    display: none;
}

.header-menu-toggle {
    display: none;
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(117, 194, 178, 0.4);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 6px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(117, 194, 178, 0.05);
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background: #75C2B2;
    color: white;
    transform: translateX(5px);
    border-left-color: #5aa08f;
}

.sidebar-menu a.masa-sayisi {
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 12px 15px;
}

/* Orta Resim - Kalan alanı doldur */
.hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex: 1;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #75C2B2;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #75C2B2;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7fd8c6 0%, #7fd8c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

/* YENİ PAKETLER SECTION */
.packages-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

/* Mobil Menü Wrapper - Sadece mobilde göster */
.mobile-menu-wrapper {
    display: none;
}

.packages-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.package-card-new {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid #e0e0e0;
    overflow: hidden;
}

.package-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #75C2B2, #7fd8c6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.package-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.package-card-new.bronze {
    border-color: #CD7F32;
}

.package-card-new.bronze:hover {
    border-color: #CD7F32;
}

.package-card-new.silver {
    border-color: #C0C0C0;
}

.package-card-new.silver:hover {
    border-color: #C0C0C0;
}

.package-card-new.gold {
    border-color: #FFD700;
}

.package-card-new.gold:hover {
    border-color: #FFD700;
}

.package-card-new.gold.featured {
    transform: scale(1.03);
    border-width: 4px;
}

.package-card-new.diamond {
    border-color: #B9F2FF;
}

.package-card-new.diamond:hover {
    border-color: #B9F2FF;
}

.package-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 12px;
}

.package-card-new h3 {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.package-description {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 40px;
}

.package-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #75C2B2;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.package-features-new {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}

.package-features-new li {
    padding: 8px 0;
    color: #555;
    font-size: 12px;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s;
}

.package-features-new li:hover {
    padding-left: 8px;
    color: #333;
}

.package-features-new li.gift {
    background: linear-gradient(90deg, rgba(117, 194, 178, 0.1), transparent);
    color: #75C2B2;
    font-weight: 700;
    padding: 12px 10px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;
}

.price-new {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(117, 194, 178, 0.1), rgba(127, 216, 198, 0.1));
    border-radius: 12px;
}

.price-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #75C2B2;
    line-height: 1;
}

.btn-package-new {
    width: 100%;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-package-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 194, 178, 0.4);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Download Section */
.download-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
}

.download-section .section-title,
.download-section .section-subtitle {
    color: white;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.download-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.download-card:hover {
    transform: translateY(-10px);
}

.download-card.featured {
    border: 3px solid #ffd700;
}

.platform-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.download-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-download {
    width: 100%;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.version {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

/* Salons Section */
.salons-section {
    padding: 100px 20px;
    background: white;
}

.salons-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.salons-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #75C2B2;
}

/* Aktif Salonlar */
.salons-list {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.salon-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.salon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 3px solid #75C2B2;
}

.salon-item:hover {
    background: #75C2B2;
    color: white;
    transform: translateX(5px);
}

.salon-icon {
    font-size: 20px;
}

.salon-name {
    font-weight: 600;
    flex: 1;
}

.salon-online {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.salon-item:hover .salon-online {
    color: white;
}

/* Popüler Salonlar */
.popular-salons {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.popular-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.popular-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(117, 194, 178, 0.2);
}

.popular-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.popular-rank {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.popular-name {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.popular-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: #75C2B2;
    color: white;
    border-radius: 12px;
    font-weight: 600;
}

.popular-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.popular-fill {
    height: 100%;
    background: linear-gradient(90deg, #75C2B2 0%, #7fd8c6 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.popular-count {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

/* Leaderboard Section */
.leaderboard-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.leaderboard {
    margin-top: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: linear-gradient(135deg, #75C2B2 0%, #7fd8c6 100%);
    color: white;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 20px;
    text-align: left;
}

.leaderboard-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.leaderboard-table tbody tr:hover {
    background: #f8f9fa;
}

.leaderboard-table tbody tr.top-rank {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
}

.rank {
    font-size: 24px;
    font-weight: 800;
}

.player-name {
    font-weight: 600;
    color: #333;
}

.prize {
    color: #75C2B2;
    font-weight: 600;
}

/* SOSYAL MEDYA SECTION */
.social-section {
    padding: 100px 20px;
    background: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.social-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-card::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.5s ease;
}

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

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.social-card.tiktok {
    border-color: #000000;
}

.social-card.tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 100%);
    color: white;
}

.social-card.tiktok:hover .social-icon {
    color: white;
}

.social-card.instagram {
    border-color: #E1306C;
}

.social-card.instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
    color: white;
}

.social-card.instagram:hover .social-icon {
    color: white;
}

.social-card.facebook {
    border-color: #1877F2;
}

.social-card.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-card.facebook:hover .social-icon {
    color: white;
}

.social-card.youtube {
    border-color: #FF0000;
}

.social-card.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-card.youtube:hover .social-icon {
    color: white;
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 40px;
}

.social-card.tiktok .social-icon {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 100%);
    color: white;
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
    color: white;
}

.social-card.facebook .social-icon {
    background: #1877F2;
    color: white;
}

.social-card.youtube .social-icon {
    background: #FF0000;
    color: white;
}

.social-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.social-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-card:hover p {
    color: rgba(255,255,255,0.9);
}

.social-follow {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(117, 194, 178, 0.1);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.social-card:hover .social-follow {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: #75C2B2;
}

.footer-col a i {
    font-size: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
}

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

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

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .hero-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-sidebar-left {
        order: 2;
    }
    
    .hero-center {
        order: 1;
        width: 100%;
    }
    
    .hero-sidebar-right {
        order: 3;
    }
    
    .salons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container-fluid {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        padding: 40px 0;
        margin-top: 140px;
    }
    
    .hero-container {
        gap: 15px;
        padding: 0 10px;
        flex-direction: column;
    }
    
    /* Mobil menü wrapper */
    .mobile-menu-wrapper {
        display: none;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        z-index: 998;
        padding: 15px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }
    
    .mobile-menu-wrapper.active {
        display: block !important;
        animation: fadeIn 0.3s ease;
    }
    
    /* Mobilde header hamburger menü göster */
    .header-menu-toggle {
        display: block;
    }
    
    /* Mobil sidebar menüler - hero-container içindekiler gizli */
    .hero-container .hero-sidebar {
        display: none;
    }
    
    /* Mobil menü wrapper içindeki sidebar'lar - mobilede göster */
    .mobile-menu-wrapper .hero-sidebar {
        display: none;
        width: 100%;
        max-width: 100%;
        max-height: none;
        overflow-y: visible;
        padding: 0;
        margin-bottom: 0;
        background: transparent;
        box-shadow: none;
        position: relative;
    }
    
    .mobile-menu-wrapper .hero-sidebar-left.mobile-active,
    .mobile-menu-wrapper .hero-sidebar-right.mobile-active {
        display: block;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 20px;
        margin-bottom: 15px;
    }
    
    /* Mobil menü başlıkları */
    .mobile-menu-wrapper .hero-sidebar-left.mobile-active::before {
        content: '📍 Menü';
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #75C2B2;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #75C2B2;
    }
    
    .mobile-menu-wrapper .hero-sidebar-right.mobile-active::before {
        content: '💳 İşlemler';
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #75C2B2;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #75C2B2;
    }
    
    .sidebar-menu {
        display: block;
        max-height: none;
    }
    
    .sidebar-menu a {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    .hero-center {
        order: 1;
        width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .packages-grid-new {
        grid-template-columns: 1fr;
    }
    
    .package-card-new {
        border: 3px solid #e0e0e0;
    }
    
    .package-card-new.bronze {
        border-color: #CD7F32;
    }
    
    .package-card-new.silver {
        border-color: #C0C0C0;
    }
    
    .package-card-new.gold {
        border-color: #FFD700;
    }
    
    .package-card-new.diamond {
        border-color: #B9F2FF;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-table {
        font-size: 12px;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 8px 5px;
    }
    
    .salon-items {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-title2 {
        font-size: 32px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 400px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
