:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0f172a;
    --accent: #10b981;
    --warning: #f59e0b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --card-bg: #1e293b;
    --card-border: #334155;
    --free-badge: #64748b;
    --pro-badge: #8b5cf6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    text-decoration: none;
    z-index: 101;
}

.logo  img , .footer-logo img{
    width: 100px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a.button {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-links a.button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    text-align: center;
    position: relative;
    padding: 40px 0 80px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 24px;
}

.kicker-badge {
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff 0%, #c7d2fe 100%);
    background-clip: text; /* Standart özellik */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-accent {
    display: inline-block;
    background: linear-gradient(to right, #a5b4fc, #10b981);
    background-clip: text; /* Standart özellik */
    -webkit-background-clip: text; /* Webkit tabanlı tarayıcılar için (Chrome, Safari, Opera) */
    -webkit-text-fill-color: transparent;
    color: transparent; /* Yedek plan */
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Credit System Banner */
.credit-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 24px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.credit-banner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.credit-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.credit-type {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--card-border);
}

.credit-type.monthly {
    border-left: 4px solid var(--warning);
}

.credit-type.purchased {
    border-left: 4px solid var(--accent);
}

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

.credit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.monthly .credit-icon {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.purchased .credit-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent);
}

.credit-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.credit-feature {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credit-note {
    display: block;
    text-align: start;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin: 5px 0;
}

/* Multi-Language Demo */
.language-demo {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid var(--card-border);
}

.language-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.language-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.pro-only {
    background: var(--pro-badge);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 12px;
}

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

.language-card {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 20px;
}

.language-flag {
    font-size: 24px;
    margin-bottom: 12px;
}

.language-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.language-sample {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: monospace;
    background: #0a0f1e;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
}

/* AI Suggest Modes */
.ai-modes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.mode-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
}

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

.mode-toggle {
    width: 50px;
    height: 28px;
    border-radius: 999px;
    background: var(--accent);
    position: relative;
}

.mode-toggle.on::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

.mode-toggle.off {
    background: var(--card-border);
}

.mode-toggle.off::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

/* Features Section */
.features {
    margin: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.feature-badge {
    display: inline-block;
    background: var(--pro-badge);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
}

/* Pricing Section */
.pricing {
    margin: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.pro {
    border: 2px solid var(--pro-badge);
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1f35 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pro-badge);
    color: white;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 8px;
}

.price-note {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 15px;
}

.early-access {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: inline-block;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

.feature-list .inactive {
    color: #ff7c7c;
    opacity: 0.7;
}

.feature-list .inactive::before {
    content: "✗";
    color: #ff7c7c !important;
}

.free .feature-list li::before {
        color: var(--accent);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.pricing-button.free {
    border: 1px solid var(--card-border);
    color: white;
}

.pricing-button.free:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.pricing-button.pro {
    background: var(--primary);
    color: white;
}

.pricing-button.pro:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.plan-footnote {
    font-size: 0.8rem;
    color: #666;
    margin: 20px 0;
    padding: 0 10px;
    line-height: 1.5;
}

/* Credit Packs */
.credit-packs {
    margin: 80px 0;
}

.credit-packs h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.credit-packs-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

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

.credit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

.credit-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.credit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.credit-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.credit-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.credit-amount small {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.credit-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.credit-features {
    list-style: none;
    margin: 20px 0;
}

.credit-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credit-features li::before {
    content: "✓";
    color: var(--accent);
}

.credit-button {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--card-border);
    color: white;
    transition: all 0.3s;
}

.credit-button:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.credit-button.primary {
    background: var(--primary);
    border: none;
}

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

/* Abuse Protection */
.abuse-section {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin: 60px 0;
}

.abuse-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--warning);
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.limit-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.limit-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning);
}

.limit-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    margin: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 20px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 100px 0;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(16,185,129,0.1));
    border-radius: 24px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-note {
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid #334155;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: #64748b;
    margin-top: 40px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-grid,
    .pricing-grid,
    .credit-grid,
    .language-grid,
    .ai-modes,
    .limits-grid {
        grid-template-columns: 1fr;
    }

    .credit-types {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .credit-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 100;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .auth-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 200px;
    }

    .auth-links a.button {
        text-align: center;
    }

    .language-header {
        flex-direction: column;
        text-align: center;
    }

    .pro-only {
        margin-left: 0;
        display: inline-block;
    }

    .credit-grid {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .logo {
        font-size: 18px;
    }
    .logo  img , .footer-logo img{
        width: 70px;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .credit-banner {
        padding: 20px;
    }

    .credit-banner h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta {
        padding: 40px 20px;
    }
}





/* Dashboard Profile Sayfası */
:root {
    --dashboard-bg: #0a0c10;
    --card-bg: #111316;
    --card-border: #2a2f35;
    --text-muted: #9aa3af;
    --text-light: #e5e7eb;
}

/* Dashboard Layout */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Cards */
.dashboard-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
}

.dashboard-card:hover {
    border-color: #3a4050;
}

/* Badges */
.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.plan-badge.free {
    background: #2a2f35;
    color: #e5e7eb;
}

.plan-badge.pro {
    background: #f59e0b;
    color: #000;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.verified {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.unverified {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Typography */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.section-title i {
    margin-right: 10px;
    color: #f59e0b;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* Divider */
.divider {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid var(--card-border);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: #0a0c10;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #f59e0b;
    background: #0f1217;
}

.form-control:disabled {
    background: #1a1e24;
    color: #9aa3af;
    cursor: not-allowed;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: #fff;
}

.btn-outline:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.btn-primary {
    background: #f59e0b;
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #d97706;
}

/* Alerts */
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.alert-danger ul {
    margin: 5px 0 0 20px;
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px 15px;
    }

    .dashboard-card {
        padding: 20px;
    }
}


/* Dashboard Profile Sayfası */
:root {
    --dashboard-bg: #0a0c10;
    --card-bg: #111316;
    --card-border: #2a2f35;
    --text-muted: #9aa3af;
    --text-light: #e5e7eb;
}

/* Dashboard Layout */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Cards */
.dashboard-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
}

.dashboard-card:hover {
    border-color: #3a4050;
}

/* Badges */
.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.plan-badge.free {
    background: #2a2f35;
    color: #e5e7eb;
}

.plan-badge.pro {
    background: #f59e0b;
    color: #000;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.verified {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.unverified {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Typography */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.section-title i {
    margin-right: 10px;
    color: #f59e0b;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* Divider */
.divider {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid var(--card-border);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: #0a0c10;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #f59e0b;
    background: #0f1217;
}

.form-control:disabled {
    background: #1a1e24;
    color: #9aa3af;
    cursor: not-allowed;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: #fff;
}

.btn-outline:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.btn-primary {
    background: #f59e0b;
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #d97706;
}

/* Alerts */
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.alert-danger ul {
    margin: 5px 0 0 20px;
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px 15px;
    }

    .dashboard-card {
        padding: 20px;
    }
}
