/* =====================================================================
   TRANSLY - MODERN CORPORATE DESIGN
   Professional design with horizontal navigation and blue theme
   Color palette: dark blue, red accents, and white
   ===================================================================== */

/* CSS Variables - Modern Corporate Color Palette */
:root {
    /* Primary Colors */
    --primary-dark: #0f1419;
    --primary-blue: #1a1a2e;
    --primary-light-blue: #16213e;
    --accent-red: #ff4757;
    --accent-coral: #ff6b6b;
    --accent-white: #ffffff;
    --accent-light-gray: #e1e8ed;
    --accent-dark-gray: #8892b0;
    --accent-medium-gray: #a8b2d1;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b2d1;
    --text-muted: #8892b0;
    --text-accent: #ff4757;
    
    /* Background Colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1a2e;
    --bg-card: rgba(26, 26, 46, 0.8);
    --bg-card-hover: rgba(26, 26, 46, 0.95);
    
    /* Borders & Shadows */
    --border-primary: rgba(255, 71, 87, 0.2);
    --border-secondary: rgba(168, 178, 209, 0.1);
    --shadow-primary: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-secondary: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 8px 30px rgba(255, 71, 87, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f1419 100%);
    --gradient-accent: linear-gradient(135deg, #ff4757 0%, #ff6b6b 100%);
    
    /* Layout */
    --navbar-height: 80px;
    --content-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Modern Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -2;
    pointer-events: none;
}

/* Subtle Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* =====================================================================
   HORIZONTAL NAVIGATION SYSTEM
   ===================================================================== */

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-secondary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.navbar-brand .brand-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .accent {
    color: var(--accent-red);
    margin-left: 2px;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.navbar-nav-item {
    position: relative;
}

.navbar-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav-link:hover {
    color: var(--text-primary);
}

.navbar-nav-link:hover::after {
    width: 100%;
}

.navbar-nav-link.active {
    color: var(--accent-red);
}

.navbar-nav-link.active::after {
    width: 100%;
}

.navbar-nav-link i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.navbar-user-info i {
    color: var(--accent-red);
}

.navbar-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.navbar-btn:hover::before {
    left: 100%;
}

/* =====================================================================
   HAMBURGER MENU FOR MOBILE
   ===================================================================== */

.navbar-hamburger {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
}

.navbar-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

/* Desktop rules - ensure proper display above 768px */
@media (min-width: 769px) {
    .navbar-hamburger {
        display: none !important;
    }
    
    .navbar-nav {
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        transform: none !important;
        padding: 0 !important;
        gap: 2rem !important;
        border: none !important;
    }
    
    .navbar-nav-item {
        width: auto !important;
        text-align: left !important;
    }
    
    .navbar-nav-link {
        width: auto !important;
        justify-content: flex-start !important;
        border-bottom: none !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    /* Show hamburger button on mobile */
    .navbar-hamburger {
        display: flex;
        order: 3;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .navbar-actions {
        order: 2;
    }
    
    /* Mobile dropdown navigation menu - Baloncuk tarzı animasyonlu */
    .navbar-nav {
        display: none;
        position: absolute;
        top: calc(var(--navbar-height) + 10px);
        right: 20px;
        width: 280px; /* Baloncuk genişliği */
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 1001;
        border: 1px solid var(--border-secondary);
        border-radius: 16px; /* Yuvarlatılmış köşeler */
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        transform: translateY(-20px) scale(0.9);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform-origin: top right;
    }
    
    /* Baloncuk okucuğu (üçgen) */
    .navbar-nav::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 30px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid rgba(15, 20, 25, 0.98);
        filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.2));
    }
    
    .navbar-nav.mobile-active {
        display: flex;
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    
    .navbar-nav-item {
        width: 100%;
        text-align: center;
        transform: translateX(20px);
        opacity: 0;
        animation: slideInFromRight 0.4s ease forwards;
    }
    
    /* Her item için farklı animasyon gecikmesi */
    .navbar-nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-nav-item:nth-child(4) { animation-delay: 0.25s; }
    .navbar-nav-item:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes slideInFromRight {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .navbar-nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        width: calc(100% - 16px);
        font-size: 0.95rem;
        color: var(--text-secondary);
        text-decoration: none;
        border-radius: 8px;
        margin: 2px 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav-link:hover {
        background: rgba(255, 71, 87, 0.15);
        color: var(--accent-red);
        transform: translateX(5px);
    }
    
    /* Mobile menüde active link için özel stil */
    .navbar-nav-link.active {
        background: rgba(255, 71, 87, 0.2);
        color: var(--accent-red);
        border-left: 3px solid var(--accent-red);
    }
    
    /* Mobile menüde hover ve active çizgilerini devre dışı bırak */
    .navbar-nav-link::after {
        display: none;
    }
    
    .navbar-nav-link i {
        margin-right: 0.75rem;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    .navbar-nav-link:hover i {
        transform: scale(1.1);
    }
    
    
    /* Mobile navbar actions */
    .navbar-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .navbar-user-info {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.8rem;
        text-align: center;
    }
    
    .navbar-user-info span {
        display: none;
    }
    
    .navbar-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Adjust navbar container padding */
    .navbar-container {
        padding: 0 1rem;
    }
    
    /* Brand text size adjustment */
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    /* Hero section mobile adjustments */
    .hero-section {
        padding: 1rem;
        min-height: calc(100vh - var(--navbar-height));
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Hero responsive adjustments */
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .hero-app-showcase {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .app-screenshot-tilted {
        max-width: 120%;
        transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
        filter: drop-shadow(15px 20px 40px rgba(0, 0, 0, 0.3));
    }
    
    .btn-futuristic {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .navbar-container {
        padding: 0 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .navbar-user-info {
        font-size: 0.75rem;
    }
    
    /* Make navbar slightly smaller on very small screens */
    :root {
        --navbar-height: 70px;
    }
    
    /* Hero section for extra small screens */
    .hero-section {
        padding: 0.5rem;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        margin-bottom: 1rem;
        font-weight: 800;
        letter-spacing: -1.5px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin-bottom: 2rem;
        line-height: 1.5;
        font-weight: 500;
    }
    
    /* Extra small hero adjustments */
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .screen-content {
        top: 9%;
        left: 13%;
        width: 74%;
        height: 66%;
    }
    
    .btn-futuristic {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* =====================================================================
   MAIN CONTENT AREA
   ===================================================================== */

.main-content {
    padding-top: var(--navbar-height);
    min-height: 100vh;
    position: relative;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: var(--gradient-hero);
}

.hero-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content */
.hero-content {
    text-align: left;
    max-width: 650px;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    animation: heroSlideInLeft 1.5s ease-out;
}

/* Hero App Showcase */
.hero-app-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: heroSlideInRight 1.5s ease-out;
}

.app-screenshot-tilted {
    max-width: 650px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    filter: drop-shadow(20px 30px 60px rgba(0, 0, 0, 0.4));
    transition: all 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatingApp 6s ease-in-out infinite;
}

.app-screenshot-tilted:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
    filter: drop-shadow(25px 35px 70px rgba(0, 0, 0, 0.5));
    animation-play-state: paused;
}

@keyframes floatingApp {
    0%, 100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-10px);
    }
}

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -3px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.hero-title .brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .accent {
    color: #f5576c;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(245, 87, 108, 0.4));
    text-shadow: 0 0 10px rgba(245, 87, 108, 0.3);
}

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

.hero-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.65;
    font-weight: 500;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn-futuristic {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary-futuristic {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-red);
}

.btn-primary-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.btn-secondary-futuristic {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-secondary);
}

.btn-secondary-futuristic:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--border-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    text-decoration: none;
}

/* =====================================================================
   SECTIONS
   ===================================================================== */

.futuristic-section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 0 auto;
}

/* =====================================================================
   CARDS & FEATURES
   ===================================================================== */

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-primary);
}

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

.feature-icon-wrapper {
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.feature-icon i {
    color: white !important; /* Inline style'ları override et */
    font-size: 2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================================
   STATS SECTION
   ===================================================================== */

.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================================
   CONTAINER & GRID SYSTEM
   ===================================================================== */

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12, .col-lg-4, .col-md-6, .col-xl-3, .col-lg-3 {
    padding: 0 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.g-4 > * {
    margin-bottom: 1.5rem;
}

.g-0 {
    margin: 0;
}

.g-0 > * {
    padding: 0;
}

/* =====================================================================
   MOBILE RESPONSIVE
   ===================================================================== */

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-futuristic {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .futuristic-section {
        padding: 4rem 0;
    }
}

/* =====================================================================
   PAGE CONTENT SPACING
   ===================================================================== */

.page-content-spacing {
    padding-top: 2rem;
}

/* =====================================================================
   ADMIN PAGES
   ===================================================================== */

.admin-page {
    padding: 2rem 0;
    min-height: calc(100vh - var(--navbar-height));
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
}

.admin-card:hover {
    border-color: var(--border-primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

.admin-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.admin-header {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-secondary);
}

.admin-header .section-title {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.admin-header .section-subtitle {
    margin: 0;
    color: var(--text-secondary);
}

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

.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.status-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-item:last-child {
    border-bottom: none;
}

.status-badge {
    background: var(--gradient-accent);
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table {
    width: 100%;
    table-layout: fixed;
    background: #0d1b2a; /* Koyu lacivert arkaplan */
    border: 1px solid var(--border-secondary);
    color: var(--text-primary);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-secondary);
    text-align: left;
}

.admin-table th {
    background: #415a77; /* Başlık için orta ton lacivert */
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
    background: #1b263b; /* Hover için biraz daha açık lacivert */
}

.admin-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.admin-btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

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

.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-primary);
    box-shadow: var(--shadow-primary);
}

.admin-stat-card h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
}

/* =====================================================================
   AUTHENTICATION MODALS
   ===================================================================== */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-modal.show {
    opacity: 1;
    visibility: visible;
}

.auth-modal.closing {
    opacity: 0;
    transform: scale(0.95);
}

.auth-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    margin: 2rem;
    box-shadow: var(--shadow-primary);
    transform: scale(0.95);
    transition: all 0.3s ease;
    animation: modalSlideIn 0.3s ease forwards;
}

.auth-modal.show .auth-modal-content {
    transform: scale(1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.95) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.auth-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.auth-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-close:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.auth-modal-body {
    padding: 2rem;
}

.auth-modal .form-control {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border-secondary);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-modal .form-control:focus {
    background: var(--bg-secondary);
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
    color: var(--text-primary);
}

.auth-modal .form-control::placeholder {
    color: var(--text-muted);
}

.auth-modal .input-group-text {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border-secondary);
    color: var(--text-secondary);
    border-radius: 8px 0 0 8px;
}

.auth-modal .input-group .form-control {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.auth-modal .btn-shimmer {
    background: var(--gradient-accent);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.auth-modal .btn-shimmer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.auth-modal .btn-shimmer:hover::before {
    left: 100%;
}

.auth-modal .alert {
    border: none;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.auth-modal .alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-left: 4px solid #22c55e;
}

.auth-modal .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-left: 4px solid #ef4444;
}

.auth-modal .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-left: 4px solid #f59e0b;
}

/* =====================================================================
   USER DROPDOWN MENU - Baloncuk Tarzı
   ===================================================================== */

.navbar-user-dropdown {
    position: relative;
    display: inline-block;
}

.user-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-secondary);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-secondary);
}

.user-toggle-btn:hover {
    background: rgba(26, 26, 46, 0.95);
    border-color: var(--border-primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-1px);
}

.user-credits {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.85rem;
}

.user-plan-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    /* Default free styling */
    background: #6b7280;
    color: white;
    box-shadow: 0 1px 3px rgba(107, 114, 128, 0.3);
}

/* Membership type specific styles */
.user-plan-badge.free {
    background: #6b7280 !important;
    color: white !important;
    box-shadow: 0 1px 3px rgba(107, 114, 128, 0.3) !important;
}

.user-plan-badge.beginner {
    background: #16a34a !important;
    color: white !important;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.3) !important;
}

.user-plan-badge.plus {
    background: #2563eb !important;
    color: white !important;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3) !important;
}

.user-plan-badge.pro {
    background: #9333ea !important;
    color: white !important;
    box-shadow: 0 1px 3px rgba(147, 51, 234, 0.3) !important;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 250px;
    max-width: 320px; /* Dinamik genişlik için max-width */
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: top right;
    padding: 1rem 0;
}

/* Baloncuk okucuğu (üçgen) */
.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(15, 20, 25, 0.98);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.2));
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.user-email-item {
    background: rgba(26, 26, 46, 0.3);
    margin-bottom: 0.5rem;
    pointer-events: none;
    word-wrap: break-word; /* Uzun kelimeleri böl */
    word-break: break-all; /* Gerekirse harfleri böl */
    overflow-wrap: anywhere; /* Modern browsers için */
    line-height: 1.4; /* Çok satır için yeterli aralık */
    max-width: 100%; /* Konteyner genişliğini aşmasın */
    box-sizing: border-box; /* Padding dahil hesapla */
}

.user-email-item span {
    flex: 1;
    min-width: 0; /* Flexbox overflow için */
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 0.85rem; /* Biraz daha küçük font */
    line-height: 1.3;
}

.user-email-item i {
    color: var(--accent-red);
}

.user-logout-item:hover {
    background: rgba(255, 71, 87, 0.15);
    color: var(--accent-red);
    transform: translateX(5px);
}

.upgrade-plan-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.upgrade-plan-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    color: #ffd700;
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.upgrade-plan-item i {
    color: #ffd700;
}

.user-logout-item:hover i {
    transform: scale(1.1);
}

.user-dropdown-divider {
    border: none;
    height: 1px;
    background: var(--border-secondary);
    margin: 0.5rem 1rem;
    opacity: 0.5;
}

/* Mobile için responsive ayarlar */
@media (max-width: 768px) {
    .user-dropdown-menu {
        width: auto; /* Otomatik genişlik */
        min-width: 220px; /* Minimum genişlik */
        max-width: calc(100vw - 40px); /* Ekran genişliğini aşmasın */
        right: 10px; /* Sağ kenardan boşluk */
        left: auto; /* Sol pozisyon iptal */
    }
    
    .user-dropdown-menu.show {
        transform: translateY(0) scale(1); /* Normal gösterim */
    }
    
    .user-dropdown-menu::before {
        right: 30px; /* Ok konumu sağda sabit */
        left: auto;
        transform: none;
    }
    
    .user-toggle-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        max-width: 200px; /* Button'un maksimum genişliği */
    }
    
    .user-credits {
        font-size: 0.8rem;
    }
    
    .user-email-item span {
        font-size: 0.8rem; /* Mobile'da daha küçük */
    }

    
    
    .user-dropdown-item {
        padding: 0.6rem 1rem; /* Daha kompakt padding */
        font-size: 0.9rem;
    }
    
    .user-email-item {
        flex-direction: column; /* Email'i alt satıra al */
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .user-email-item span {
        word-break: break-all; /* Uzun emailleri böl */
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.85rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .user-dropdown-menu {
        width: calc(100vw - 20px);
        max-width: 260px;
        /* Ortalama ayarları aynı kalacak */
    }
    
    .user-dropdown-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .user-email-item span {
        font-size: 0.8rem;
        max-width: calc(100% - 20px);
    }
}

/* =====================================================================
   MODERN ANIMATIONS & EFFECTS
   Sophisticated background animations and subtle interactions
   ===================================================================== */

/* Animated Background Shapes */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-red), transparent);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 60px;
    height: 200px;
    background: linear-gradient(90deg, var(--accent-coral), transparent);
    border-radius: 30px;
    top: 30%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 30s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    top: 60%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-coral);
    border-radius: 10px;
    top: 80%;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 35s;
    transform: rotate(15deg);
}

.shape-5 {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-coral), transparent);
    top: 50%;
    left: 50%;
    animation-delay: -20s;
    animation-duration: 28s;
    transform: rotate(-30deg);
}

.shape-6 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--accent-red), transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 70%;
    animation-delay: -8s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(10px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced button hover effects */
.modern-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3);
}

/* Subtle parallax effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Card hover enhancements */
.modern-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 71, 87, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Text glow effect for headings */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
    transition: text-shadow 0.3s ease;
}

.glow-text:hover {
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

/* Loading animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Smooth reveal animation for content */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-animation {
    animation: reveal 0.8s ease forwards;
}

/* Interactive line effect */
.interactive-line {
    position: relative;
    display: inline-block;
}

.interactive-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.interactive-line:hover::after {
    width: 100%;
}

/* =====================================================================
   EXTRA SMALL SCREENS - USER DROPDOWN RESPONSIVE
   ===================================================================== */
@media (max-width: 480px) {
    .user-dropdown-menu {
        min-width: 200px;
        max-width: calc(100vw - 20px); /* Daha az margin */
        right: 5px;
    }
    
    .user-toggle-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        max-width: 180px;
    }
    
    .user-email-item {
        padding: 0.6rem 1rem; /* Daha compact */
    }
    
    .user-email-item span {
        font-size: 0.75rem; /* Daha da küçük */
    }
    
    .user-credits {
        font-size: 0.75rem;
    }
    
    .user-dropdown-item {
        padding: 0.6rem 1rem; /* Tüm item'lar için daha compact */
    }
}

/* =====================================================================
   HERO SECTION RESPONSIVE DESIGN
   ===================================================================== */

@media (max-width: 992px) {
    /* Tablet responsive adjustments */
    .hero-section .container {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1rem 2rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .hero-app-showcase {
        padding: 1rem 0;
    }
    
    .app-screenshot-tilted {
        max-width: 550px;
        margin: 0 auto;
        transform: perspective(900px) rotateY(-12deg) rotateX(4deg);
        filter: drop-shadow(18px 25px 50px rgba(0, 0, 0, 0.35));
    }
}

@media (max-width: 768px) {
    /* Mobile hero adjustments */
    .hero-section .container {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .hero-buttons {
        align-items: center;
        justify-content: center;
    }
    
    .hero-app-showcase {
        padding: 1rem;
    }
    
    .app-screenshot-tilted {
        max-width: 95%;
        transform: perspective(600px) rotateY(-8deg) rotateX(2deg);
        filter: drop-shadow(12px 15px 30px rgba(0, 0, 0, 0.25));
    }
}