/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --text: #fafafa;
    --text-secondary: #a1a1a1;
    --border: #262626;
    --accent: #3b82f6;
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: black;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.logo-text {
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--text);
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(45px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero .highlight {
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* Apps Section */
.apps-section {
    padding: 40px 0 80px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.app-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--app-color, var(--border));
    transform: translateX(4px);
}

.app-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.app-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    flex-shrink: 0;
    object-fit: cover;
}

.app-info {
    flex: 1;
}

.app-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.app-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.app-platforms {
    display: flex;
    gap: 8px;
}

.platform-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    background: var(--bg);
    border-radius: 4px;
    color: var(--text-secondary);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* App Detail Hero */
.app-hero {
    padding: 40px 0 60px;
    border-bottom: 1px solid var(--border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

.app-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.app-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    flex-shrink: 0;
}

.app-icon-large-img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex-shrink: 0;
    object-fit: cover;
}

.app-hero-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-hero-info .tagline {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 16px;
}

.app-stores {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.store-btn:hover {
    background: var(--border);
}

.store-btn svg {
    width: 18px;
    height: 18px;
}

/* App Content */
.app-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

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

.features-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.policy-content {
    color: var(--text-secondary);
}

.policy-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 12px;
}

.policy-content h3:first-child {
    margin-top: 16px;
}

.policy-content p {
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.policy-content a {
    color: var(--accent);
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.info-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
}

.info-card dt {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-card dd {
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.support-link {
    color: var(--accent);
    font-size: 14px;
}

.support-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-top: auto;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .app-card {
        padding: 16px;
    }

    .app-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .app-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-hero-info .app-platforms {
        justify-content: center;
    }

    .app-stores {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .footer-brand {
        flex-direction: column;
        gap: 12px;
    }

    .sidebar {
        flex-direction: column;
    }

    .info-card {
        min-width: 100%;
    }
}

/* Legal Pages (Privacy & Terms) */
.legal-page {
    padding: 40px 0 80px;
}

.legal-page .back-link {
    margin-bottom: 40px;
}

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}

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

.legal-content {
    max-width: 720px;
}

.legal-content .intro {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 12px;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent);
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 16px;
}

.contact-box p {
    margin-bottom: 8px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Legal Links in Sidebar */
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.legal-links a:hover {
    background: var(--bg-tertiary);
    color: var(--text);
}

/* Delete Request Form */
.warning-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.warning-box svg {
    width: 24px;
    height: 24px;
    stroke: #F59E0B;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 8px;
}

.warning-box p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.warning-box ul {
    margin: 12px 0;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.warning-box ul li {
    margin-bottom: 4px;
}

.success-message {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
}

.success-message svg {
    width: 24px;
    height: 24px;
    stroke: #22C55E;
    flex-shrink: 0;
    margin-top: 2px;
}

.success-message h3 {
    font-size: 18px;
    font-weight: 600;
    color: #22C55E;
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-secondary);
}

.error-message {
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    color: #EF4444;
    font-size: 14px;
    margin-bottom: 24px;
}

.delete-form {
    margin-top: 32px;
    max-width: 400px;
}

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

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

.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input[type="email"]:hover,
.form-group textarea:hover {
    border-color: #404040;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    margin: 24px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.submit-btn {
    padding: 12px 24px;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: #DC2626;
    transform: translateY(-1px);
}

/* Honeypot - görünmez */
.hp-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}
