/* Global Variables */
:root {
    --primary: #7c4dff;
    --primary-dark: #6a3bf0;
    --secondary: #b388ff;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --darker-surface: #1a1a1a;
    --dark-text: #e0e0e0;
    --dark-text-light: #b0b0b0;
    --dark-border: #333;
    --dark-hover: #2a2a2a;
    --line-numbers: #666;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    --highlight: rgba(124, 77, 255, 0.1);
}

a {
    text-decoration: none;
}

.auth-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2rem;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #7c4dff;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    font-size: 2.5rem;
    color: #7c4dff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.auth-form .input-with-icon {
    position: relative;
}

.auth-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c4dff;
}

.auth-form input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    border-color: #7c4dff;
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2);
    outline: none;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input {
    width: auto;
    padding: 0;
}

.forgot-password {
    color: #7c4dff;
    text-decoration: none;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #7c4dff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.auth-btn:hover {
    background: #6a3bf0;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #333;
}

.auth-divider::before {
    margin-right: 1rem;
}

.auth-divider::after {
    margin-left: 1rem;
}

.social-login {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid #333;
    background: #252525;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #2d2d2d;
    border-color: #444;
}

.auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.auth-footer a {
    color: #7c4dff;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 600px) {
    .auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}


.trends-container {
    margin-top: 2rem;
}

.trends-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.trends-title {
    font-size: 1.8rem;
    color: #7c4dff;
}

.time-filters {
    display: flex;
    gap: 0.8rem;
}

.time-filter {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #1e1e1e;
    color: #b0b0b0;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.time-filter.active,
.time-filter:hover {
    background: #7c4dff;
    color: white;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trend-card {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-left: 4px solid #7c4dff;
}

.trend-card:hover {
    transform: translateY(-5px);
}

.trend-card-header {
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.trend-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trend-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.trend-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trend-card-content {
    padding: 1rem;
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.trend-card-content:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #1e1e1e);
}

.trend-card-footer {
    padding: 0.8rem 1rem;
    background: #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trend-card-syntax {
    background: #333;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.trend-card-views {
    font-weight: 500;
    color: #7c4dff;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #b0b0b0;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .trends-grid {
        grid-template-columns: 1fr;
    }

    .trends-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .time-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

.time-filter {
    text-decoration: none;
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    margin-top: 20px;
}

.side-panel {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 15px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.side-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #7c4dff;
}

.side-info-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.side-info-icon {
    color: #7c4dff;
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 2px;
}

.side-info-content {
    flex: 1;
}

.side-info-label {
    display: block;
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-bottom: 3px;
}

.side-info-value {
    font-size: 0.9rem;
    word-break: break-word;
}

.side-actions {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

@media (max-width: 768px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
        margin-top: 20px;
    }
}








* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Code', 'Consolas', monospace;
}

body {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

nav .menu-link {
    padding: 0.5rem 1rem;
    margin-left: 1.8rem;
    text-decoration: none;
    color: var(--dark-text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

li {
    text-decoration: none;
    list-style: none;
}

nav a:hover {
    color: var(--primary);
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

/* Editor/Paste Content Styles */
.editor-container,
.paste-content {
    background: var(--dark-surface);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.editor-header,
.paste-header {
    background: var(--darker-surface);
    color: var(--dark-text);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dark-border);
}

.editor-header h2,
.paste-header h2 {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
}

.editor-actions,
.paste-actions {
    display: flex;
    gap: 0.8rem;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Segoe UI', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--dark-hover);
    color: var(--dark-text);
}

.btn-secondary:hover {
    background: #2d2d2d;
}

/* Code Display Styles */
.editor-wrapper,
.code-wrapper {
    position: relative;
    display: flex;
}

.line-numbers {
    padding: 1rem 0.7rem;
    padding-right: 0.8rem;
    text-align: right;
    background: var(--darker-surface);
    color: var(--line-numbers);
    user-select: none;
    font-size: 0.95rem;
    line-height: 1.7;
    min-height: 500px;
}

textarea.code,
.code {
    flex: 1;
    padding: 1rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--dark-surface);
    white-space: pre;
    overflow-x: auto;
    min-height: 500px;
    tab-size: 4;
    border: none;
    resize: none;
}

textarea.code:focus {
    outline: none;
    background: var(--darker-surface);
}

/* Settings/Info Panel Styles */
.settings-panel,
.info-panel {
    background: var(--dark-surface);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1.8rem;
    position: sticky;
    top: 1rem;
}

.settings-panel h3,
.info-header h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: var(--dark-text-light);
    font-size: 0.9rem;
    font-family: 'Segoe UI', sans-serif;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--darker-surface);
    color: var(--dark-text);
    font-family: 'Segoe UI', sans-serif;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2);
    outline: none;
}

/* Info Grid Styles */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Info Card Styles */
.info-card {
    background: var(--darker-surface);
    border-radius: 8px;
    padding: 1.2rem;
    border-left: 3px solid var(--primary);
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.info-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    color: var(--primary);
    margin-right: 0.8rem;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: var(--dark-text-light);
    font-size: 0.85rem;
    font-family: 'Segoe UI', sans-serif;
}

.info-value {
    font-size: 0.95rem;
    color: var(--dark-text);
    word-break: break-word;
}

/* Special Cards */
.expiry-card {
    background: rgba(124, 77, 255, 0.08);
    border-left: 3px solid var(--primary);
}

.expiry-card h4 {
    color: var(--primary);
}

/* Action Buttons */
.action-buttons {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.btn-large {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    background: var(--primary);
    color: white;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.btn-large:hover {
    background: var(--primary-dark);
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    color: var(--dark-text-light);
    font-size: 0.9rem;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .settings-panel,
    .info-panel {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    nav a {
        margin: 0;
    }

    .editor-actions,
    .paste-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.paste-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--dark-surface);
    border-radius: 8px;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 500;
    color: var(--dark-text);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--darker-surface);
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--dark-hover);
    border-color: var(--primary);
}

.action-btn i {
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
}

.original-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.user-profile {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background: #1e1e1e;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    user-select: none;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.user-profile:hover {
    background: #7c4dff;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.username {
    font-weight: 500;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1e1e1e;
    border-radius: 8px;
    min-width: 146px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    justify-content: center;
}

.dropdown-content li a:hover {
    background: #383838;
}

.dropdown-icon.rotated {
    transform: rotate(180deg);
}

/* Mobil Stiller */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .original-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1e1e1e;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 99;
    }

    .original-nav.active {
        right: 0;
    }

    .original-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #333;
    }

    .user-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .user-profile {
        width: 100%;
        border-radius: 0;
        padding: 12px 0;
        background: transparent;
        border-bottom: 1px solid #333;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
    }

    .dropdown-content.show {
        display: block;
    }

    .dropdown-content li a {
        padding-left: 30px;
    }
}


.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

/* Profil Sidebar */
.profile-sidebar {
    position: sticky;
    top: 1rem;
    height: fit-content;
}

.profile-card {
    background: var(--dark-surface);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    border: 4px solid var(--primary-light);
}

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

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.avatar-edit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.profile-username {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.profile-bio {
    color: var(--dark-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-text-lighter);
    margin-top: 0.25rem;
}

.profile-meta {
    margin: 1.5rem 0;
    text-align: left;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text-light);
    font-size: 0.9rem;
}

.meta-item i {
    width: 20px;
    color: var(--primary);
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Rozetler */
.profile-badges {
    background: var(--dark-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.profile-badges h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.badge {
    background: var(--darker-surface);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.badge:hover {
    transform: translateY(-3px);
}

.badge i.bronze {
    color: #cd7f32;
}

.badge i.silver {
    color: #c0c0c0;
}

.badge i.gold {
    color: #ffd700;
}

/* Profil İçerik */
.profile-content {
    background: var(--dark-surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 1.5rem;
}

.tab {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    font-weight: 500;
    color: var(--dark-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.tab:hover:not(.active) {
    color: var(--dark-text);
    border-bottom-color: var(--dark-hover);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Paylaşım Listesi */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.content-header h3 {
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-options {
    width: 250px;
}

.paste-list {
    display: grid;
    gap: 1.5rem;
}

.paste-card {
    background: var(--darker-surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
}

.paste-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.paste-header h4 {
    font-size: 1.1rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paste-date {
    font-size: 0.85rem;
    color: var(--dark-text-lighter);
}

.paste-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--dark-text-light);
}

.paste-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.paste-excerpt {
    background: var(--darkest-surface);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.paste-excerpt pre {
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    white-space: pre-wrap;
}

.paste-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-danger {
    background: var(--error);
    color: white;
}

.btn-danger:hover {
    background: #d32f2f;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--darker-surface);
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.page-item:hover:not(.disabled, .active) {
    background: var(--dark-hover);
}

.page-item.active {
    background: var(--primary);
    color: white;
}

.page-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--dark-text-light);
}

.empty-state i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.empty-state h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.activity-list {
    display: grid;
    gap: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--darker-surface);
    border-radius: var(--radius);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.activity-content p {
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.activity-content p a {
    color: var(--primary);
}

.activity-content small {
    color: var(--dark-text-lighter);
    font-size: 0.85rem;
}


@media (max-width: 768px) {
.container {

  padding: 1rem;
}
}
