/* Minimal, SEO ve Hız Odaklı FRT Stilleri */
.frt-comments-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* Minimal Yorum Sistemi */
.frt-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.frt-comments-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.frt-comments-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.frt-comment-form {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.frt-comment-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.frt-user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 0.75rem;
}

.frt-form-group {
    margin-bottom: 1rem;
}

.frt-form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.frt-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.15s ease;
    background: white;
}

.frt-form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.frt-textarea {
    min-height: 6rem;
    resize: vertical;
    font-family: inherit;
}

.frt-submit-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.frt-submit-btn:hover {
    background: #2563eb;
}

.frt-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.frt-comments-list {
    margin-top: 1.5rem;
}

.frt-comment {
    display: flex;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    transition: box-shadow 0.15s ease;
}

.frt-comment:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.frt-comment-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.frt-comment-content {
    flex: 1;
    min-width: 0;
}

.frt-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.frt-comment-author {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    margin: 0;
}

.frt-comment-date {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

.frt-comment-text {
    color: #374151;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
    word-wrap: break-word;
}

.frt-comment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.frt-action-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.15s ease;
    border-radius: 0.25rem;
}

.frt-action-btn:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.frt-load-more-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-block;
    text-align: center;
    margin: 1.5rem auto;
}

.frt-load-more-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.frt-load-more-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.frt-empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #6b7280;
}

.frt-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.frt-empty-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.frt-empty-subtext {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Minimal Accordion */
.frt-minimal-accordion {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.frt-accordion-header {
    background: #f9fafb;
    color: #1f2937;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #e5e7eb;
}

.frt-accordion-header:hover {
    background: #f3f4f6;
}

.frt-accordion-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.frt-accordion-header i {
    transition: transform 0.15s ease;
    color: #6b7280;
}

.frt-accordion-header.active i {
    transform: rotate(180deg);
}

.frt-accordion-content {
    padding: 1.5rem;
    background: white;
}

.frt-accordion-content ol {
    margin: 0;
    padding-left: 1.5rem;
}

.frt-accordion-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #374151;
}

/* Minimal Arama Bölümü */
.frt-search-section {
    background: #f9fafb;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.frt-search-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.frt-search-form {
    max-width: 32rem;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.frt-search-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    outline: none;
}

.frt-search-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.frt-search-button:hover {
    background: #2563eb;
}

/* Minimal Footer */
.frt-modern-footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1.5rem;
}

.frt-footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.frt-footer-section p {
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.frt-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frt-footer-section ul li {
    margin-bottom: 0.5rem;
}

.frt-footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.15s ease;
    font-size: 0.875rem;
}

.frt-footer-section ul li a:hover {
    color: #3b82f6;
}

.frt-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.frt-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.15s ease;
}

.frt-footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}

.frt-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .frt-comment {
        padding: 1rem;
    }
    
    .frt-comment-avatar {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
    
    .frt-comment-author {
        font-size: 0.75rem;
    }
    
    .frt-comment-text {
        font-size: 0.75rem;
    }
    
    .frt-comment-form {
        padding: 1rem;
    }
    
    .frt-search-section {
        padding: 2rem 0;
    }
    
    .frt-search-section h2 {
        font-size: 1.25rem;
    }
    
    .frt-search-form {
        flex-direction: column;
        border-radius: 0.375rem;
        padding: 0.75rem;
    }
    
    .frt-search-input {
        border-radius: 0.25rem;
    }
    
    .frt-search-button {
        border-radius: 0.25rem;
    }
    
    .frt-modern-footer {
        padding: 2rem 0 1rem;
    }
    
    .frt-footer-section {
        margin-bottom: 1.5rem;
    }
    
    .frt-accordion-header {
        padding: 0.75rem 1rem;
    }
    
    .frt-accordion-content {
        padding: 1rem;
    }
}

.frt-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #e1e8ed;
    margin-bottom: 20px;
}

.frt-comments-title {
    font-size: 18px;
    font-weight: 600;
    color: #292f33;
    margin: 0;
}

.frt-comments-count {
    color: #8899a6;
    font-size: 14px;
}

.frt-comment-form {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.frt-comment-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.frt-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 12px;
}

.frt-form-group {
    margin-bottom: 15px;
}

.frt-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #292f33;
    font-size: 14px;
}

.frt-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    background: white;
}

.frt-form-control:focus {
    outline: none;
    border-color: #1da1f2;
    box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.1);
}

.frt-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.frt-submit-btn {
    background: #1da1f2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.frt-submit-btn:hover {
    background: #1991db;
}

.frt-submit-btn:disabled {
    background: #8899a6;
    cursor: not-allowed;
}

.frt-comments-list {
    margin-top: 20px;
}

.frt-comment {
    display: flex;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    animation: frt-fadeIn 0.3s ease-in;
    transition: box-shadow 0.2s ease;
}

.frt-comment:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.frt-comment:last-child {
    border-bottom: 1px solid #e1e8ed;
}

.frt-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.frt-comment-content {
    flex: 1;
    min-width: 0;
}

.frt-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.frt-comment-author {
    font-weight: 600;
    color: #292f33;
    font-size: 14px;
    margin: 0;
}

.frt-comment-date {
    color: #8899a6;
    font-size: 12px;
    margin: 0;
}

.frt-comment-text {
    color: #292f33;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    word-wrap: break-word;
}

.frt-comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.frt-action-btn {
    background: none;
    border: none;
    color: #8899a6;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.frt-action-btn:hover {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.frt-action-btn.active {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.frt-action-btn.liked {
    color: #e0245e;
}

.frt-load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-align: center !important;
    margin: 20px auto !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.frt-load-more-btn:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    transition: left 0.5s !important;
}

.frt-load-more-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.frt-load-more-btn:hover:before {
    left: 100% !important;
}

.frt-load-more-btn:disabled {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.frt-load-more-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.frt-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #8899a6;
}

.frt-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.frt-empty-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.frt-empty-subtext {
    font-size: 14px;
    color: #aab8c2;
}

.frt-loading {
    text-align: center;
    padding: 20px;
    color: #8899a6;
}

.frt-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1da1f2;
    border-radius: 50%;
    animation: frt-spin 1s linear infinite;
    margin-right: 8px;
}

.frt-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.frt-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.frt-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.frt-alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.frt-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@keyframes frt-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes frt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sayfa Alt Kısmı Modern Tasarım */
.frt-page-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.frt-page-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.frt-info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.frt-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.frt-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.frt-info-card h3 i {
    color: #667eea;
    font-size: 18px;
}

.frt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.frt-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.frt-contact-item:last-child {
    border-bottom: none;
}

.frt-contact-item i {
    width: 20px;
    color: #667eea;
    font-size: 14px;
}

.frt-contact-item strong {
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
}

.frt-contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.frt-contact-item a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.frt-contact-item span {
    color: #6c757d;
}

/* Modern Tablo Tasarımı */
.frt-modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.frt-modern-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.frt-modern-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #2c3e50;
}

.frt-modern-table tr:last-child td {
    border-bottom: none;
}

.frt-modern-table tr:hover {
    background: #f8f9fa;
}

.frt-modern-table .frt-highlight {
    font-weight: 600;
    color: #667eea;
}

/* Modern Accordion */
.frt-modern-accordion {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 25px;
}

.frt-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.frt-accordion-header:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.frt-accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.frt-accordion-header i {
    transition: transform 0.3s ease;
}

.frt-accordion-header.active i {
    transform: rotate(45deg);
}

.frt-accordion-content {
    padding: 25px;
    border-top: 1px solid #e9ecef;
    background: white;
}

.frt-accordion-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2c3e50;
}

.frt-accordion-content ol {
    padding-left: 20px;
}

.frt-accordion-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #2c3e50;
}

/* Modern Arama Bölümü */
.frt-search-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.frt-search-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.frt-search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.frt-search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.frt-search-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.frt-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Modern Footer */
.frt-modern-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.frt-footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.frt-footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.frt-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frt-footer-section ul li {
    margin-bottom: 10px;
}

.frt-footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.frt-footer-section ul li a:hover {
    color: #667eea;
}

.frt-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.frt-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.frt-footer-social a:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.frt-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: #bdc3c7;
}

/* Modern Buton Stilleri */
.frt-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
}

.frt-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.frt-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.frt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.frt-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.frt-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.frt-btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.frt-btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    color: white;
    text-decoration: none;
}

.frt-btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
}

.frt-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .frt-comment {
        padding: 15px;
    }
    
    .frt-comment-avatar {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .frt-comment-author {
        font-size: 13px;
    }
    
    .frt-comment-text {
        font-size: 13px;
    }
    
    .frt-comment-form {
        padding: 15px;
    }
    
    .frt-page-section {
        padding: 40px 0;
    }
    
    .frt-page-section h2 {
        font-size: 24px;
    }
    
    .frt-info-card {
        padding: 20px;
    }
    
    .frt-modern-table {
        font-size: 13px;
    }
    
    .frt-modern-table th,
    .frt-modern-table td {
        padding: 10px 8px;
    }
    
    .frt-search-section h2 {
        font-size: 24px;
    }
    
    .frt-search-form {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
    }
    
    .frt-search-input {
        border-radius: 10px;
    }
    
    .frt-search-button {
        border-radius: 10px;
    }
    
    .frt-modern-footer {
        padding: 40px 0 20px;
    }
    
    .frt-footer-section {
        margin-bottom: 30px;
    }
}

/* Dark Mode Desteği */
@media (prefers-color-scheme: dark) {
    .frt-comments-container {
        color: #e1e8ed;
    }
    
    .frt-comment-form {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .frt-comment {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .frt-form-control {
        background: #4a5568;
        border-color: #718096;
        color: #e1e8ed;
    }
    
    .frt-comment-author {
        color: #e1e8ed;
    }
    
    .frt-comment-text {
        color: #e1e8ed;
    }
    
    .frt-info-card {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .frt-modern-table {
        background: #2d3748;
    }
    
    .frt-modern-table td {
        color: #e1e8ed;
        border-color: #4a5568;
    }
    
    .frt-modern-table tr:hover {
        background: #4a5568;
    }
}
