/* style.css - Ana Stil Dosyası */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: #f7f7f9;
    color: #1a1a2e;
    line-height: 1.6;
}

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

/* Header */
header {
    background: white;
    padding: 14px 0;
    border-bottom: 1px solid #e8e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #d63384;
    text-decoration: none;
}

.logo span {
    color: #1a1a2e;
    font-weight: 300;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #4a4a5a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

nav a:hover {
    color: #d63384;
}

nav a.active {
    color: #d63384;
    font-weight: 600;
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.nav-btn-primary {
    background: #d63384;
    color: white;
}

.nav-btn-primary:hover {
    background: #b82b72;
}

.nav-btn-outline {
    border: 1px solid #d63384;
    color: #d63384;
    background: transparent;
}

.nav-btn-outline:hover {
    background: #d63384;
    color: white;
}

.nav-btn-danger {
    border: 1px solid #dc3545;
    color: #dc3545;
    background: transparent;
}

.nav-btn-danger:hover {
    background: #dc3545;
    color: white;
}

.user-greeting {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.currency-select, .lang-select {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e8e8ed;
    background: white;
    font-size: 12px;
    color: #4a4a5a;
    cursor: pointer;
}

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

.hero .badge {
    display: inline-block;
    background: #d63384;
    color: white;
    padding: 6px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.hero p {
    font-size: 16px;
    color: #6a6a7a;
    max-width: 620px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: #d63384;
    color: white;
}

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

.btn-outline {
    background: white;
    border: 1px solid #d63384;
    color: #d63384;
}

.btn-outline:hover {
    background: #d63384;
    color: white;
}

/* Online */
.online-section {
    background: white;
    border-radius: 16px;
    padding: 24px 30px;
    margin: 25px 0 40px;
    border: 1px solid #e8e8ed;
}

.online-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.online-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.online-section .sub {
    font-size: 14px;
    color: #6a6a7a;
}

.online-users {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 4px;
}

.online-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
}

.online-user .dot {
    width: 10px;
    height: 10px;
    background: #2b8a3e;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Footer */
footer {
    background: white;
    border-top: 1px solid #e8e8ed;
    padding: 25px 0 20px;
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #6a6a7a;
}

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

.footer-links a {
    color: #4a4a5a;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #d63384;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }
    nav {
        justify-content: center;
    }
    .nav-right {
        justify-content: center;
    }
    .hero h1 {
        font-size: 28px;
    }
    .online-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 10px;
    }
    nav a {
        font-size: 12px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons a {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}