/**
 * Üyelik Sistemi - CSS Stilleri
 *
 * @package News_Theme
 */

/* Üyelik sayfalarında breadcrumb'ı gizle */
.nt-membership-container ~ * .page-header-section,
body:has(.nt-membership-container) .page-header-section {
    display: none !important;
}

/* ============================================
   Genel Container ve Form Stilleri
   ============================================ */

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nt-btn,
    .dropdown-link,
    .nt-quick-action-card,
    .nt-help-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nt-modal-close,
    .nt-password-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

.nt-membership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nt-membership-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 30px 30px 30px;
}

.nt-membership-header {
    text-align: center;
    margin-bottom: 20px;
}

.nt-membership-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.nt-membership-header p {
    color: #666;
    margin: 0;
}

.nt-membership-header a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.nt-membership-header a:hover {
    text-decoration: underline;
}

/* ============================================
   Form Elemanları
   ============================================ */

.nt-membership-form {
    margin: 0;
}

.nt-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.nt-form-group {
    margin-bottom: 20px;
}

.nt-form-half {
    flex: 1;
}

.nt-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.nt-form-group label i {
    margin-right: 6px;
    color: #e74c3c;
}

.nt-form-group input[type="text"],
.nt-form-group input[type="email"],
.nt-form-group input[type="password"],
.nt-form-group input[type="url"],
.nt-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nt-form-group input:focus,
.nt-form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.nt-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Password Wrapper */
.nt-password-wrapper {
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

.nt-password-wrapper input {
    padding-right: 45px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nt-password-toggle {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: #666 !important;
    cursor: pointer !important;
    padding: 8px !important;
    font-size: 16px !important;
    transition: color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    left: auto !important;
    z-index: 10 !important;
}

.nt-password-toggle:hover {
    color: #e74c3c !important;
}

.nt-password-toggle i {
    line-height: 1 !important;
    display: block !important;
}

/* Password Strength */
.nt-password-strength {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.nt-password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nt-password-strength-bar.weak {
    width: 33%;
    background: #e74c3c;
}

.nt-password-strength-bar.medium {
    width: 66%;
    background: #f39c12;
}

.nt-password-strength-bar.strong {
    width: 100%;
    background: #27ae60;
}

/* Form Hints and Errors */
.nt-form-hint {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 6px;
}

.nt-form-error {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
}

.nt-form-error.active {
    display: block;
}

.nt-form-success {
    display: none;
    color: #27ae60;
    font-size: 13px;
    margin-top: 6px;
}

.nt-form-success.active {
    display: block;
}

/* Checkbox Group */
.nt-checkbox-group {
    margin-bottom: 25px;
    margin-top: 0;
}

.nt-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    user-select: none;
    gap: 10px;
}

.nt-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.nt-checkbox-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

.nt-checkbox-label input[type="checkbox"]:checked + .nt-checkbox-custom {
    background: #e74c3c;
    border-color: #e74c3c;
}

.nt-checkbox-label input[type="checkbox"]:checked + .nt-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.nt-checkbox-label a {
    color: #e74c3c;
    text-decoration: none;
}

.nt-checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Actions */
.nt-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.nt-form-actions .nt-checkbox-group {
    margin-bottom: 0;
}

.nt-forgot-password a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
}

.nt-forgot-password a:hover {
    text-decoration: underline;
}

/* ============================================
   Buttons
   ============================================ */

.nt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
    overflow: visible;
}

.nt-btn-primary {
    background: #e74c3c;
    color: #fff !important;
    text-decoration: none;
}

.nt-btn-primary:hover {
    background: #c0392b;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.nt-btn-secondary {
    background: #95a5a6;
    color: #fff;
}

.nt-btn-secondary:hover {
    background: #7f8c8d;
}

.nt-btn-danger {
    background: #e74c3c;
    color: #fff;
}

.nt-btn-danger:hover {
    background: #c0392b;
}

.nt-btn-outline {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.nt-btn-outline:hover {
    background: #e74c3c;
    color: #fff;
}

.nt-btn-block {
    width: 100%;
}

.nt-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.nt-btn-loader {
    display: none;
}

.nt-btn.loading .nt-btn-text {
    display: none;
}

.nt-btn.loading .nt-btn-loader {
    display: inline-block;
}

/* ============================================
   Messages
   ============================================ */

.nt-form-messages {
    margin-bottom: 20px;
}

.nt-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nt-message:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
}

.nt-message.nt-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.nt-message.nt-success:before {
    content: '\f058';
}

.nt-message.nt-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.nt-message.nt-error:before {
    content: '\f057';
}

.nt-message.nt-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.nt-message.nt-info:before {
    content: '\f05a';
}

/* ============================================
   Form Footer & Divider
   ============================================ */

.nt-form-footer {
    text-align: center;
    margin-top: 25px;
}

.nt-form-footer p {
    color: #666;
    margin: 0;
}

.nt-form-footer a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.nt-form-footer a:hover {
    text-decoration: underline;
}

.nt-form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.nt-form-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.nt-form-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
}

/* ============================================
   Profil Sayfası
   ============================================ */

.nt-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nt-profile-header {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nt-profile-cover {
    height: 200px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    position: relative;
}

.nt-profile-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.nt-profile-info {
    padding: 0 30px 30px;
    position: relative;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.nt-profile-avatar-wrapper {
    margin-top: -80px;
    flex-shrink: 0;
}

.nt-profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.nt-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-avatar-upload-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    border: 3px solid #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nt-avatar-upload-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.nt-profile-details {
    flex: 1;
}

.nt-profile-name {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1a1a1a;
    word-break: break-word;
}

.nt-profile-username {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 16px;
    word-break: break-word;
}

.nt-profile-role,
.nt-profile-joined {
    color: #888;
    font-size: 14px;
    margin: 5px 0;
}

.nt-profile-role i,
.nt-profile-joined i {
    margin-right: 6px;
    color: #e74c3c;
}

.nt-profile-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: stretch;
    align-self: flex-end;
    margin-top: 25px;
    flex-wrap: wrap;
}

.nt-profile-actions .nt-btn {
    white-space: nowrap;
    min-width: auto;
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nt-profile-actions .nt-btn i {
    margin-right: 6px;
}

.nt-profile-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.nt-profile-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Profile Stats */
.nt-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.nt-stat-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.nt-stat-item:hover {
    transform: translateY(-5px);
}

.nt-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.nt-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.nt-stat-label {
    color: #666;
    font-size: 14px;
}

/* Profile Sections */
.nt-profile-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nt-section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nt-section-title i {
    color: #e74c3c;
}

.nt-section-content {
    color: #555;
    line-height: 1.7;
}

.nt-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.nt-empty-state i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.nt-empty-state h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
}

.nt-empty-state p {
    color: #666;
    margin: 0 0 20px 0;
}

.nt-empty-state .nt-btn-primary {
    background: #e74c3c;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.nt-empty-state .nt-btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

/* Activities List */
.nt-activities-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nt-activity-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nt-activity-item:hover {
    background: #e9ecef;
}

.nt-activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nt-activity-content {
    flex: 1;
}

.nt-activity-text {
    margin: 0 0 5px 0;
    color: #333;
}

.nt-activity-text a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.nt-activity-text a:hover {
    text-decoration: underline;
}

.nt-activity-time {
    font-size: 13px;
    color: #999;
}

/* Sidebar Widgets */
.nt-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nt-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nt-widget-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nt-widget-title i {
    color: #e74c3c;
}

.nt-widget-content {
    padding: 25px;
}

.nt-info-item {
    margin-bottom: 15px;
}

.nt-info-item:last-child {
    margin-bottom: 0;
}

.nt-info-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.nt-info-label i {
    margin-right: 5px;
}

.nt-info-value {
    display: block;
    font-weight: 600;
    color: #333;
}

/* ============================================
   Profile Tabs Navigation
   ============================================ */

.nt-profile-tabs {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.nt-tabs-nav {
    display: flex !important;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nt-tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.nt-tab-btn:hover {
    background: #fff;
    color: #e74c3c;
}

.nt-tab-btn.active {
    background: #fff;
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

.nt-tab-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nt-tab-btn:hover i,
.nt-tab-btn.active i {
    transform: scale(1.1);
}

.nt-tabs-content {
    padding: 0;
}

.nt-tab-pane {
    display: none;
    padding: 30px;
    animation: fadeIn 0.3s ease;
}

.nt-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Settings Form Styles */
.nt-settings-form {
    max-width: 800px;
}

.nt-settings-form .nt-form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* Stats Grid */
.nt-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.nt-stats-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.nt-stats-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.nt-stats-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.nt-stats-value {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

/* Activity Styles */
.nt-activity-meta {
    margin-top: 5px;
}

.nt-activity-excerpt {
    margin-top: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

.nt-activity-excerpt p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.nt-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.nt-link:hover {
    text-decoration: underline;
}

/* Security Status */
.nt-security-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* ============================================
   Dashboard
   ============================================ */

.nt-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.nt-dashboard-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nt-dashboard-welcome h1 {
    font-size: 32px;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    color: #ffffff !important;
}

.nt-dashboard-welcome p {
    margin: 0;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    color: #ffffff !important;
}

.nt-dashboard-user {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.nt-dashboard-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nt-dashboard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.nt-dashboard-user-info strong {
    display: block;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
    word-break: break-word;
}

.nt-dashboard-user-info span {
    font-size: 14px;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
    word-break: break-word;
}

/* Dashboard Stats */
.nt-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.nt-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nt-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nt-stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.nt-stat-blue {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.nt-stat-red {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.nt-stat-yellow {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.nt-stat-green {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.nt-stat-card-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.nt-stat-card-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.nt-stat-card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.nt-stat-card-footer a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nt-stat-card-footer a:hover {
    gap: 8px;
}

.nt-stat-card-footer span {
    color: #999;
    font-size: 13px;
}

/* Dashboard Content */
.nt-dashboard-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.nt-dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nt-dashboard-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.nt-section-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.2;
}

.nt-section-header h2 i {
    color: #e74c3c;
    display: inline-block;
    line-height: 1.2;
    margin-top: 2px;
}

/* Quick Actions */
.nt-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.nt-quick-action-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nt-quick-action-card:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.nt-quick-action-icon {
    width: 50px;
    height: 50px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.nt-quick-action-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nt-quick-action-content h4 {
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
}

.nt-quick-action-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Activities Timeline */
.nt-activities-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nt-timeline-item {
    display: flex;
    gap: 15px;
}

.nt-timeline-marker {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nt-timeline-content {
    flex: 1;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.nt-timeline-item:last-child .nt-timeline-content {
    border-bottom: none;
    padding-bottom: 0;
}

.nt-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.nt-timeline-header h4 {
    margin: 0;
    font-size: 16px;
}

.nt-timeline-header h4 a {
    color: #e74c3c;
    text-decoration: none;
}

.nt-timeline-header h4 a:hover {
    text-decoration: underline;
}

.nt-timeline-time {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.nt-timeline-body p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Dashboard Sidebar */
.nt-dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nt-dashboard-widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nt-widget-header {
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.nt-widget-header h3 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.2;
    color: #1a1a1a;
}

.nt-widget-header h3 i {
    color: #e74c3c;
    display: inline-block;
    line-height: 1.2;
    margin-top: 2px;
}

.nt-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nt-security-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.nt-security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.nt-security-good {
    background: #d4edda;
    color: #155724;
}

.nt-security-warning {
    background: #fff3cd;
    color: #856404;
}

.nt-help-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nt-help-links li {
    margin-bottom: 10px;
}

.nt-help-links li:last-child {
    margin-bottom: 0;
}

.nt-help-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nt-help-links a:hover {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 15px;
}

.nt-help-links a i {
    color: #e74c3c;
}

/* ============================================
   Modals
   ============================================ */

.nt-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.nt-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.nt-modal-container {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}

.nt-modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nt-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nt-modal-header h3 i {
    color: #e74c3c;
}

.nt-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.nt-modal-close:hover {
    background: #e74c3c;
    color: #fff;
}

.nt-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.nt-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 25px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
    .nt-dashboard-container,
    .nt-profile-container {
        padding: 15px;
    }
    
    .nt-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .nt-profile-content,
    .nt-dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .nt-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nt-profile-info {
        gap: 20px;
    }
    
    .nt-dashboard-header {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .nt-membership-container {
        margin: 5px auto;
        padding: 20px 10px;
    }
    
    .nt-membership-form-wrapper {
        padding: 30px 20px;
    }
    
    .nt-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobil görünümde şifre göster/gizle butonu düzenleme */
    .nt-password-wrapper input {
        padding-right: 50px !important;
    }
    
    .nt-password-toggle {
        right: 12px;
        padding: 10px;
        font-size: 18px;
    }
    
    /* Profile Page Mobile */
    .nt-profile-cover {
        height: 150px;
    }
    
    .nt-profile-info {
        padding: 0 20px 20px;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nt-profile-avatar-wrapper {
        margin-top: -60px;
    }
    
    .nt-profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .nt-profile-details {
        width: 100%;
    }
    
    .nt-profile-name {
        font-size: 26px;
    }
    
    .nt-profile-actions {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        align-self: center;
    }
    
    .nt-profile-actions .nt-btn {
        flex: 1;
    }
    
    .nt-profile-stats,
    .nt-quick-actions {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Dashboard Mobile */
    .nt-dashboard-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nt-dashboard-welcome h1 {
        font-size: 26px;
    }
    
    .nt-dashboard-user {
        flex-direction: column;
        gap: 12px;
    }
    
    .nt-dashboard-avatar {
        width: 60px;
        height: 60px;
    }
    
    .nt-dashboard-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nt-stat-card {
        padding: 20px;
    }
    
    /* Modal Mobile */
    .nt-modal-container {
        margin: 15px;
        max-height: calc(100vh - 30px);
    }
    
    .nt-modal-header {
        padding: 20px;
    }
    
    .nt-modal-body {
        padding: 20px;
    }
    
    .nt-modal-footer {
        flex-direction: column;
    }
    
    .nt-modal-footer .nt-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .nt-dashboard-stats,
    .nt-profile-stats {
        gap: 12px;
    }
    
    .nt-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .nt-stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .nt-stat-card-content h3 {
        font-size: 28px;
    }
    
    /* Profile Tabs Tablet - Scroll yapılabilir */
    .nt-tabs-nav {
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        flex-wrap: nowrap;
    }
    
    .nt-tabs-nav::-webkit-scrollbar {
        height: 3px;
    }
    
    .nt-tabs-nav::-webkit-scrollbar-track {
        background: #f0f0f0;
    }
    
    .nt-tabs-nav::-webkit-scrollbar-thumb {
        background: #e74c3c;
        border-radius: 3px;
    }
    
    .nt-tab-btn {
        flex: 0 0 auto;
        min-width: auto;
        padding: 14px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .nt-tab-btn i {
        font-size: 15px;
    }
    
    .nt-tab-btn span {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .nt-membership-header h2 {
        font-size: 22px;
    }
    
    .nt-membership-form-wrapper {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    /* Mobil extra small ekranlar için şifre göster/gizle butonu */
    .nt-password-wrapper {
        position: relative;
        display: block;
    }
    
    .nt-password-wrapper input {
        width: 100% !important;
        padding-right: 45px !important;
        box-sizing: border-box;
    }
    
    .nt-password-toggle {
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        padding: 8px !important;
        margin: 0 !important;
        font-size: 16px !important;
        z-index: 10;
    }
    
    .nt-checkbox-label {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .nt-checkbox-custom {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-right: 8px;
    }
    
    .nt-checkbox-label input[type="checkbox"]:checked + .nt-checkbox-custom::after {
        font-size: 12px;
    }
    
    /* Profile Tabs Mobile - Sadece iconlar */
    .nt-profile-tabs {
        margin-top: 20px;
    }
    
    .nt-tabs-nav {
        display: flex !important;
        gap: 5px;
        padding: 5px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .nt-tab-btn {
        flex: 0 0 auto;
        min-width: auto;
        padding: 12px 14px;
        font-size: 13px;
        gap: 6px;
    }
    
    .nt-tab-btn i {
        font-size: 14px;
    }
    
    .nt-tab-btn span {
        font-size: 13px;
    }
    
    .nt-tab-pane {
        padding: 15px;
    }
    
    .nt-stats-item {
        padding: 15px;
    }
    
    .nt-stats-value {
        font-size: 24px;
    }
    
    .nt-activity-item {
        padding: 15px;
    }
    
    .nt-activity-excerpt {
        padding: 10px;
    }
    
    /* Profile Mobile Extra Small */
    .nt-profile-container {
        padding: 10px;
    }
    
    .nt-profile-cover {
        height: 120px;
    }
    
    .nt-profile-info {
        padding: 0 15px 15px;
    }
    
    .nt-profile-avatar-wrapper {
        margin-top: -50px;
    }
    
    .nt-profile-avatar {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .nt-avatar-upload-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .nt-profile-name {
        font-size: 22px;
    }
    
    .nt-profile-username {
        font-size: 14px;
    }
    
    .nt-profile-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .nt-profile-actions .nt-btn {
        width: 100%;
        font-size: 14px;
        padding: 10px 16px;
    }
    
    /* Dashboard Mobile Extra Small */
    .nt-dashboard-container {
        padding: 10px;
    }
    
    .nt-dashboard-header {
        padding: 15px;
    }
    
    .nt-dashboard-welcome h1 {
        font-size: 22px;
    }
    
    .nt-dashboard-welcome p {
        font-size: 14px;
    }
    
    .nt-dashboard-avatar {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .nt-dashboard-user-info strong {
        font-size: 16px;
    }
    
    .nt-dashboard-user-info span {
        font-size: 12px;
    }
    
    .nt-stat-card {
        padding: 15px;
    }
    
    .nt-stat-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .nt-stat-card-content h3 {
        font-size: 24px;
    }
    
    .nt-stat-card-content p {
        font-size: 13px;
    }
    
    .nt-section-header h2 {
        font-size: 18px;
    }
    
    .nt-quick-action-card {
        padding: 15px;
    }
    
    .nt-quick-action-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .nt-quick-action-content h4 {
        font-size: 15px;
    }
    
    .nt-quick-action-content p {
        font-size: 12px;
    }
    
    /* Widget Mobile */
    .nt-sidebar-widget,
    .nt-dashboard-widget {
        margin-bottom: 12px;
    }
    
    .nt-widget-title {
        font-size: 15px;
        padding: 15px;
    }
    
    .nt-widget-content {
        padding: 15px;
    }
    
    .nt-widget-header {
        padding: 15px;
    }
    
    .nt-widget-header h3 {
        font-size: 15px;
    }
    
    /* Modal Mobile Extra Small */
    .nt-modal-container {
        margin: 10px;
        max-height: calc(100vh - 20px);
        border-radius: 8px;
    }
    
    .nt-modal-header {
        padding: 15px 20px;
    }
    
    .nt-modal-header h3 {
        font-size: 18px;
    }
    
    .nt-modal-body {
        padding: 15px 20px;
    }
    
    .nt-form-group label {
        font-size: 13px;
    }
    
    .nt-form-group input,
    .nt-form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .nt-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .nt-section-title {
        font-size: 18px;
    }
    
    .nt-timeline-header h4 {
        font-size: 15px;
    }
    
    .nt-timeline-time {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .nt-profile-name {
        font-size: 20px;
    }
    
    .nt-dashboard-welcome h1 {
        font-size: 20px;
    }
    
    .nt-stat-card-content h3 {
        font-size: 22px;
    }
    
    .nt-modal-container {
        margin: 5px;
    }
}