/* Original Theme CSS - Dinamik değişkenler original.php'de tanımlanıyor */
        :root {
            --primary-color: #fff;
            --text-primary: #fff;
            --text-secondary: #a0a0a0;
            --bg-primary: #1a1a1a;
            --bg-secondary: #2a2a2a;
            --border-color: #404040;
            --shadow: 0 4px 20px rgba(0,0,0,0.3);
            --radius: 12px;
        }

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

        body {
            font-family: var(--font-family);
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Background Styles */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .background-blur {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: blur(15px) brightness(0.7);
            transform: scale(1.1);
        }
        
        /* Cover image background için özel ayarlar */
        .background-blur.has-image {
            filter: blur(10px) brightness(0.6);
            transform: scale(1.2);
        }

        .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.7);
        }
        
        .background-overlay.has-cover {
            background: rgba(10, 10, 10, 0.5);
        }

        /* Main Container */
        .biolink-container {
            position: relative;
            z-index: 1;
            max-width: 480px;
            margin: 0 auto;
            padding: 2rem 1rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Profile Section */
        .profile-section {
            text-align: center;
            margin-bottom: 0px;
            background: #000;
        }

        .profile-avatar-container {
            position: relative;
            width: 100%;
            max-width: 450px;
            height: 0;
            padding-bottom: 100%; /* 1:1 aspect ratio */
            margin: 0 auto;
        }

        .profile-avatar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0px;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0px;
        }

        .profile-avatar .placeholder {
            font-size: 3rem;
            color: var(--text-secondary);
        }

        .profile-title {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            margin-top: 10px;
        }

        .profile-bio {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .profile-username {
            font-size: 0.9rem;
            color: var(--text-secondary);
           
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .profile-header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

.verified-badge-biolink {
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(29, 161, 242, 0.3));
}

.verified-badge-biolink:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(29, 161, 242, 0.5));
}

.profile-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Follow Badge Styles */
.follow-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 48px;
    height: 32px;
    padding: 6px 12px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: 2px solid white;
    white-space: nowrap;
}

.follow-badge .follow-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.follow-badge.not-following {
    background: var(--biolink-primary);
    color: white;
}

.follow-badge.not-following:hover {
    background: var(--biolink-secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.follow-badge.following {
    background: #10B981;
    color: white;
}

.follow-badge.following:hover {
    background: #EF4444;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

/* Share Dropdown Styles */
.share-dropdown {
    position: absolute;
    top: -8px;
    right: 85px;
    z-index: 11;
}

.share-badge {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(27, 30, 37, .4);
    border-radius: 50%;
    height: 32px;
    margin-left: 10px;
    margin-top: 30px;
    width: 32px;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.share-badge:hover {
    background-color: rgba(27, 30, 37, .6);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(27, 30, 37, 0.4);
}

.share-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

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

.share-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: transparent;
}

.share-option:hover {
    background: #F3F4F6;
    color: #111827;
    text-decoration: none;
}

.share-option i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    color: inherit;
}

/* Links Section */
.links-container {
    flex: 1;

}

/* Category Headers */
.category-header {
    margin: 30px 0 15px 0;
    padding: 0;
}

.category-header:first-child {
    margin-top: 15px;
}

.category-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0 5px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
}

.biolink-item {
    display: block;
    width: 100%;
    background: #00000082;
    padding: 10px 15px;
    margin-bottom: 1px;
    text-decoration: none;
    color: var(--biolink-text);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    border-radius:5px;
}



.biolink-item .link-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.biolink-item .link-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.biolink-item .link-icon img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.biolink-item .link-info {
    flex: 1;
    color: rgb(255 255 255) !important;
}

.biolink-item .link-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.biolink-item .link-subtitle {
    font-size: 0.875rem;
    color: #a0a0a0;
}

.biolink-item .link-arrow {
    margin-left: 1rem;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.biolink-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Category Header Styles */
.category-header {
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;

}

.category-header:first-child {
    margin-top: 30;
 
}

.category-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin: 0;
    padding-left: 0.5rem;
}

/* YouTube Thumbnail Styles */
.youtube-thumbnail-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.youtube-play-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.youtube-play-badge i {
    color: white;
    font-size: 8px;
    margin-left: 1px;
}

/* Special Buttons Styles */
.special-buttons {
    margin: 2rem 0;
}

.special-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.special-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.special-button-icon {
    width: 40px;
    height: 40px;
    background: var(--biolink-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
}

.special-button-content {
    flex: 1;
}

.special-button-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--biolink-text);
    margin-bottom: 0.25rem;
}

.special-button-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.special-button-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}



/* Footer Styles */
.biolink-footer {
    margin-top: 1rem;
    text-align: center;
    padding: 11px 0;
 
}

.powered-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.powered-by:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.powered-by .powered-text {
    color: #808080;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}



/* YouTube Video Player */
.youtube-container {
    margin: 2rem 0;
}

.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: #2a2a2a;
}

        .youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

        /* Special Buttons Section */
        .special-buttons {
            margin: 1rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .special-button {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border: 1px solid #333;
            border-radius: 15px;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .special-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-color: var(--biolink-primary);
        }

        .special-button-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .poll-button .special-button-icon {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
        }

        .events-button .special-button-icon {
            background: linear-gradient(135deg, #4834d4, #686de0);
            color: white;
        }

        .special-button-content {
            flex: 1;
        }

        .special-button-title {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }

        .special-button-subtitle {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .special-button-arrow {
            color: var(--text-secondary);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .special-button:hover .special-button-arrow {
            transform: translateX(5px);
        }

        /* YouTube Container */
        .youtube-container {
            margin: 2rem 0;
        }

        .youtube-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            background: #000;
        }

        .youtube-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            border: none;
        }

        /* Footer */
        .biolink-footer {
            margin-top: 10px;
            text-align: center;
            padding: 1rem 0;
        }

        .powered-by {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            padding: 1rem;
            transition: all 0.3s ease;
            border-radius: 12px;
        }

        .powered-by:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }
        
        .powered-by .powered-text {
            color: #808080;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .powered-by .brand {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }

        /* Thank You Modal Styles */
        .thank-you-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
            animation: thankYouPulse 0.6s ease-out;
            position: relative;
            overflow: hidden;
        }

        .thank-you-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: thankYouShine 2s ease-in-out;
        }

        .thank-you-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: thankYouBounce 0.8s ease-out;
            color: #4ade80;
        }

        .thank-you-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            animation: thankYouSlideUp 0.6s ease-out 0.2s both;
        }

        .thank-you-message {
            font-size: 1rem;
            margin: 0;
            opacity: 0.9;
            animation: thankYouSlideUp 0.6s ease-out 0.4s both;
        }

        @keyframes thankYouPulse {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes thankYouBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes thankYouSlideUp {
            0% {
                transform: translateY(20px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes thankYouShine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Event Modal Styles - Modern & Compact */
        .event-card-modal {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            transition: all 0.2s ease;
            margin-bottom: 1rem;
        }

        .event-card-modal:hover {
            border-color: #6c757d;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .event-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.25rem;
            line-height: 1.3;
        }

        .event-date-badge {
            background: #ffee7f;
            color: white;
            font-weight: 500;
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            white-space: nowrap;
        }

        .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 0.5rem 0;
            font-size: 0.875rem;
            color: #6c757d;
        }

        .event-meta-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .event-meta-item i {
            width: 16px;
            text-align: center;
            color: #495057;
        }

        .event-description {
            font-size: 0.875rem;
            color: #6c757d;
            line-height: 1.4;
            margin-top: 0.5rem;
        }

        .event-ticket-link {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            color: #0d6efd;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .event-ticket-link:hover {
            color: #0b5ed7;
            text-decoration: underline;
        }

        /* Special Buttons */
        .special-buttons {
            margin: 2px;
        }

        .special-button {
            display: flex;
            align-items: center;
            background: #00000057;
            border: none;
            border-radius: 5px;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 1px;
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #5a5bc4 100%);
        }

        /* Profile Section */
        .profile-section {
            text-align: center;
            margin-bottom: 0px;
            background: #00000080;
        }

        /* Mobile responsive */
@media (max-width: 768px) {
    .profile-avatar-container {
        max-width: 100%;
        margin: 0 auto;
    }
    .biolink-container{max-width:380px}
    
    .biolink-container.original-theme {
        padding: 1rem 0.5rem;
    }
    
    .follow-badge {
        min-width: 40px;
        height: 28px;
        padding: 4px 10px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .follow-badge .follow-text {
        font-size: 0.65rem;
    }
    
    .share-dropdown {
        right: 65px;
    }
    
    .share-badge {
        width: 28px;
        height: 28px;
        margin-left: 8px;
        font-size: 0.8rem;
    }
    
    .share-menu {
        min-width: 180px;
        right: -20px;
    }

    .special-buttons {
        margin: 1.5rem 0;
    }
    
    .special-button {
        padding: 0.8rem;
    }
    
    .special-button-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    .special-button-title {
        font-size: 1rem;
    }
    
    .special-button-subtitle {
        font-size: 0.8rem;
    }
    
    .youtube-container {
        margin: 1.5rem 0;
    }
    
    .youtube-wrapper {
        padding-bottom: 56.25%; /* 16:9 oranını koru */
    }

    .profile-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-avatar-container {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .biolink-container.original-theme {
        padding: 0.5rem 0.25rem;
    }
    
    .follow-badge {
        min-width: 36px;
        height: 24px;
        padding: 3px 8px;
        font-size: 0.6rem;
        top: -4px;
        right: -4px;
    }
    
    .follow-badge .follow-text {
        font-size: 0.6rem;
    }

    .profile-title {
        font-size: 1.2rem;
    }
}
