/* 
   -----------------------------------------------------------------------------
   💎 ŞEKİLLİ NICK PRO - PREMIUM THEME (RECONSTRUCTED)
   Modern, Clean, SaaS-style CSS
   -----------------------------------------------------------------------------
*/

:root {
    /* Brand Colors - More Vibrant */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-hover: #4f46e5;
    --primary-dark: #3730a3;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;

    /* Backgrounds */
    --bg-body: #f1f5f9;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);

    /* Text Colors */
    --text-main: #1e293b;
    --text-muted: #475569;
    --text-light: #94a3b8;

    /* Borders & Shadows - Refined */
    --border: #e2e8f0;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 15px 35px -5px rgba(0, 0, 0, 0.08), 0 8px 15px -8px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(67, 56, 202, 0.12);
    --shadow-highlight: 0 0 0 4px rgba(99, 102, 241, 0.2);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Aliases for Compatibility */
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --surface-card: var(--bg-surface);
    --text-primary: var(--text-main);
    --text-secondary: var(--text-muted);
    --border-color: var(--border);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Dark Mode Overrides */
[data-theme='dark'] {
    --bg-body: #0d1117;
    --bg-surface: #161b22;
    --bg-glass: rgba(22, 27, 34, 0.8);
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    --text-light: #484f58;
    --border: #30363d;
    --shadow-sm: 0 1px 0 rgba(0, 0, 0, 1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Yatay kaydırmayı engelle */
}

body {
    background-color: var(--bg-body);
    background-image:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    padding-bottom: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    position: relative;
    /* Fixed elementler için bazen gerekir */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin-top: 0;
    line-height: 1.25;
}

/* -------------------------------------------------------------------------- */
/* Header & Navigation */
/* -------------------------------------------------------------------------- */
.site-header {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.site-name {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
}

.site-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav ul li {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: var(--border);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg);
}

[data-theme='dark'] .theme-toggle i:before {
    content: "\f185";
    /* fa-sun */
}

/* -------------------------------------------------------------------------- */
/* Components: Hero & Input */
/* -------------------------------------------------------------------------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.input-section {
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Taşmaları önle */
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.input-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

#nickInput {
    width: 100%;
    padding: 1.15rem 6.5rem 1.15rem 1.75rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    background: var(--bg-surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

#nickInput:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), var(--shadow-lg);
    transform: translateY(-2px);
}

.char-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    transition: var(--transition);
}

.char-count.warning {
    color: #f59e0b;
}

.char-count.warning span {
    animation: pulse 1s infinite;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0 1rem;
}

.input-hints {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
}

.hint {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

#clearBtn {
    position: absolute;
    right: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 116, 139, 0.1);
    border: none;
    color: var(--text-muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

#clearBtn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* -------------------------------------------------------------------------- */
/* Categories & Grid */
/* -------------------------------------------------------------------------- */
.styles-section {
    padding: 1.5rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cat-btn {
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cat-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cat-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

#loadMoreBtn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    margin: 3rem auto;
    box-shadow: var(--shadow-lg);
    animation: pulse-soft 2s infinite;
}

#loadMoreBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

#loadMoreBtn:active {
    transform: translateY(-1px) scale(0.98);
}

.load-more-container {
    text-align: center;
    width: 100%;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.style-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-sm);
}

.style-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.style-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.style-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.style-card:hover::after {
    transform: scaleX(1);
}

.style-content {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
    flex: 1;
    letter-spacing: 0.01em;
}

.style-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.style-card:hover .style-actions {
    opacity: 1;
}

.action-icon {
    font-size: 1rem;
    filter: grayscale(1);
    transition: var(--transition);
}

.style-card:hover .action-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.copy-feedback {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.style-card.copied .copy-feedback {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------------------- */
/* Modal */
/* -------------------------------------------------------------------------- */
.modal {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-surface);
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    animation: fadeInUp 0.3s ease-out;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 10px;
        border-radius: var(--radius-md);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.editor-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    background: var(--bg-body);
    color: var(--text-main);
    transition: var(--transition);
}

@media (max-width: 480px) {
    .editor-input {
        font-size: 1.25rem;
        padding: 0.75rem;
    }
}

.btn-close {
    background: rgba(100, 116, 139, 0.1);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toolbar {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tool-btn {
    height: 40px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.tool-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Editor Action Buttons */
.editor-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .editor-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.action-btn {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.custom-scrollbar {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--bg-body);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* -------------------------------------------------------------------------- */
/* Footer */
/* -------------------------------------------------------------------------- */
.main-footer {
    background: #1a1b1e;
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-about p,
.footer-nav a,
.footer-contact p {
    color: #a0aec0;
    text-decoration: none;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #718096;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary);
}

/* FAQ Accordion */
.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
}


/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--text-main);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    transform: translateY(-150%);
    transition: all 0.4s;
    z-index: 3000;
}

.toast.show {
    transform: translateY(0);
}

.toast-success {
    background: #10b981;
}

.toast-error {
    background: #ef4444;
}

.toast-info {
    background: var(--primary);
}

/* Global Improvements */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Floating Favorites Button */
.favorites-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ec4899, #6366f1);
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transition: all 0.25s ease;
}

.favorites-floating-btn i {
    font-size: 1rem;
    animation: heartBeat 1.8s ease-in-out infinite;
}

.favorites-floating-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 640px) {
    .favorites-floating-btn {
        left: 16px;
        right: 16px;
        bottom: 20px;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .favorites-floating-btn span {
        white-space: nowrap;
    }
}

/* Favorites */
.fav-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    transition: all 0.2s ease;
}

.fav-btn:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.fav-btn.active {
    color: var(--secondary);
}

/* UI Elements */
.badge-modern {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.badge-modern:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.popular-hub {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for the hub */
.popular-hub::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.popular-hub h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.hub-item {
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: var(--shadow-sm);
}

.hub-item:hover {
    background: var(--bg-surface);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hub-item-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
    color: white !important;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    border: none;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hub-item-featured:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }

    .styles-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.5s ease-out;
}

@media (min-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: auto;
        min-width: 320px;
        max-width: 400px;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-xl);
    }
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-hover);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    background: var(--bg-body);
    color: var(--text-main);
    border-color: var(--text-muted);
}

/* UX İyileştirmeleri */

/* Loading State */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.empty-state p {
    font-size: 1.1rem;
    max-width: 400px;
    line-height: 1.6;
}

/* Style Card İyileştirmeleri */
.style-card {
    animation: fadeInUp 0.4s ease-out backwards;
}

.style-card.copied {
    transform: scale(0.98);
    box-shadow: var(--shadow-highlight);
    border-color: var(--primary);
}

.style-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: all 0.2s ease;
    opacity: 1;
    transform: translateX(0);
}

.copy-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Load More Button Pulse */
.load-more-container button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Input İyileştirmeleri */
#nickInput::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

#clearBtn {
    transition: var(--transition);
}

#clearBtn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}


/* -------------------------------------------------------------------------- */
/* Home Blog Preview Section */
/* -------------------------------------------------------------------------- */
.home-blog-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding-bottom: 5px;
}

.view-all-link:hover {
    gap: 12px;
    color: var(--primary-hover);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-preview-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    height: 100%;
    /* Kartların eşit olması için */
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.blog-preview-img-wrapper {
    position: relative;
    height: 160px;
    /* Daha kompakt yükseklik */
    overflow: hidden;
}

.blog-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-preview-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem;
    /* Başlıklar için sabit alan */
}

.blog-preview-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 3'ten 2'ye düşürüldü */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-preview-footer {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 992px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   SOSYAL ÖZELLİKLER VE GELİŞMİŞ ARAÇLAR
   ========================================================================= */

/* Beğeni Butonu */
.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.like-btn.liked {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-color: #ff6b6b;
}

.like-count {
    font-weight: 600;
}

/* Paylaşım Butonları */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Popüler Nickler */
.popular-list {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.popular-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.popular-item .nick-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.popular-item .nick-stats {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Nick Araçları Konteyner */
.nick-tools-container {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.tool-card h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #fff;
}

.tool-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tool-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
}

.tool-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tool-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.tool-results {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.result-item {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

/* Platform Kontrol */
.platform-check-result {
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
}

.platform-check-result.valid {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.platform-check-result.invalid {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
}

.check-issue {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #fff;
    font-size: 14px;
}

/* Emoji Önerileri */
.emoji-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.emoji-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emoji-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .tool-input-group {
        flex-direction: column;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .popular-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* =========================================================================
   ANASAYFA POPÜLER NİCKLER WİDGET
   ========================================================================= */

.popular-nicks-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.popular-nicks-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.popular-nick-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.popular-nick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.popular-nick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.popular-nick-card:hover::before {
    transform: scaleX(1);
}

.popular-nick-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    word-break: break-word;
}

.popular-nick-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.popular-nick-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-nick-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.popular-nick-btn {
    flex: 1;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.popular-nick-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.popular-nick-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.popular-nick-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Nick Kartlarına Sosyal Butonlar */
.nick-card-social {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.nick-social-btn {
    width: 26px;
    height: 26px;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nick-social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.nick-like-btn {
    color: #ff6b6b;
}

.nick-like-btn:hover {
    background: #fff0f0;
    border-color: #ff6b6b;
}

.nick-like-btn.liked {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.nick-like-btn.liked:hover {
    background: #ff5252;
}

.nick-twitter-btn {
    color: #1DA1F2;
}

.nick-twitter-btn:hover {
    background: #e8f5fe;
    border-color: #1DA1F2;
}

.nick-whatsapp-btn {
    color: #25D366;
}

.nick-whatsapp-btn:hover {
    background: #e8f8f0;
    border-color: #25D366;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .popular-nicks-container {
        grid-template-columns: 1fr;
    }
    
    .popular-nick-card {
        padding: 16px;
    }
    
    .popular-nick-text {
        font-size: 18px;
    }
    
    .nick-card-social {
        margin-top: 8px;
        padding-top: 8px;
        gap: 4px;
    }
    
    .nick-social-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .style-card {
        padding: 0.75rem 0.875rem;
    }
    
    .style-content {
        font-size: 1.05rem;
    }
}


/* =========================================================================
   GELİŞMİŞ NİCK ARAÇLARI
   ========================================================================= */

.nick-tools-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tool-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tool-icon {
    font-size: 32px;
}

.tool-card h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-primary);
}

.tool-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tool-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.tool-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.tool-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.tool-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.tool-btn:active {
    transform: translateY(0);
}

.tool-results {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    max-height: 300px;
    overflow-y: auto;
}

.result-item {
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.platform-check-result {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.platform-check-result.valid {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.platform-check-result.invalid {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
}

.check-issue {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
}

.emoji-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.emoji-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emoji-item:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================================================================
   YORUM SİSTEMİ
   ========================================================================= */

.reviews-section {
    padding: 0 20px;
}

.review-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
}

.review-form-card h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: var(--text-primary);
}

.rating-input {
    margin-bottom: 16px;
}

.rating-input label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 28px;
}

.star-rating i {
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #ffc107;
    transform: scale(1.1);
}

.review-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.review-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.review-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.reviews-list {
    display: grid;
    gap: 16px;
}

.review-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.review-rating {
    color: #ffc107;
    font-size: 16px;
}

.review-date {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 8px;
}

.review-comment {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-card {
        padding: 20px;
    }
    
    .tool-icon {
        font-size: 28px;
    }
    
    .emoji-item {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* -------------------------------------------------------------------------- */
/* Top Announcement Banner */
/* -------------------------------------------------------------------------- */
.top-announcement-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.top-announcement-banner a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
    width: 100%;
}

.top-announcement-banner a:hover {
    opacity: 0.95;
    text-decoration: none;
}

.top-announcement-banner .badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 8px;
    font-weight: 700;
}


/* ========================================================================== */
/* KENDİN TASARLA SAYFASI STİLLERİ */
/* ========================================================================== */

.custom-design-hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.design-workspace {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

/* Sol Panel - Araçlar */
.design-sidebar {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: var(--shadow-md);
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title i {
    color: var(--primary);
}

.custom-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1.125rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    background: var(--bg-body);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

.char-counter.warning {
    color: #f59e0b;
}

/* Font Grid */
.font-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.font-card {
    background: var(--bg-body);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.font-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.font-card.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.font-preview {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    word-break: break-all;
    min-height: 28px;
}

.font-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sembol Tabs */
.symbol-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.symbol-tab {
    background: var(--bg-body);
    border: 1px solid var(--border);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.symbol-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.symbol-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Sembol Grid */
.symbol-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.symbol-btn {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.625rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.symbol-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

/* Efekt Grid */
.effects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.effect-btn {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.effect-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.effect-btn i {
    font-size: 0.875rem;
}

/* Sağ Panel - Önizleme */
.design-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-card,
.share-card,
.suggestions-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-main);
}

.btn-icon {
    background: rgba(239, 68, 68, 0.1);
    border: none;
    color: #ef4444;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.preview-display {
    background: var(--bg-body);
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preview-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
    text-align: center;
    line-height: 1.4;
}

.preview-placeholder {
    color: var(--text-light);
    font-size: 1.125rem;
    text-align: center;
}

.preview-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-body);
    color: var(--text-main);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-secondary.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Paylaşım Kartı */
.share-card h4,
.suggestions-card h4 {
    font-size: 1.125rem;
    margin: 0 0 1.25rem 0;
    color: var(--text-main);
}

.share-buttons-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.share-btn-large {
    background: var(--bg-body);
    border: 1px solid var(--border);
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.share-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.share-btn-large.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.share-btn-large.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.share-btn-large.telegram:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

/* Öneriler */
.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.suggestions-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

.suggestion-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: var(--transition);
}

.suggestion-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.suggestion-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    word-break: break-all;
    flex: 1;
}

.suggestion-use-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.suggestion-use-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

/* İpuçları Bölümü */
.tips-section {
    margin: 4rem 0;
}

.tips-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tip-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.tip-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .design-workspace {
        grid-template-columns: 1fr;
    }

    .design-sidebar {
        position: static;
        max-height: none;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .font-grid {
        grid-template-columns: 1fr;
    }

    .symbol-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .effects-grid {
        grid-template-columns: 1fr;
    }

    .preview-actions {
        grid-template-columns: 1fr;
    }

    .share-buttons-large {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .preview-text {
        font-size: 1.75rem;
    }
}

/* Scrollbar Styling */
.design-sidebar::-webkit-scrollbar,
.font-grid::-webkit-scrollbar,
.symbol-grid::-webkit-scrollbar {
    width: 6px;
}

.design-sidebar::-webkit-scrollbar-track,
.font-grid::-webkit-scrollbar-track,
.symbol-grid::-webkit-scrollbar-track {
    background: var(--bg-body);
    border-radius: 3px;
}

.design-sidebar::-webkit-scrollbar-thumb,
.font-grid::-webkit-scrollbar-thumb,
.symbol-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.design-sidebar::-webkit-scrollbar-thumb:hover,
.font-grid::-webkit-scrollbar-thumb:hover,
.symbol-grid::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}


/* Kendin Tasarla CTA Butonu */
.custom-design-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: var(--radius-lg);
    padding: 0;
    text-decoration: none;
    display: block;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.custom-design-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.custom-design-cta:hover::before {
    opacity: 1;
}

.custom-design-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.cta-arrow {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.custom-design-cta:hover .cta-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-content {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .cta-icon {
        font-size: 2rem;
    }

    .cta-text h3 {
        font-size: 1.25rem;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    .cta-arrow {
        font-size: 1.25rem;
    }
}

/* Font Kategorileri */
.font-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.font-tab {
    background: var(--bg-body);
    border: 1px solid var(--border);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.font-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.font-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.font-category {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Süsleme Şablonları */
.template-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.template-tab {
    background: var(--bg-body);
    border: 1px solid var(--border);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.template-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.template-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.template-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.template-btn {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.template-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.template-preview {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.375rem;
    word-break: break-all;
}

.template-btn:hover .template-preview {
    color: white;
}

.template-name {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.template-btn:hover .template-name {
    color: rgba(255, 255, 255, 0.8);
}

/* Gelişmiş Sembol Grid */
.symbol-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.375rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.symbol-btn {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    position: relative;
}

.symbol-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.15);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.symbol-btn:active {
    transform: scale(0.95);
}

/* Gelişmiş Font Kartları */
.font-card {
    background: var(--bg-body);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.font-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.font-card:hover::before {
    left: 100%;
}

.font-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.font-card.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.font-card.active::after {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Responsive Güncellemeleri */
@media (max-width: 768px) {
    .font-tabs,
    .template-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .symbol-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .template-grid {
        max-height: 150px;
    }

    .font-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .symbol-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .font-tabs,
    .template-tabs {
        gap: 0.125rem;
    }

    .font-tab,
    .template-tab {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Animasyonlar */
@keyframes fontCardPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.font-card.active {
    animation: fontCardPulse 2s ease-in-out infinite;
}

@keyframes symbolBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.symbol-btn:active {
    animation: symbolBounce 0.3s ease;
}

/* Tooltip Efektleri */
.template-btn {
    position: relative;
}

.template-btn:hover::after {
    content: 'Tıklayın';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    white-space: nowrap;
    z-index: 100;
}