:root {
    --primary-color: #10b981;
    --secondary-color: #34d399;
    --accent-color: #a7f3d0;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-glow: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(52, 211, 153, 0.1) 70%, transparent 100%);
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--darker-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography & Utilities */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

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

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 38px;
    max-height: 38px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
}

.navbar .logo img {
    height: 38px;
    max-height: 38px;
}

.logo .dot {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-cta .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

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

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

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

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

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

/* ========== HERO ========== */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr minmax(320px, 400px);
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-group .btn i {
    margin-left: 8px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-item .number i {
    font-size: 1.5rem;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Phone Mockup */
.hero-image {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

/* Telefon üst çentiği (Dynamic Island / notch) */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
    pointer-events: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid #333;
}

/* Telefon alt home indicator (gesture bar) */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    z-index: 10;
    pointer-events: none;
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Phone Slider */
.phone-slider-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 320px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: -60px;
}

.slider-arrow-right {
    right: -60px;
}

.screen.screen-slider {
    padding: 30px 0 0 0 !important;
    margin: 0;
    background: #000;
}

.screen-slider {
    overflow: hidden;
    display: block;
    padding: 30px 0 0 0 !important;
    margin: 0;
    background: #000;
}

.app-slider {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.app-slide img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.screen-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 15;
}

.screen-slider .slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.screen-slider .slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.screen-slider .slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.app-screen-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
    color: white;
}

.app-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.app-header span {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workout-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.workout-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.set-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 3px;
}

.ai-insight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.2));
    padding: 15px;
    border-radius: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ai-insight i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.ai-insight p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--text-color);
}

/* Profile Screen Mockup */
.app-screen-profile {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    padding: 0;
    font-size: 11px;
}

.mock-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 8px;
}

.mock-username {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
}

.mock-topbar i {
    color: #888;
    font-size: 13px;
}

.mock-profile-info {
    text-align: center;
    padding: 5px 16px 10px;
}

.mock-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 8px;
    color: #666;
    font-size: 20px;
}

.mock-name {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    margin-bottom: 2px;
}

.mock-location {
    font-size: 10px;
    color: var(--primary-color);
}

.mock-location i {
    margin-right: 3px;
    font-size: 9px;
}

.mock-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-stat {
    text-align: center;
}

.mock-stat-num {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.mock-stat-label {
    display: block;
    font-size: 8px;
    color: #666;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.mock-chips {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    overflow: hidden;
}

.mock-chip {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 9px;
    color: #ccc;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mock-chip i {
    font-size: 8px;
    color: var(--primary-color);
}

.mock-activity {
    flex: 1;
    padding: 8px 12px;
    overflow: hidden;
}

.mock-activity-title {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mock-post-card {
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}

.mock-post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mock-post-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 9px;
    color: #fff;
    flex-shrink: 0;
}

.mock-post-meta {
    flex: 1;
}

.mock-post-meta span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.mock-post-time {
    font-weight: 400 !important;
    color: #666 !important;
    font-size: 8px !important;
}

.mock-post-header > i {
    color: #555;
    font-size: 10px;
}

.mock-post-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.mock-tag {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
}

.mock-tag.leg {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
}

.mock-tag.star {
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
}

.mock-tag.star i {
    font-size: 7px;
    margin-right: 2px;
}

.mock-post-image {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.mock-post-image i {
    font-size: 24px;
    color: #333;
}

.mock-post-title {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    margin-bottom: 6px;
}

.mock-post-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-post-metrics {
    display: flex;
    gap: 10px;
    font-size: 9px;
    color: #888;
}

.mock-post-metrics strong {
    color: #fff;
}

.mock-post-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #666;
}

.mock-post-actions .fa-heart:first-child {
    color: #ef4444;
}

.mock-likes {
    font-size: 8px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mock-likes i {
    font-size: 7px;
    color: #ef4444;
}

/* Bottom Navigation */
.mock-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 8px 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0a0a0a;
    margin-top: auto;
}

.mock-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #555;
    font-size: 8px;
}

.mock-nav-item i {
    font-size: 13px;
}

.mock-nav-item span {
    font-size: 7px;
}

.mock-nav-center {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.mock-nav-center span {
    display: none;
}

.mock-nav-active {
    color: var(--primary-color) !important;
}

.mock-nav-active span {
    color: var(--primary-color);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 3s;
}

.floating-card i {
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 12px;
}

.card-1 i {
    background: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
}

.card-2 i {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.floating-card strong {
    font-size: 1.1rem;
}

/* Background Globes */
.background-globes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.globe-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
    animation: pulse 10s infinite alternate;
}

.globe-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -200px;
    animation: pulse 15s infinite alternate-reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

/* ========== GERİ SAYIM ========== */
.countdown-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.countdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.04) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.countdown-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
    opacity: 0.8;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.countdown-sublabel {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.7;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
}

.countdown-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.countdown-suffix {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.countdown-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.4);
    margin: 0 2px;
    animation: countdown-blink 1s ease-in-out infinite;
}

@keyframes countdown-blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@media (max-width: 600px) {
    .countdown-wrap {
        padding: 20px 16px;
        gap: 12px;
    }

    .countdown-value {
        font-size: 1.4rem;
    }

    .countdown-unit {
        min-width: 48px;
    }

    .countdown-sep {
        font-size: 1.2rem;
    }
}

/* ========== SECTION HEADER (shared) ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-header .badge {
    display: inline-block;
}

/* ========== COMMUNITY SECTION ========== */
.community-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.community-feature .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.community-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.community-feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Social Feed Mockup */
.social-feed-mockup {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 380px;
    margin: 0 auto;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    color: var(--text-muted);
}

.feed-header span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.feed-post {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.post-avatar.green {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.post-header strong {
    display: block;
    font-size: 0.95rem;
}

.post-header span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-body {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.post-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.post-stat i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.post-pr {
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
}

.post-pr i {
    margin-right: 4px;
}

.post-routine-tag {
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary-color);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-routine-tag i {
    margin-right: 6px;
}

.post-actions {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-actions i {
    margin-right: 4px;
}

/* ========== TRACKING SECTION (Features) ========== */
.tracking-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
}

.tracking-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.tab-btn i {
    margin-right: 8px;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-color);
}

.tab-btn.active {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.feature-card .icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--gradient-main);
    color: white;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ========== COACHING SECTION ========== */
.coaching-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coaching-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.coaching-feature .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.coaching-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.coaching-feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Coach Dashboard Mockup */
.coach-dashboard-mockup {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.dashboard-athlete {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.athlete-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.athlete-info {
    flex: 1;
}

.athlete-info strong {
    display: block;
    font-size: 1rem;
}

.athlete-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.athlete-status {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.athlete-status.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--secondary-color);
}

.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.dash-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 8px;
    border-radius: 12px;
}

.dash-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.dash-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dashboard-progress {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

.dash-btn {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.dash-btn:hover {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
}

.dash-btn i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* ========== AI SECTION ========== */
.ai-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    overflow: hidden;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ai-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.ai-features {
    margin-bottom: 30px;
}

.ai-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.ai-features i {
    color: var(--accent-color);
}

/* Chat Interface */
.chat-interface {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.chat-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.chat-header-bar strong {
    display: block;
    font-size: 0.95rem;
}

.online-dot {
    font-size: 0.75rem;
    color: var(--secondary-color);
}

.online-dot::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    margin-right: 5px;
}

.chat-interface .message {
    margin: 0;
    padding: 12px 25px;
    display: flex;
    gap: 12px;
}

.chat-interface .message.user {
    flex-direction: row-reverse;
    padding: 12px 25px;
}

.message p {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 15px;
    border-bottom-left-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 85%;
}

.message.user p {
    background: var(--primary-color);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 4px;
}

.ai-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.input-area {
    margin: 15px 20px 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 18px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-area i {
    color: var(--primary-color);
    cursor: pointer;
}

/* ========== MORE FEATURES SECTION ========== */
.more-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.more-card {
    background: var(--card-bg);
    padding: 30px 25px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.more-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.more-icon {
    width: 55px;
    height: 55px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.more-card:hover .more-icon {
    background: var(--gradient-main);
    color: white;
}

.more-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.more-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    text-align: center;
    padding: 40px 25px;
    max-width: 240px;
    position: relative;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 auto 15px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.step-connector {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.5;
    padding: 0 5px;
}

/* ========== WHY IMMENSE SECTION ========== */
.why-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-header .comp-feature,
.comparison-header .comp-col {
    padding: 18px 20px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-feature {
    padding: 15px 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.comp-col {
    padding: 15px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comp-col.highlight {
    background: rgba(16, 185, 129, 0.08);
}

.comparison-header .comp-col.highlight {
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary-color);
}

.comp-col i.green {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.comp-col i.red {
    color: #ef4444;
    font-size: 1.1rem;
}

.comp-col i.yellow {
    color: #f59e0b;
    font-size: 1.1rem;
}

/* ========== PRE-REGISTER SECTION ========== */
.preregister-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    position: relative;
}

.preregister-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preregister-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.preregister-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Pre-register Form */
.preregister-form-wrapper {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.preregister-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.preregister-form .btn {
    margin-top: 5px;
    padding: 16px;
    font-size: 1.05rem;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 30px 0;
}

.form-success i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #020617;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo img {
    height: 42px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .cta-group {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-arrow-left {
        left: -20px;
    }

    .slider-arrow-right {
        right: -20px;
    }

    .community-content,
    .coaching-content,
    .ai-content,
    .preregister-content {
        grid-template-columns: 1fr;
    }

    .social-feed-mockup,
    .coach-dashboard-mockup {
        max-width: 400px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

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

    .steps-grid {
        flex-direction: column;
        gap: 10px;
    }

    .step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .ai-text h2 {
        font-size: 2.2rem;
    }

    .preregister-text h2 {
        font-size: 2.2rem;
    }

    .feature-grid-3 {
        grid-template-columns: 1fr;
    }

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.8fr 0.8fr 0.8fr 0.8fr;
        font-size: 0.8rem;
    }

    .comp-feature {
        font-size: 0.8rem;
        padding: 12px 10px;
    }

    .comp-col {
        padding: 12px 5px;
    }

    .preregister-form-wrapper {
        padding: 25px;
    }

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

    .tracking-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

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

    .comparison-header .comp-col:not(.highlight),
    .comparison-row .comp-col:not(.highlight) {
        display: none;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        left: auto;
        right: auto;
    }

    .slider-arrow-left {
        left: 8px;
    }

    .slider-arrow-right {
        right: 8px;
    }
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ========== LEGAL (Gizlilik vb.) ========== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 60vh;
    background: var(--darker-bg);
}

.legal-container {
    max-width: 720px;
}

.legal-header {
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.legal-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-meta a {
    color: var(--secondary-color);
}

.legal-meta a:hover {
    text-decoration: underline;
}

.legal-intro {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.legal-play-hint {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.legal-play-hint i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.legal-play-hint a {
    color: var(--secondary-color);
    word-break: break-all;
}

.legal-play-hint a:hover {
    text-decoration: underline;
}

.legal-section {
    margin-bottom: 2.25rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.legal-section p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: disc;
    padding-left: 1.35rem;
    margin: 0.75rem 0 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.legal-list li {
    margin-bottom: 0.65rem;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--secondary-color);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-footer {
    padding: 40px 0 50px;
}

.legal-footer .footer-bottom a {
    color: var(--text-muted);
}

.legal-footer .footer-bottom a:hover {
    color: var(--primary-color);
}

.legal-ordered {
    margin: 0.75rem 0 0;
    padding-left: 1.35rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.legal-ordered li {
    margin-bottom: 0.65rem;
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-group-checkbox {
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.account-deletion-form-wrap {
    margin-top: 1.25rem;
}

.account-deletion-mailto {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.account-deletion-mailto a {
    color: var(--secondary-color);
}

.account-deletion-mailto a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-page {
        padding: 120px 0 60px;
    }

    /* Tek sayfalık yasal şablon: menüyü her zaman göster */
    .legal-page .nav-menu {
        position: static !important;
        transform: none !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        flex-direction: row !important;
        width: auto !important;
    }
}
