/* Community/Forum Styles – hover = güvenlik rozetleri (AES, Zero-Knowledge, E2EE) ile aynı hız */
:root {
    --hover-duration: 0.01s;
    --hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hover-lift: 4px;
    --hover-lift-sm: 2px;
    --hover-scale: 1.01;
    --hover-shadow: 0 10px 24px rgba(255, 107, 157, 0.12);
    --hover-shadow-strong: 0 8px 20px rgba(255, 107, 157, 0.18);
    --hover-glow: 0 0 28px rgba(255, 107, 157, 0.22);
    --hover-shadow-with-glow: 0 10px 24px rgba(255, 107, 157, 0.12), 0 0 28px rgba(255, 107, 157, 0.22);
}

.community-main {
    padding-top: 80px;
}

/* Community Hero */
.community-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 107, 157, 0.05) 0%, transparent 100%);
}

.community-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.community-hero .hero-description {
    font-size: 18px;
    color: var(--neutral-200);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Community Stats */
.community-stats {
    padding: 40px 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stats-grid .stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-300);
}

/* Categories */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.category-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--primary-500);
    box-shadow: 0 10px 24px rgba(255, 107, 157, 0.12), 0 0 28px rgba(255, 107, 157, 0.22);
}

.category-card.active {
    border: 1px solid var(--primary-500);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(199, 125, 255, 0.2));
    box-shadow: 0 0 0 1px rgba(255, 107, 157, 0.35), var(--hover-glow);
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    animation: pulse-beta-card 3s ease-in-out infinite;
}

@keyframes pulse-beta-card {
    0%, 100% { 
        box-shadow: 0 0 0 1px rgba(255, 107, 157, 0.35), 0 0 24px rgba(255, 107, 157, 0.2);
    }
    50% { 
        box-shadow: 0 0 0 1px rgba(255, 107, 157, 0.45), 0 0 32px 8px rgba(255, 107, 157, 0.28);
    }
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}


.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--neutral-300);
    margin-bottom: 16px;
}

.post-count {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-500);
    font-weight: 600;
}

/* Posts Section */
.posts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.5));
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.forum-toolbar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.forum-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.forum-search {
    width: 260px;
    padding: 12px 40px 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-100);
    font-size: 14px;
    transition: border-color 0.2s;
}

.forum-search::placeholder {
    color: var(--neutral-500);
}

.forum-search:focus {
    outline: none;
    border-color: var(--primary-500);
}

.forum-search-clear {
    position: absolute;
    right: 10px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--neutral-400);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
}

.forum-search-clear:hover {
    color: var(--neutral-200);
    background: rgba(255,255,255,0.08);
}

.posts-filters {
    display: flex;
    gap: 12px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-200);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease, color var(--hover-duration) ease;
}

.filter-btn:hover {
    border-color: var(--primary-500);
    color: var(--neutral-100);
    transform: translateY(var(--hover-lift-sm));
    box-shadow: var(--hover-glow);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    border-color: transparent;
    color: white;
}

.posts-grid {
    display: grid;
    gap: 24px;
}

.post-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-with-glow);
}

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

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
}

.post-author-info {
    flex: 1;
}

.post-author-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}
.post-author-link:hover .post-author-name {
    color: var(--primary-500);
}

.post-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-100);
}

.post-meta {
    font-size: 12px;
    color: var(--neutral-400);
}

.post-category-badge {
    padding: 4px 12px;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid var(--primary-500);
    border-radius: 12px;
    font-size: 11px;
    color: var(--primary-500);
    font-weight: 600;
}

.post-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neutral-100);
}

.post-excerpt {
    font-size: 14px;
    color: var(--neutral-300);
    line-height: 1.6;
    margin-bottom: 16px;
}

.post-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.post-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--neutral-400);
}

.post-stat svg {
    width: 18px;
    height: 18px;
}

.btn-load-more {
    display: block;
    margin: 40px auto 0;
    padding: 14px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-100);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.btn-load-more:hover {
    border-color: var(--primary-500);
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: var(--neutral-400);
    font-size: 14px;
}

/* Auth Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--neutral-900);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    /* Custom scrollbar - minimal ve şık */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 157, 0.2) transparent;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 157, 0.2);
    border-radius: 10px;
    transition: background var(--hover-duration) ease;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 157, 0.4);
}

/* Auth modal için özel - scroll bar tamamen gizli */
#authModal .modal-content {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    max-height: 85vh; /* İçeriğe göre ayarlandı */
}

#authModal .modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.auth-container {
    padding: 0;
}

.modal-large {
    max-width: 800px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--neutral-400);
    margin-bottom: 32px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--neutral-100);
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease, color var(--hover-duration) ease;
}

.modal-close svg {
    stroke: currentColor;
}

.modal-close:hover {
    background: var(--glass-hover);
    border-color: var(--primary-500);
    box-shadow: var(--hover-glow);
    transform: translateY(var(--hover-lift-sm));
    color: #ffffff;
}

.auth-container h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 15px;
    color: var(--neutral-300);
    margin-bottom: 32px;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-200);
    letter-spacing: 0.2px;
}

.form-group input {
    padding: 16px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--neutral-100);
    font-size: 16px;
    transition: border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
    line-height: 1.5;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check label {
    font-size: 13px;
    color: var(--neutral-300);
}

.form-check a {
    color: var(--primary-500);
    text-decoration: none;
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-500);
    text-decoration: none;
    text-align: right;
    margin-top: -4px;
    margin-bottom: 4px;
    transition: color var(--hover-duration) var(--hover-ease);
}

.forgot-password:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.btn-auth-submit {
    padding: 16px 24px;
    background: linear-gradient(135deg, #c62828, #6a1b5c);
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, color var(--hover-duration) ease;
    letter-spacing: 0.3px;
    margin-top: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.btn-auth-submit:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
    color: #ffffff;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
}

.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 16px;
    background: var(--neutral-900);
    font-size: 13px;
    color: var(--neutral-400);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    min-height: 48px;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease;
    letter-spacing: 0.2px;
}

.btn-google:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--neutral-400);
}

.auth-switch a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 600;
}

.auth-info-box {
    margin-top: 28px;
    padding: 20px;
    background: rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.auth-info-box svg {
    flex-shrink: 0;
    color: var(--primary-500);
    margin-top: 4px;
    width: 24px;
    height: 24px;
}

.auth-info-box div {
    flex: 1;
}

.auth-info-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-200);
}

.auth-info-box p:first-child {
    margin-bottom: 12px;
}

.auth-info-box p:last-child {
    margin-top: 0;
}

.auth-info-box p strong {
    color: var(--neutral-100);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
}

.btn-login {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease;
}

.btn-login:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
}

/* Header Giriş yap / Login: dil değişince buton boyutu sabit kalsın */
.navbar .nav-actions .btn-login {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.user-profile::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    height: 12px;
    background: transparent;
}

.user-profile:hover {
    border-color: var(--primary-500);
    box-shadow: var(--hover-glow);
    transform: translateY(var(--hover-lift-sm));
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-100);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 200px;
    background: var(--neutral-800);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--hover-duration) var(--hover-ease), visibility var(--hover-duration) ease, transform var(--hover-duration) var(--hover-ease);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    pointer-events: none;
}

.user-profile:hover .user-dropdown,
.user-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 10px 14px;
    color: var(--neutral-200);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--hover-duration) ease, color var(--hover-duration) ease;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background: var(--glass-hover);
    color: var(--neutral-100);
}

.dropdown-item.logout {
    color: #ff4444;
}

.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 8px 0;
}

/* Responsive */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
}

/* New Post Form */
.new-post-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.new-post-form select {
    padding: 14px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-100);
    font-size: 15px;
    cursor: pointer;
    transition: border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
}

/* Açılan kategori listesi: arka plan koyu, yazı açık (beyaz panelde okunmuyordu) */
.new-post-form select option {
    background: #1a1a1a;
    color: #e0e0e0;
}
/* Bazı tarayıcılarda select kutusunun kendisi de koyu olsun */
.new-post-form select {
    background-color: #1a1a1a;
}

.new-post-form select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.new-post-form textarea {
    padding: 14px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-100);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
}

.new-post-form textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--neutral-400);
    margin-top: 6px;
}

.form-group small {
    display: block;
    font-size: 12px;
    color: var(--neutral-400);
    margin-top: 6px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--neutral-300);
    line-height: 1.5;
}

.checkbox-group label svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-teal);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-200);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease, background var(--hover-duration) ease;
}

.btn-secondary:hover {
    border-color: var(--neutral-400);
    background: var(--glass-hover);
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #c62828, #6a1b5c);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, color var(--hover-duration) ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.btn-primary:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
    color: #ffffff;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

