<style>
/* CSS Variables for Color Themes */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --success: #48bb78;
    --danger: #f56565;
    --warning: #ed8936;
    --info: #4299e1;
}

/* Light Theme */
.color-theme-light {
    --bg-primary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Dark Theme */
.color-theme-dark {
    --bg-primary: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    --bg-secondary: transparent;
    --text-primary: #f7fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
}

/* Red Theme */
.color-theme-red {
    --bg-primary: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(220, 53, 69, 0.2);
    --shadow: rgba(220, 53, 69, 0.1);
    --shadow-hover: rgba(220, 53, 69, 0.2);
}

/* Blue Theme */
.color-theme-blue {
    --bg-primary: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(0, 123, 255, 0.2);
    --shadow: rgba(0, 123, 255, 0.1);
    --shadow-hover: rgba(0, 123, 255, 0.2);
}

/* Green Theme */
.color-theme-green {
    --bg-primary: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(40, 167, 69, 0.2);
    --shadow: rgba(40, 167, 69, 0.1);
    --shadow-hover: rgba(40, 167, 69, 0.2);
}

/* Yellow Theme */
.color-theme-yellow {
    --bg-primary: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 193, 7, 0.2);
    --shadow: rgba(255, 193, 7, 0.1);
    --shadow-hover: rgba(255, 193, 7, 0.2);
}

/* Pink Theme */
.color-theme-pink {
    --bg-primary: linear-gradient(135deg, #e83e8c 0%, #d91a72 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(232, 62, 140, 0.2);
    --shadow: rgba(232, 62, 140, 0.1);
    --shadow-hover: rgba(232, 62, 140, 0.2);
}

/* Purple Theme */
.color-theme-purple {
    --bg-primary: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(111, 66, 193, 0.2);
    --shadow: rgba(111, 66, 193, 0.1);
    --shadow-hover: rgba(111, 66, 193, 0.2);
}

/* Orange Theme */
.color-theme-orange {
    --bg-primary: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(253, 126, 20, 0.2);
    --shadow: rgba(253, 126, 20, 0.1);
    --shadow-hover: rgba(253, 126, 20, 0.2);
}

/* Teal Theme */
.color-theme-teal {
    --bg-primary: linear-gradient(135deg, #20c997 0%, #1aa179 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(32, 201, 151, 0.2);
    --shadow: rgba(32, 201, 151, 0.1);
    --shadow-hover: rgba(32, 201, 151, 0.2);
}

/* Indigo Theme */
.color-theme-indigo {
    --bg-primary: linear-gradient(135deg, #6610f2 0%, #520dc2 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(102, 16, 242, 0.2);
    --shadow: rgba(102, 16, 242, 0.1);
    --shadow-hover: rgba(102, 16, 242, 0.2);
}

/* Cyan Theme */
.color-theme-cyan {
    --bg-primary: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(23, 162, 184, 0.2);
    --shadow: rgba(23, 162, 184, 0.1);
    --shadow-hover: rgba(23, 162, 184, 0.2);
}

/* Lime Theme */
.color-theme-lime {
    --bg-primary: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(132, 204, 22, 0.2);
    --shadow: rgba(132, 204, 22, 0.1);
    --shadow-hover: rgba(132, 204, 22, 0.2);
}

/* Amber Theme */
.color-theme-amber {
    --bg-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(245, 158, 11, 0.2);
    --shadow: rgba(245, 158, 11, 0.1);
    --shadow-hover: rgba(245, 158, 11, 0.2);
}

/* Emerald Theme */
.color-theme-emerald {
    --bg-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(16, 185, 129, 0.2);
    --shadow: rgba(16, 185, 129, 0.1);
    --shadow-hover: rgba(16, 185, 129, 0.2);
}

/* Sky Theme */
.color-theme-sky {
    --bg-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(14, 165, 233, 0.2);
    --shadow: rgba(14, 165, 233, 0.1);
    --shadow-hover: rgba(14, 165, 233, 0.2);
}

/* Violet Theme */
.color-theme-violet {
    --bg-primary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(139, 92, 246, 0.2);
    --shadow: rgba(139, 92, 246, 0.1);
    --shadow-hover: rgba(139, 92, 246, 0.2);
}

/* Rose Theme */
.color-theme-rose {
    --bg-primary: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(244, 63, 94, 0.2);
    --shadow: rgba(244, 63, 94, 0.1);
    --shadow-hover: rgba(244, 63, 94, 0.2);
}

/* Fuchsia Theme */
.color-theme-fuchsia {
    --bg-primary: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
    --bg-secondary: transparent;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --border-color: rgba(217, 70, 239, 0.2);
    --shadow: rgba(217, 70, 239, 0.1);
    --shadow-hover: rgba(217, 70, 239, 0.2);
}

/* Slate Theme */
.color-theme-slate {
    --bg-primary: linear-gradient(135deg, #64748b 0%, #475569 100%);
    --bg-secondary: transparent;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(100, 116, 139, 0.2);
    --shadow: rgba(100, 116, 139, 0.1);
    --shadow-hover: rgba(100, 116, 139, 0.2);
}

/* Gray Theme */
.color-theme-gray {
    --bg-primary: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    --bg-secondary: transparent;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: rgba(107, 114, 128, 0.2);
    --shadow: rgba(107, 114, 128, 0.1);
    --shadow-hover: rgba(107, 114, 128, 0.2);
}

/* Stone Theme */
.color-theme-stone {
    --bg-primary: linear-gradient(135deg, #78716c 0%, #57534e 100%);
    --bg-secondary: transparent;
    --text-primary: #fafaf9;
    --text-secondary: #d6d3d1;
    --text-muted: #a8a29e;
    --border-color: rgba(120, 113, 108, 0.2);
    --shadow: rgba(120, 113, 108, 0.1);
    --shadow-hover: rgba(120, 113, 108, 0.2);
}

/* Neutral Theme */
.color-theme-neutral {
    --bg-primary: linear-gradient(135deg, #737373 0%, #525252 100%);
    --bg-secondary: transparent;
    --text-primary: #fafafa;
    --text-secondary: #d4d4d4;
    --text-muted: #a3a3a3;
    --border-color: rgba(115, 115, 115, 0.2);
    --shadow: rgba(115, 115, 115, 0.1);
    --shadow-hover: rgba(115, 115, 115, 0.2);
}

/* Zinc Theme */
.color-theme-zinc {
    --bg-primary: linear-gradient(135deg, #71717a 0%, #52525b 100%);
    --bg-secondary: transparent;
    --text-primary: #fafafa;
    --text-secondary: #d4d4d8;
    --text-muted: #a1a1aa;
    --border-color: rgba(113, 113, 122, 0.2);
    --shadow: rgba(113, 113, 122, 0.1);
    --shadow-hover: rgba(113, 113, 122, 0.2);
}

/* Base Styles */
body { 
    font-family: "Poppins", sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    color: var(--text-primary);
}

.profile-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 80px 10px; /* Bottom padding for fixed footer */
    box-sizing: border-box;
    overflow: hidden;
}

/* Profile Header */
.profile-header {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.profile-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    transition: transform 0.3s ease;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.profile-username {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.profile-bio {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 15px;
    font-size: 0.85rem;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Edit Button - Profil Resminin Sağ Üst Köşesinde */
.edit-btn-avatar {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 1001;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.edit-btn-avatar:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Cover Images Slider */
   .cover-slider {
       margin-bottom: 15px;
       border-radius: 15px; /* اینجا خطا بود */
       overflow: hidden;
       max-width: 500px;
       width: 100%;
       position: relative;
       flex-shrink: 0;
   }
   
   

.cover-slider img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Custom Carousel Controls */
.custom-carousel-control {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.custom-carousel-control:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.custom-carousel-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: brightness(0) invert(1);
}

.carousel-control-prev.custom-carousel-control {
    left: 10px;
}

.carousel-control-next.custom-carousel-control {
    right: 10px;
}

/* Links Container */
.links-container {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 15px;
    max-width: 500px;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.links-container::-webkit-scrollbar {
    width: 4px;
}

.links-container::-webkit-scrollbar-track {
    background: transparent;
}

.links-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.links-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Base Link Styles */
.link-item {
    text-decoration: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    color: white;
    margin-bottom: 8px;
}

.link-item:hover {
    text-decoration: none;
    color: white;
}

/* Font Awesome Base Styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* Force Font Awesome to work */
.fas, .far, .fab, .fal, .fad, .fass {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Link Icon Specific */
.link-icon {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    filter: contrast(1.1) brightness(1.05);
}

/* Brand icons specific weight */
.link-icon.fab {
    font-weight: 400 !important;
}

/* Icon Container Styles */
.link-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 1.2em;
    min-height: 1.2em;
}

/* Slide-down tema için özel icon wrapper */
.link-theme-slide-down .link-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    margin: 0;
}

.link-icon-wrapper i {
    display: inline-block !important;
    font-style: normal !important;
    line-height: 1 !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Ensure icons are visible in all themes */
.link-theme-grid .link-icon,
.link-theme-list .link-icon,
.link-theme-slide-down .link-icon,
.link-theme-fixed-list .link-icon {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
}

/* Icon Base Styles */
i[class*="fa-"] {
    min-width: 1.2em;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Force icon visibility */
.link-item i {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
    vertical-align: baseline !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* TEMA 1: Kare Küpler (Grid) - 4'lü Sıralama */
.link-theme-grid .links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.link-theme-grid .link-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 18px;
    padding: 15px 10px;
    text-align: center;
    min-height: 85px;
    background: var(--link-bg, #667eea);
    color: var(--link-text, #ffffff);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.link-theme-grid .link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-theme-grid .link-item:hover::before {
    opacity: 1;
}

.link-theme-grid .link-item:hover {
    transform: translateY(-3px) scale(1.02);
}

.link-theme-grid .link-icon {
    font-size: 2.2rem !important;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900 !important;
    line-height: 1 !important;
    width: auto;
    height: auto;
}

.link-theme-grid .link-item:hover .link-icon {
    transform: scale(1.1);
}

.link-theme-grid .link-text {
    font-weight: 600;
    font-size: 0.75rem;
    word-wrap: break-word;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.link-theme-grid .link-title {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
}

.link-theme-grid .link-description {
    font-size: 0.65rem;
    opacity: 0.9;
    margin-top: 2px;
    line-height: 1.1;
    font-weight: 400;
}
















/* TEMA 2: Alt Alta Listeleme (List) */
.link-theme-list .links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.link-theme-list .link-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: left;
    min-height: 60px;
    width: 100%;
    font-weight: 700;
    background: var(--link-bg, #667eea);
    color: var(--link-text, #ffffff);
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.link-theme-list .link-item:hover {
    transform: translateY(-2px) scale(1.01);
}

.link-theme-list .link-icon {
    font-size: 1.8rem !important;
    margin-right: 15px;
    width: 40px;
    height: auto;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.link-theme-list .link-text {
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
}

.link-theme-list .link-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.link-theme-list .link-description {
    font-size: 0.8rem;
    opacity: 0.95;
    margin-top: 2px;
    line-height: 1.2;
    font-weight: 500;
}

/* TEMA 3: Yukarıdan Aşağı Kaydırmalı (Slide Down) - Yuvarlak Butonlar */
.link-theme-slide-down .links-slide-down {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.link-theme-slide-down .link-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    text-decoration: none;
    animation: slideInFromTop 0.6s ease forwards;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-height: auto !important;
}

.link-theme-slide-down .link-item:hover {
    text-decoration: none;
    color: var(--text-primary);
    transform: translateY(-5px);
}

/* Animation delays */
.link-theme-slide-down .link-item:nth-child(1) { animation-delay: 0.1s; }
.link-theme-slide-down .link-item:nth-child(2) { animation-delay: 0.2s; }
.link-theme-slide-down .link-item:nth-child(3) { animation-delay: 0.3s; }
.link-theme-slide-down .link-item:nth-child(4) { animation-delay: 0.4s; }
.link-theme-slide-down .link-item:nth-child(5) { animation-delay: 0.5s; }
.link-theme-slide-down .link-item:nth-child(6) { animation-delay: 0.6s; }
.link-theme-slide-down .link-item:nth-child(7) { animation-delay: 0.7s; }
.link-theme-slide-down .link-item:nth-child(8) { animation-delay: 0.8s; }
.link-theme-slide-down .link-item:nth-child(9) { animation-delay: 0.9s; }
.link-theme-slide-down .link-item:nth-child(n+10) { animation-delay: 1s; }

.link-theme-slide-down .link-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--link-bg, #667eea);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-theme-slide-down .link-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.link-theme-slide-down .link-item:hover .link-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.link-theme-slide-down .link-item:hover .link-circle::before {
    opacity: 1;
}

.link-theme-slide-down .link-icon {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    width: auto;
    height: auto;
    text-align: center;
}

.link-theme-slide-down .link-item:hover .link-icon {
    transform: scale(1.1);
}

.link-theme-slide-down .link-text {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-primary);
    word-wrap: break-word;
    line-height: 1.1;
    text-align: center;
    max-width: 70px;
    transition: color 0.3s ease;
    margin-top: 0px;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* TEMA 4: Minimal Liste (Fixed List) */
.link-theme-fixed-list .links-fixed-list,
.link-theme-minimal .links-minimal {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.link-theme-fixed-list .link-item,
.link-theme-minimal .link-item {
    display: flex !important;
    align-items: center !important;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-align: left;
    background: transparent !important;
    color: #2c3e50 !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 500;
    min-height: 45px;
    margin: 1px 0;
    text-decoration: none;
}

.link-theme-fixed-list .link-item:last-child,
.link-theme-minimal .link-item:last-child {
    border-bottom: none;
}

.link-theme-fixed-list .link-item:hover,
.link-theme-minimal .link-item:hover {
    background: rgba(0,0,0,0.03) !important;
    transform: translateX(3px);
    padding-left: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.link-theme-fixed-list .link-icon,
.link-theme-minimal .link-icon {
    font-size: 1.1rem !important;
    margin-right: 15px;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    border-radius: 6px;
    background: rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.link-theme-fixed-list .link-text,
.link-theme-minimal .link-text {
    font-weight: 500;
    font-size: 0.8rem;
    color: #2c3e50;
    flex: 1;
    line-height: 1.3;
}

.link-theme-fixed-list .link-title,
.link-theme-minimal .link-title {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.8rem;
}

.link-theme-fixed-list .link-description,
.link-theme-minimal .link-description {
    font-size: 0.7rem;
    color: #7f8c8d;
    margin-top: 1px;
    line-height: 1.2;
    font-weight: 400;
}

/* Special Buttons */
.special-btn {
    border: 2px solid rgba(255,255,255,0.3);
    animation: pulse-subtle 2s infinite;
}

.special-btn:hover {
    transform: translateY(-2px) scale(1.01);
    animation: none;
}

/* Fixed Buttons - Sabit Butonlar */
.fixed-btn {
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.fixed-btn::before {
    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;
}

.fixed-btn:hover::before {
    left: 100%;
}

.fixed-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* QR Code Modal Styles */
.qr-container {
    padding: 15px;
}

.qr-code-display {
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.qr-actions {
    margin-top: 15px;
}

.qr-actions .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
}

/* VCF Special Styles */
.vcf-link {
    border: 2px solid rgba(255,255,255,0.3);
    background: linear-gradient(135deg, var(--link-bg), #1e3a8a) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        padding: 8px 8px 90px 8px; /* Increased bottom padding for mobile footer */
    }
    
    .profile-header {
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 15px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .profile-username {
        font-size: 0.8rem;
    }
    
    .profile-bio {
        font-size: 0.75rem;
        max-height: 45px;
    }
    
    .links-container {
        padding: 12px;
        border-radius: 15px;
    }
    
    .edit-btn-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
        top: -3px;
        right: -3px;
    }
    
    .cover-slider {
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .cover-slider img {
        height: 120px;
    }
    
    /* Grid Theme Mobile */
    .link-theme-grid .links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .link-theme-grid .link-item {
        padding: 12px 8px;
        min-height: 70px;
        border-radius: 15px;
    }
    
    .link-theme-grid .link-icon {
        font-size: 1.8rem !important;
        margin-bottom: 5px;
    }
    
    .link-theme-grid .link-text {
        font-size: 0.65rem;
    }
    
    /* List Theme Mobile */
    .link-theme-list .links-list {
        gap: 8px;
    }
    
    .link-theme-list .link-item {
        padding: 12px 15px;
        min-height: 50px;
        border-radius: 15px;
    }
    
    .link-theme-list .link-icon {
        font-size: 1.5rem !important;
        margin-right: 12px;
        width: 35px;
    }
    
    .link-theme-list .link-text {
        font-size: 0.8rem;
    }
    
    /* Slide Themes Mobile */
    .link-theme-slide-down .links-slide-down {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 8px 0;
    }
    
    .link-theme-slide-down .link-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 4px;
    }
    
    .link-theme-slide-down .link-icon {
        font-size: 1.5rem !important;
    }
    
    .link-theme-slide-down .link-text {
        font-size: 0.65rem;
        max-width: 60px;
    }
    
    /* Fixed List Mobile */
    .link-theme-fixed-list .links-fixed-list {
        padding: 12px 15px;
        border-radius: 10px;
    }
    
    .link-theme-fixed-list .link-item {
        padding: 10px 8px;
        min-height: 40px;
    }
    
    .link-theme-fixed-list .link-icon {
        font-size: 1rem !important;
        margin-right: 12px;
        width: 26px;
        height: 26px;
    }
    
    .link-theme-fixed-list .link-text {
        font-size: 0.75rem;
    }
}


















@media (max-width: 576px) {
    .profile-container {
        padding: 5px 5px 85px 5px; /* Increased bottom padding for small mobile footer */
    }
    
    .profile-header {
        padding: 12px;
        margin-bottom: 8px;
        border-radius: 12px;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    
    .profile-name {
        font-size: 1.1rem;
    }
    
    .profile-username {
        font-size: 0.75rem;
    }
    
    .profile-bio {
        font-size: 0.7rem;
        max-height: 35px;
    }
    
    .links-container {
        padding: 10px;
        border-radius: 12px;
    }
    
    /* Grid Theme Small Mobile */
    .link-theme-grid .links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .link-theme-grid .link-item {
        padding: 10px 6px;
        min-height: 60px;
        border-radius: 12px;
    }
    
    .link-theme-grid .link-icon {
        font-size: 1.4rem !important;
        margin-bottom: 4px;
    }
    
    .link-theme-grid .link-text {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    /* List Theme Small Mobile */
    .link-theme-list .link-item {
        padding: 10px 12px;
        min-height: 45px;
        border-radius: 12px;
    }
    
    .link-theme-list .link-icon {
        font-size: 1.3rem !important;
        margin-right: 10px;
        width: 30px;
    }
    
    .link-theme-list .link-text {
        font-size: 0.75rem;
    }
    
    /* Slide Themes Small Mobile */
    .link-theme-slide-down .links-slide-down {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 6px 0;
    }
    
    .link-theme-slide-down .link-circle {
        width: 55px;
        height: 55px;
        margin-bottom: 3px;
    }
    
    .link-theme-slide-down .link-icon {
        font-size: 1.3rem !important;
    }
    
    .link-theme-slide-down .link-text {
        font-size: 0.6rem;
        line-height: 1;
        max-width: 55px;
    }
    
    /* Fixed List Small Mobile */
    .link-theme-fixed-list .links-fixed-list {
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .link-theme-fixed-list .link-item {
        padding: 8px 6px;
        min-height: 35px;
    }
    
    .link-theme-fixed-list .link-icon {
        font-size: 0.9rem !important;
        margin-right: 10px;
        width: 24px;
        height: 24px;
    }
    
    .link-theme-fixed-list .link-text {
        font-size: 0.7rem;
    }
    
    .link-theme-fixed-list .link-title {
        font-size: 0.7rem;
    }
    
    .link-theme-fixed-list .link-description {
        font-size: 0.65rem;
    }
}

@media (max-height: 600px) {
    .profile-header {
        padding: 10px;
        margin-bottom: 6px;
    }
    
    .profile-avatar {
        width: 50px;
        height: 50px;
    }
    
    .profile-name {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .profile-username {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    
    .profile-bio {
        font-size: 0.65rem;
        max-height: 25px;
        margin-bottom: 8px;
    }
    
    .cover-slider {
        margin-bottom: 6px;
    }
    
    .cover-slider img {
        height: 80px;
    }
    
    .links-container {
        padding: 8px;
    }
    
    .link-theme-grid .link-item {
        min-height: 60px;
        padding: 8px 6px;
    }
    
    .link-theme-grid .link-icon {
        font-size: 1.1rem !important;
        margin-bottom: 3px;
    }
    
    .link-theme-grid .link-text {
        font-size: 0.6rem;
    }
    
    .link-theme-list .link-item {
        min-height: 35px;
        padding: 6px 10px;
    }
    
    .link-theme-list .link-icon {
        font-size: 1.1rem !important;
        width: 25px;
    }
    
    .link-theme-list .link-text {
        font-size: 0.7rem;
    }
    
    .link-theme-slide-down .link-circle {
        width: 45px;
        height: 45px;
    }
    
    .link-theme-slide-down .link-icon {
        font-size: 1.1rem !important;
    }
    
    .link-theme-slide-down .link-text {
        font-size: 0.55rem;
        max-width: 45px;
    }
}

/* Fixed Bottom Navigation */
.fixed-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 20px 10px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.bottom-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 10px 8px;
    border-radius: 15px;
    min-width: 60px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
}

.bottom-nav-item:hover {
    color: var(--text-primary);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.bottom-nav-item.active {
    color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
}

.bottom-nav-icon {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 50%;
}

/* Icon Colors - Specific colors for each type */
.bottom-nav-item[href^="tel:"] .bottom-nav-icon {
    color: #10b981;
}

.bottom-nav-item[data-bs-target="#faturaModal"] .bottom-nav-icon {
    color: #f59e0b;
}

.bottom-nav-item[href*="maps.google.com"] .bottom-nav-icon {
    color: #ef4444;
}

.bottom-nav-item[data-bs-target="#galleryModal"] .bottom-nav-icon {
    color: #8b5cf6;
}

.bottom-nav-item[onclick*="shareProfile"] .bottom-nav-icon {
    color: #3b82f6;
}

.bottom-nav-item:hover .bottom-nav-icon {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.bottom-nav-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.bottom-nav-item:hover .bottom-nav-text {
    color: var(--text-primary);
}

/* Dark theme adjustments */
.color-theme-dark .fixed-bottom-nav {
    background: rgba(45, 55, 72, 0.95);
}

.color-theme-dark .bottom-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.color-theme-dark .nav-separator {
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .fixed-bottom-nav {
        padding: 12px 15px 8px 15px;
    }
    
    .bottom-nav-container {
        gap: 8px;
    }
    
    .bottom-nav-item {
        padding: 8px 6px;
        min-width: 52px;
    }
    
    .bottom-nav-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .bottom-nav-text {
        font-size: 0.7rem;
        font-weight: 600;
    }
    
    .nav-separator {
        margin: 0 3px;
        height: 28px;
    }
}

@media (max-width: 380px) {
    .bottom-nav-container {
        gap: 6px;
    }
    
    .bottom-nav-item {
        padding: 6px 4px;
        min-width: 46px;
    }
    
    .bottom-nav-icon {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .bottom-nav-text {
        font-size: 0.65rem;
        font-weight: 600;
    }
    
    .nav-separator {
        margin: 0 2px;
        height: 25px;
    }
}

/* Vertical Separators */
.nav-separator {
    display: none; /* Hide nav separators by default */
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0 6px;
    flex-shrink: 0;
}

.nav-separator:last-child {
    display: none;
}



</style>
