/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1fb5d5;
    --primary-dark: #1388a3;
    --primary-light: #6ed6e6;
    --secondary-color: #5ccc63;
    --accent-purple: #9d7df5;
    --accent-indigo: #273d8c;
    --text-dark: #19243a;
    --text-light: #5b6b88;
    --bg-light: #f4f6ff;
    --bg-white: #ffffff;
    --border-color: #dbe2ff;
    --gradient-start: #1fb5d5;
    --gradient-end: #9d7df5;
    --gradient-alt: #5ccc63;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Mobile-only elements - Desktop'ta gizle */
.mobile-only {
    display: none;
}

.mobile-auth-buttons {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.75rem 0;
    gap: 1rem;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    overflow: visible;
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo h2 {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    white-space: nowrap;
    line-height: 1.6;
    padding: 0.4rem 0.2rem;
    margin: 0;
    display: inline-block;
}

.logo-tag {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 0.4rem;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.2rem 0;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    justify-self: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
    justify-self: end;
    flex-wrap: nowrap;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    position: relative;
    min-height: 32px; /* Geçiş sırasında yükseklik sabit kalsın */
}

.btn-login,
.btn-register {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.4s ease,
                all 0.2s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-login {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid rgba(15, 23, 42, 0.2);
}

.btn-login:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-profile {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1.5px solid rgba(102, 126, 234, 0.3);
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-profile:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.user-menu[style*="display: none"] {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) scale(0.95) !important;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.user-menu[style*="display: flex"] {
    animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.user-menu span {
    font-weight: 600;
    color: var(--text-dark);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-logout {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    background: transparent;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.language-toggle .flag-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.language-toggle:hover {
    background: rgba(15, 23, 42, 0.08);
}

.language-toggle svg {
    transition: transform 0.2s ease;
}

.language-dropdown.open .language-toggle svg {
    transform: rotate(180deg);
}

.language-list {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.5rem 0;
    min-width: 160px;
    display: none;
    z-index: 1100;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

.language-dropdown.open .language-list {
    display: block;
}


.language-list li {
    list-style: none;
}

.language-option {
    width: 100%;
    text-align: left;
    padding: 0.6rem 1rem;
    border: none;
    background: transparent;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-icon {
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.flag-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-option:hover,
.language-option:focus-visible {
    background: rgba(31, 181, 213, 0.08);
    color: var(--primary-color);
}

.language-option.active {
    color: var(--primary-color);
    background: rgba(31, 181, 213, 0.12);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-alt));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(31, 181, 213, 0.18), transparent 45%),
                radial-gradient(circle at top right, rgba(157, 125, 245, 0.2), transparent 55%),
                radial-gradient(circle at bottom left, rgba(92, 204, 99, 0.18), transparent 55%),
                var(--bg-light);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.camera-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2000;
}

.camera-modal.active {
    display: flex;
}

.camera-modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    width: min(90vw, 480px);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

#cameraPreview {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    background: var(--bg-light);
    object-fit: cover;
}

.camera-info {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

.camera-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.camera-modal-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.camera-modal-actions .btn-outline,
.camera-modal-actions .btn-primary {
    flex: 1;
    text-align: center;
}

.app-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-badge img {
    height: 50px;
    width: auto;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none !important; /* KALDIRILDI - Kullanıcı isteği üzerine */
    align-items: center;
    justify-content: center;
    z-index: -1 !important; /* Görünmez yap */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease;
    pointer-events: none !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-text {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    display: none; /* Desktop'ta gizle, sadece mobilde görünecek */
}

.hero-logo-container.mobile-only {
    display: none; /* Desktop'ta gizle, mobilde görünecek */
}

.hero-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--accent-indigo);
    border-radius: 40px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #00C6FF 0%, #5D26C1 50%, #52C234 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-header {
    height: 50px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.dynamic-island {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105px;
    height: 30px;
    background: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.island-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.island-camera {
    width: 5px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 50%;
    position: absolute;
    right: 10px;
}

.app-status-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.status-time {
    font-size: 15px;
    color: white;
    font-weight: 600;
    letter-spacing: -0.3px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    flex: 0 0 auto;
}

.status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
    flex: 0 0 auto;
}

.battery-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.battery-icon {
    width: 24px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 2px 2px 0;
}

.battery-level {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    width: calc(100% - 4px);
    background: #34c759;
    border-radius: 2px;
    width: 85%;
}

.battery-percent {
    font-size: 14px;
    color: white;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    letter-spacing: -0.2px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    padding: 0;
    gap: 0;
}

.app-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 12px;
    min-height: auto;
    background: transparent;
    gap: 0.5rem;
}

.app-logo {
    max-width: 72%;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.app-logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.logo-fox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.logo-fox {
    position: relative;
    width: 50px;
    height: 50px;
}

.fox-head {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5ccc63 0%, #1fb5d5 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fox-head::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: white;
    border-radius: 50%;
}

.fox-head::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
}

.fox-ears {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #5ccc63;
}

.fox-ears::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #ff8c42;
}

.logo-battery {
    margin-top: -12px;
    margin-left: 28px;
}

.battery-body {
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 4px;
    position: relative;
    background: rgba(92, 204, 99, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.battery-body::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -8px;
    width: 6px;
    height: 12px;
    background: white;
    border-radius: 0 3px 3px 0;
}

.battery-charge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(180deg, #5ccc63 0%, #1fb5d5 100%);
    border-radius: 0 0 3px 3px;
}

.battery-bolt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

.logo-banner {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    opacity: 0.95;
}

/* Map Info Section */
.map-info {
    padding: 0;
    margin-top: -8px;
}

.info-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-icon {
    font-size: 1.5rem;
    color: #ef4444;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-text strong {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
}

.info-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Action Section */
.app-action-section {
    padding: 0 12px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    margin: 0;
}

.qr-scanner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    overflow: hidden;
}

.charging-device {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.qr-grid-pattern {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 12px 12px;
    border-radius: 12px;
}

.qr-dashed-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.qr-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.qr-top-left {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 4px;
}

.qr-top-right {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 4px;
}

.qr-bottom-left {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 4px;
}

.qr-bottom-right {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 4px;
}

.qr-scanner span {
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
    z-index: 1;
    text-align: center;
    margin-top: auto;
    white-space: nowrap;
}

.device-screen {
    width: 50px;
    height: 20px;
    background: rgba(20, 184, 166, 0.6);
    border-radius: 4px;
    margin-bottom: 4px;
}

.device-body {
    width: 60px;
    height: 50px;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    border-radius: 8px;
    position: relative;
}

.device-feet {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.device-foot {
    width: 8px;
    height: 12px;
    background: #374151;
    border-radius: 2px;
}

.device-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #5ccc63;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(92, 204, 99, 0.8);
}

/* Map Section */
.app-map-section {
    flex: 1;
    padding: 0 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
}

.map-container {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    min-height: 150px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-background {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.station-marker {
    position: absolute;
    width: 24px;
    height: 24px;
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(92, 204, 99, 0.6);
    animation: pulse-marker 2s infinite;
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #5ccc63;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marker-1 { top: 25%; left: 35%; }
.marker-2 { top: 40%; left: 60%; }
.marker-3 { top: 55%; left: 25%; }
.marker-4 { top: 70%; left: 50%; }
.marker-5 { top: 45%; left: 75%; }

@keyframes pulse-marker {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes dot-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(34, 211, 238, 0.6), 0 0 0 2px rgba(34, 211, 238, 0.2);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(34, 211, 238, 0.9), 0 0 0 4px rgba(34, 211, 238, 0.4);
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
}

.map-info {
    padding: 0 4px;
}

.info-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.info-text {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 11px;
}

.info-text strong {
    font-size: 13px;
    font-weight: 700;
}

.info-text span {
    opacity: 0.9;
    font-size: 10px;
}



.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(31, 181, 213, 0.35);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(92, 204, 99, 0.28);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(157, 125, 245, 0.35);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    padding: 0;
    line-height: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.cities-scroll {
    height: 3rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    line-height: 3rem;
}

.cities-list {
    display: flex;
    flex-direction: column;
    animation: scroll-cities 10s linear infinite;
    min-height: 100%;
}

.city-name {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@keyframes scroll-cities {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-alt));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-alt));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(31, 181, 213, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    border: 2px solid var(--border-color);
}

.step-icon.qr-code-icon {
    background: rgba(31, 181, 213, 0.08);
    border: 2px solid var(--border-color);
    padding: 10px;
    border-radius: 20px;
}

.step-icon.qr-code-icon svg {
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Locations Section */
.locations {
    padding: 6rem 0;
    background: var(--bg-light);
}

.locations-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.locations-map {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.pulse-dot {
    animation: pulse 2s infinite;
}

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

.map-svg {
    width: 100%;
    height: 100%;
}

.map-location {
    animation: location-pulse 3.2s ease-in-out infinite;
}

.map-svg g:nth-of-type(3) {
    animation-delay: 0.4s;
}

.map-svg g:nth-of-type(4) {
    animation-delay: 0.8s;
}

.map-svg g:nth-of-type(5) {
    animation-delay: 1.2s;
}

.map-svg g:nth-of-type(6) {
    animation-delay: 1.6s;
}

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

.locations-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.location-list {
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.location-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 211, 238, 0.1));
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.location-item:hover .location-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}

.location-icon svg {
    width: 32px;
    height: 32px;
}

.location-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-details p {
    color: var(--text-light);
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: var(--bg-white);
}

.partners-grid {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-slider {
    display: flex;
    gap: 2rem;
    animation: slidePartners 20s linear infinite;
    width: fit-content;
}

.partner-logo {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 120px;
    flex-shrink: 0;
}

.partner-logo:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    justify-items: stretch;
}

.pricing-grid-triple {
    max-width: 1200px;
}

.pricing-grid-triple .pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-daily {
    border-color: rgba(31, 181, 213, 0.45);
    box-shadow: 0 20px 35px -15px rgba(31, 181, 213, 0.35);
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    white-space: nowrap;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 6px 12px rgba(31, 181, 213, 0.25);
}

.pricing-card button {
    margin-top: auto;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-white);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1 1 260px;
    min-width: 240px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-alt));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Footer */
.footer {
    background: var(--accent-indigo);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.footer-logo .logo-tag {
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-badge-small img {
    height: 40px;
    width: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.2rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 0.1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Menü açıkken body scroll'u kapat */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero-image {
        display: flex;
    }

    .hero-logo-container.mobile-only {
        display: flex;
        margin: 0.1rem 0;
    }

    .phone-mockup {
        display: none;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero-description {
        margin-bottom: 1.25rem;
        font-size: 1.1rem;
    }

    .nav-wrapper {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        gap: 0.75rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 255, 0.98) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
        box-shadow: 0 10px 40px rgba(31, 181, 213, 0.15), 0 0 0 1px rgba(157, 125, 245, 0.1);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        opacity: 0;
        z-index: 1000;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }

    /* Menu Overlay - Arka planı kapat */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.75);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        pointer-events: none;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu.active {
        display: flex;
        left: 0;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.4s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.35s; }
    .nav-menu.active li:nth-child(8) { animation-delay: 0.4s; }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu a {
        display: block;
        padding: 0.65rem 1.15rem;
        margin: 0.08rem 0;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(31, 181, 213, 0.06) 0%, rgba(157, 125, 245, 0.04) 100%);
        border: 1.5px solid rgba(31, 181, 213, 0.15);
        color: var(--text-dark);
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(31, 181, 213, 0.08);
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        transform: scaleY(0);
        transition: transform 0.3s ease;
        border-radius: 10px 0 0 10px;
    }

    .nav-menu a::after {
        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;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(31, 181, 213, 0.12) 0%, rgba(157, 125, 245, 0.1) 100%);
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(31, 181, 213, 0.2);
        padding-left: 1.5rem;
    }

    .nav-menu a:hover::before {
        transform: scaleY(1);
    }

    .nav-menu a:hover::after {
        left: 100%;
    }

    .mobile-auth-buttons {
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 2px solid;
        border-image: linear-gradient(90deg, transparent, rgba(31, 181, 213, 0.3), rgba(157, 125, 245, 0.3), transparent) 1;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease 0.45s forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-auth-container {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .mobile-btn-login,
    .mobile-btn-register {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 12px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .mobile-btn-login {
        background: var(--bg-white);
        border: 2px solid rgba(15, 23, 42, 0.1);
        color: var(--text-dark);
    }

    .mobile-btn-login:hover {
        background: rgba(15, 23, 42, 0.05);
        border-color: rgba(15, 23, 42, 0.2);
    }

    .mobile-btn-register {
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        border: none;
        color: white;
        box-shadow: 0 4px 15px rgba(31, 181, 213, 0.3);
    }

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

    .mobile-btn-register:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(31, 181, 213, 0.4);
    }

    .mobile-btn-register:hover::after {
        left: 100%;
    }

    .mobile-btn-register:active {
        transform: translateY(-1px);
    }

    .mobile-user-menu {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(31, 181, 213, 0.05) 0%, rgba(157, 125, 245, 0.05) 100%);
        border-radius: 12px;
        border: 1px solid rgba(31, 181, 213, 0.15);
        transition: all 0.3s ease;
    }

    .mobile-user-menu span {
        font-weight: 600;
        color: var(--text-dark);
        text-align: center;
    }

    .mobile-btn-profile {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 12px;
        background: rgba(102, 126, 234, 0.08);
        border: 2px solid rgba(102, 126, 234, 0.2);
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
    }

    .mobile-btn-profile:hover {
        background: rgba(102, 126, 234, 0.12);
        border-color: rgba(102, 126, 234, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    }

    .mobile-btn-logout {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 12px;
        background: rgba(239, 68, 68, 0.08);
        border: 2px solid rgba(239, 68, 68, 0.2);
        color: #ef4444;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .mobile-btn-logout::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(239, 68, 68, 0.15);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .mobile-btn-logout:hover {
        background: rgba(239, 68, 68, 0.12);
        border-color: rgba(239, 68, 68, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
    }

    .mobile-btn-logout:hover::before {
        width: 300px;
        height: 300px;
    }

    .mobile-language-item {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(15, 23, 42, 0.1);
    }

    .mobile-language-dropdown {
        width: 100%;
    }

    .mobile-language-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background: rgba(102, 126, 234, 0.05);
        border: 2px solid rgba(102, 126, 234, 0.1);
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .mobile-language-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
        border-color: rgba(102, 126, 234, 0.2);
    }

    .mobile-language-list {
        position: relative;
        top: 0.5rem;
        left: 0;
        right: 0;
        width: 100%;
        box-shadow: var(--shadow-md);
        border-radius: 12px;
    }

    .nav-actions {
        gap: 0.4rem;
        justify-self: end;
        flex-wrap: nowrap;
        display: flex;
    }

    .auth-buttons {
        display: none !important; /* Mobilde navbar'dan gizle */
    }

    .mobile-auth-buttons {
        display: block !important; /* Mobilde göster */
    }

    .mobile-only {
        display: flex !important; /* Mobilde göster */
    }

    .language-dropdown {
        display: block;
    }

    .btn-login,
    .btn-register {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }

    .user-menu {
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
        font-size: 0.75rem;
    }

    .user-menu span {
        max-width: 80px;
    }

    .btn-logout {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }

    .language-dropdown {
        position: relative;
    }

    .language-toggle {
        padding: 0.4rem 0.75rem;
        font-size: 0.82rem;
    }

    .language-dropdown.open .language-list {
        right: 0;
        top: calc(100% + 0.35rem);
        min-width: 150px;
    }

    /* Nav menu styles are already defined above in @media (max-width: 768px) */
    
    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.35rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partners-grid {
        overflow: hidden;
    }
    
    .partners-slider {
        gap: 1.5rem;
    }
    
    .partner-logo {
        min-width: 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 1rem 1.25rem;
    }

    .nav-menu a {
        padding: 0.6rem 1rem;
        margin: 0.06rem 0;
        font-size: 0.85rem;
    }

    .mobile-auth-buttons {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .mobile-btn-login,
    .mobile-btn-register {
        padding: 0.7rem 1.15rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.35rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        overflow: hidden;
    }
    
    .partners-slider {
        gap: 1rem;
    }
    
    .partner-logo {
        min-width: 80px;
        padding: 1rem;
        font-size: 0.8rem;
    }

    /* Success Overlay - Mobil */
    .success-overlay {
        z-index: 10002; /* Mobilde daha yüksek z-index */
    }

    .success-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: 90%;
        touch-action: manipulation; /* Mobilde dokunma optimizasyonu */
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .success-text {
        font-size: 1.1rem;
    }
}


/* Clean Phone Mockup Styles */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #4ade80 0%, #06b6d4 50%, #a78bfa 100%);
    border-radius: 45px;
    padding: 10px;
    box-shadow: 
        0 0 0 3px rgba(30, 58, 138, 0.7),
        0 0 0 5px rgba(30, 64, 175, 0.4),
        0 20px 40px rgba(0,0,0,0.3),
        0 0 80px rgba(59, 130, 246, 0.3);
    position: relative;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ade80 0%, #06b6d4 50%, #a78bfa 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.15);
}

.screen-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    gap: 15px;
}

/* 1. Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 0 22px; /* iPhone 14/15 safe area padding */
    height: 54px;
    margin-bottom: 0;
    position: relative;
    box-sizing: border-box;
}

.time {
    color: white;
    font-size: 15px;
    font-weight: 500;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.3px;
    width: 50px;
    margin-left: 8px;
}

.dynamic-island {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: black;
    border-radius: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 8px;
    z-index: 100;
}

.camera {
    width: 7px;
    height: 7px;
    background: #1a1a1a;
    border-radius: 50%;
}

.battery-status {
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
    justify-content: flex-end;
}

.battery-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
}

.battery-icon {
    width: 24px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 2.5px;
    padding: 1.5px;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    box-sizing: border-box;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    background: #4ade80;
    border-radius: 1.5px;
    margin: 0 auto;
}

/* 2. Logo Section */
.screen-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0;
}

.mockup-logo {
    max-width: 280px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #00C6FF 0%, #5D26C1 50%, #52C234 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    gap: 0;
    background: linear-gradient(135deg, #4ade80 0%, #06b6d4 50%, #a78bfa 100%);
}

/* 1. Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px 0 20px;
    height: 50px;
    margin-bottom: 0;
    position: relative;
    box-sizing: border-box;
}

.time {
    color: white;
    font-size: 15px;
    font-weight: 400;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.3px;
    width: 50px;
    margin-left: 8px;
}

.dynamic-island {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: black;
    border-radius: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 8px;
    z-index: 100;
}

.camera {
    width: 7px;
    height: 7px;
    background: #1a1a1a;
    border-radius: 50%;
}

.battery-status {
    display: flex;
    align-items: center;
    gap: 5px;
    width: auto;
    justify-content: flex-end;
}

.battery-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
}

.battery-icon {
    width: 24px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 2.5px;
    padding: 1.5px;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    box-sizing: border-box;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    background: #4ade80;
    border-radius: 1.5px;
    margin: 0 auto;
}

/* 2. Logo Section */
.screen-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0;
}

.mockup-logo {
    max-width: 280px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* 3. Map Section */
.screen-map-section {
    flex: 1;
    position: relative;
    padding: 0 12px;
    margin-bottom: 8px;
}

.map-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.6;
}

.station-point {
    width: 14px;
    height: 14px;
    background: #4ade80;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
    z-index: 2;
}

.station-point .pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.p1 { top: 15%; left: 30%; }
.p2 { top: 30%; left: 60%; }
.p3 { top: 50%; left: 25%; }
.p4 { top: 20%; left: 75%; }
.p5 { top: 55%; left: 55%; }

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.map-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(147, 51, 234, 0.4);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.badge-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
}

/* 4. Action Section */
.screen-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 12px 12px;
    height: 110px;
}

.action-btn {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.qr-btn {
    background: rgba(147, 51, 234, 0.3);
    backdrop-filter: blur(8px);
    gap: 8px;
}

.qr-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.corner {
    width: 12px;
    height: 12px;
    border: 2.5px solid white;
    position: absolute;
}

.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-radius: 0 4px 0 0; }
.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-radius: 0 0 0 4px; }
.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }

.scan-line {
    width: 100%;
    height: 2px;
    background: #4ade80;
    position: absolute;
    top: 50%;
    animation: scan 2s linear infinite;
    box-shadow: 0 0 6px #4ade80;
}

@keyframes scan {
    0% { top: 10%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

.qr-btn span {
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.pb-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #4ade80 100%);
}

.pb-icon {
    width: 45px;
    height: 65px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px 8px 4px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pb-screen {
    width: 32px;
    height: 18px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    position: relative;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pb-screen::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    height: 2px;
    background: rgba(74, 222, 128, 0.6);
    border-radius: 1px;
}

.pb-led {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(74, 222, 128, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
}
