/* tt-jeton - Ana Stil Dosyası */

:root {
    --color-primary: #f43f5e;
    --color-primary-hover: #e11d48;
    --color-secondary: #14b8a6;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--color-primary);
}

/* Header Logo Responsive */
.header-logo {
    height: 42px; /* Desktop - header (60px) içine düzgün sığar */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .header {
        height: 50px;
    }
    
    .header-logo {
        height: 34px; /* Mobil */
    }
}

.footer-logo {
    border-radius: 10px;
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        gap: 2rem;
    }
}

.nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        max-height: calc(100vh - 140px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 10000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        border-radius: 0 0 0 1rem;
    }
    
    .nav.active {
        right: 0;
        display: flex;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.875rem 0;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        color: #1e293b;
        text-decoration: none;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a:hover {
        color: var(--color-primary);
    }
    
    .nav-divider {
        width: 100%;
        height: 1px;
        background: #cbd5e1;
        margin: 0.5rem 0;
    }
    
    .nav-section-title {
        font-size: 0.75rem;
        font-weight: 600;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0.75rem 0 0.25rem;
    }
}

/* Mobile Overlay - Removed dark background */
.mobile-overlay {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-overlay {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

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

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

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

.btn-outline:hover {
    background: var(--color-bg);
}

/* Hero Section */
.hero {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title span {
    color: var(--color-primary);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat-item {
        text-align: left;
    }
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Live Purchases Box - Modern Design */
.live-purchases {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 1.25rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.live-purchases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.live-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    }
    50% { 
        opacity: 0.7; 
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.8), 0 0 20px rgba(16, 185, 129, 0.4);
    }
}

.live-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}

#liveList {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.live-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    animation: slideIn 0.5s ease-out;
    border-radius: 0.625rem;
    transition: all 0.2s ease;
    margin: 0.125rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.live-item:hover {
    background: rgba(16, 185, 129, 0.05);
}

.live-item:not(:last-child) {
    border-bottom: none;
}

.live-item.new-item {
    animation: slideInNew 1s ease-out;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.live-item.exit-item {
    animation: slideOut 0.8s ease-in forwards;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInNew {
    from {
        opacity: 0;
        transform: translateY(-30px);
        background: rgba(16, 185, 129, 0.2);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        background: rgba(16, 185, 129, 0.05);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
        max-height: 50px;
    }
    to {
        opacity: 0;
        transform: translateX(30px);
        max-height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }
}

/* Cascade animation - push down effect */
@keyframes pushDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes cascadeEnter {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        max-height: 0;
    }
    30% {
        max-height: 60px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 60px;
    }
}

.live-item.push-down {
    animation: pushDownSmooth 0.8s ease-out forwards;
}

@keyframes pushDownSmooth {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.live-item.cascade-enter {
    animation: cascadeEnter 0.8s ease-out forwards;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
}

.live-user {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.live-user span {
    font-size: 0.85rem;
    color: #475569;
}

.live-user strong {
    color: #1e293b;
    font-weight: 600;
}

/* Status Dots - Enhanced */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.status-dot.green {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.status-dot.red {
    background: #94a3b8;
}

/* Mobile Live Purchases Enhancement */
@media (max-width: 767px) {
    .live-purchases {
        margin: 0 auto;
        padding: 1rem;
        border-radius: 1rem;
        max-width: 100%;
        background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    }
    
    .live-purchases::before {
        height: 2px;
    }
    
    .live-header {
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .live-title {
        font-size: 0.85rem;
    }
    
    .live-item {
        padding: 0.5rem 0.625rem;
        border-radius: 0.5rem;
    }
    
    .live-user span {
        font-size: 0.8rem;
    }
    
    .status-dot {
        width: 7px;
        height: 7px;
    }
}

.status-dot.green {
    background: #10b981;
    animation: pulseGlow 1.5s infinite;
}

.status-dot.red {
    background: #ef4444;
    opacity: 0.7;
}

.live-coin {
    width: 24px;
    height: 24px;
}

.live-amount {
    color: var(--color-primary);
    font-weight: 700;
}

.live-time {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Packages Section */
.packages-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Package Cards */
.packages-wrapper {
    position: relative;
    padding: 0;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.5rem;
}

/* Mobilde 2'li grid - Kare kartlar */
@media (max-width: 767px) {
    .packages-section {
        padding: 2rem 0;
    }
    
    .packages-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .packages-wrapper {
        padding: 0;
    }
    
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0;
    }
    
    .package-card {
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0.75rem 0.5rem;
        min-height: 175px;
        border-radius: 0.75rem;
    }
    
    .package-tiktok-logo {
        width: 48px;
        margin-bottom: 0.4rem;
    }
    
    .package-coins {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .package-coin {
        width: 16px;
        height: 16px;
    }
    
    .package-bonus {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }
    
    .package-price {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .package-btn {
        padding: 0.45rem 0.5rem;
        font-size: 0.75rem;
        width: 95%;
        border-radius: 0.4rem;
    }
}

/* Tablette 3'lü grid */
@media (min-width: 768px) and (max-width: 1023px) {
    .packages-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Masaüstünde 4'lü grid */
@media (min-width: 1024px) {
    .packages-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.package-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.package-tiktok-logo {
    width: 55px;
    height: auto;
    margin-bottom: 0.5rem;
}

.package-coins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.package-coin {
    width: 18px;
    height: 18px;
}

.package-bonus {
    color: var(--color-success);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.package-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.package-btn {
    width: 100%;
    padding: 0.6rem 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.package-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

@media (min-width: 768px) {
    .package-tiktok-logo {
        width: 65px;
    }
    
    .package-coins {
        font-size: 1.2rem;
    }
    
    .package-coin {
        width: 20px;
        height: 20px;
    }
    
    .package-bonus {
        font-size: 0.75rem;
    }
    
    .package-price {
        font-size: 1.1rem;
    }
    
    .package-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .package-card {
        padding: 1.5rem 1.25rem;
    }
    
    .package-tiktok-logo {
        width: 70px;
    }
    
    .package-coins {
        font-size: 1.3rem;
    }
}

/* Scroll Indicator Dots - artık gerekli değil ama sakla */
.scroll-indicator {
    display: none;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-primary);
}

.scroll-dot:hover {
    background: var(--color-primary);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-section a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none; }

@media (min-width: 1024px) {
    .lg-block { display: block; }
    .lg-hidden { display: none; }
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-name {
    font-weight: 700;
    color: var(--color-text);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.875rem;
}

.review-text {
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Review Form */
.review-form-container {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .review-form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

.review-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating i {
    color: #fbbf24;
    transition: transform 0.2s;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
}

.review-form .form-group {
    margin-bottom: 1rem;
}

.review-form .form-label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.review-form .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.review-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.review-form .form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 0;
}

.star-rating .star {
    font-size: 1.75rem;
    color: var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f59e0b;
    transform: scale(1.1);
}

/* Page Section - SPA Pages */
.page-section {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.spa-back-link {
    margin-bottom: 1.5rem;
}

.spa-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.spa-back-link a:hover {
    background: var(--color-bg);
}

.content-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .content-card {
        padding: 1.5rem;
    }
}

.content-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.content-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.content-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card ul, .content-card ol {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

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

.content-card strong {
    color: var(--color-text);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    width: 40px;
    text-align: center;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    margin-top: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* News Items */
.news-item {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-primary);
}

.news-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-text);
}

.news-item p {
    margin: 0;
}

/* SPA Styles removed - using full page view */

/* ==================== SEPET SAYFASI ==================== */
.cart-page {
    min-height: calc(100vh - 150px);
    padding: 2rem 0;
    background: var(--color-bg);
}

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

.cart-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.cart-header .back-link:hover {
    color: var(--color-primary);
}

.cart-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.cart-header p {
    color: var(--color-text-light);
}

.success-notification {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #059669;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.success-notification.show {
    display: flex;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.cart-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.cart-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-card-header .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.cart-card-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.search-box button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border: none;
    border-radius: 0.375rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.search-box button:hover {
    background: var(--color-primary-hover);
}

.user-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-light);
}

.user-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* User Found Card */
.user-found-card {
    background: var(--color-bg);
    border-radius: 0.75rem;
    padding: 1rem;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    object-fit: cover;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.user-nickname {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 0.5rem;
}

.user-stats .stat-item {
    text-align: center;
}

.user-stats .stat-label {
    font-size: 0.65rem;
    color: var(--color-text-light);
}

.user-stats .stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Order Summary */
.order-card {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0.5rem;
}

.delete-btn:hover {
    color: var(--color-primary);
}

.order-summary-box {
    background: var(--color-bg);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.tiktok-logo-summary {
    display: block;
    margin: 0 auto 1rem;
    width: 80px;
    height: auto;
}

.jeton-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.coin-icon-small {
    width: 28px;
    height: 28px;
}

.bonus-text {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-note {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}


/* SEO Content Section */
.seo-content {
    background: var(--color-white);
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .seo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.seo-article {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.seo-article:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.seo-article h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.seo-article p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-content {
    background: var(--color-white);
    padding: 3rem 0;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 2rem 0 1rem;
}

.blog-article p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-article a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-article a:hover {
    text-decoration: underline;
}

.blog-cta {
    background: linear-gradient(135deg, var(--color-bg) 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-cta .btn {
    display: inline-block;
}

/* Blog List */
.blog-list {
    padding: 3rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.blog-card h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

.blog-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Mobile Only Elements */
.mobile-only {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-only {
        display: block;
    }
    
    a.mobile-only {
        display: block;
    }
}

/* ========== LIVE PURCHASES STYLES ========== */

/* Bildirim Kutusu - Canlı Tasarım */
.live-neon-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 50%, #ffe4e6 100%);
    padding: 2rem 1.5rem;
    border-top: 3px solid #ef4444;
    border-bottom: 3px solid #ef4444;
    position: relative;
    overflow: hidden;
}

.live-neon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.live-neon-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 600px;
}

.live-neon-header {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: headerPulse 2s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
        transform: scale(1.02);
    }
}

.neon-dot {
    display: none;
}

.neon-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.neon-title::before {
    content: "\f0a1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    animation: megaphoneShake 1.5s ease-in-out infinite;
}

@keyframes megaphoneShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.live-neon-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    border: 2px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1rem;
    min-width: 400px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.live-neon-list .live-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #fff5f5 0%, #ffffff 100%);
    border: 1px solid #fee2e2;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.live-neon-list .live-item:hover {
    background: linear-gradient(90deg, #fef2f2 0%, #fff5f5 100%);
    transform: translateX(5px);
    border-color: #fecaca;
}

.live-neon-list .live-item:first-child {
    animation: newNotification 2.5s ease-in-out;
    border-color: #ef4444;
    background: linear-gradient(90deg, #fee2e2 0%, #fff5f5 100%);
}

@keyframes newNotification {
    0%, 15%, 30%, 45%, 60% {
        background: linear-gradient(90deg, #fecaca 0%, #fee2e2 100%);
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
        transform: scale(1.02);
    }
    7.5%, 22.5%, 37.5%, 52.5%, 75%, 100% {
        background: linear-gradient(90deg, #fee2e2 0%, #fff5f5 100%);
        box-shadow: none;
        transform: scale(1);
    }
}

@keyframes slideInNotif {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-neon-list .live-item::before {
    display: none;
}

.live-neon-list .live-item::after {
    content: "\f0f3";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: auto;
    color: #ef4444;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
}

.live-neon-list .live-item .live-user {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-neon-list .live-item .status-dot {
    display: none;
}

.live-neon-list .live-item span {
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 500;
}

.live-neon-list .live-item strong {
    color: #dc2626;
    font-weight: 700;
}

/* Empty state */
.live-neon-list:empty::before {
    content: "Henüz bildirim yok";
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 1rem;
    text-align: center;
}

/* Hide old styles */
.live-ticker {
    display: none !important;
}

.live-purchases {
    display: none !important;
}

/* Full Width Layout - Tüm sayfa */
.container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Header full width */
.header {
    width: 100%;
}

.header .container {
    max-width: 100% !important;
}

.header-content {
    max-width: 100% !important;
    width: 100% !important;
}

/* Hero full width */
.hero {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero .container {
    max-width: 100% !important;
    width: 100% !important;
}

.hero-content {
    display: block !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
}

.hero-text {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    text-align: center !important;
}

.hero-title {
    text-align: center !important;
}

.hero-desc {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.hero-buttons {
    justify-content: center !important;
}

.stats {
    justify-content: center !important;
    width: 100%;
}

/* Duyuru section full width */
.live-neon-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 50%, #ffe4e6 100%);
    padding: 1.5rem 2rem;
    width: 100%;
    border-top: 3px solid #ef4444;
    border-bottom: 3px solid #ef4444;
    position: relative;
    overflow: hidden;
}

.live-neon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

.live-neon-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
}

.live-neon-header {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: headerPulse 2s ease-in-out infinite;
}

.neon-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.neon-title::before {
    content: "\f0a1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    animation: megaphoneShake 1.5s ease-in-out infinite;
}

.live-neon-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    border: 2px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1rem;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.live-neon-list .live-item {
    width: 100%;
}

/* Packages section full width */
.packages-section {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.packages-section .container {
    max-width: 100% !important;
    width: 100% !important;
}

.packages-wrapper {
    width: 100%;
}

.packages-container {
    width: 100%;
}

/* SEO content full width */
.seo-content {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.seo-content .container {
    max-width: 100% !important;
    width: 100% !important;
}

/* Footer full width */
.footer {
    width: 100%;
}

.footer .container {
    max-width: 100% !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .live-neon-section {
        padding: 1rem;
    }
    
    .live-neon-box {
        flex-direction: column;
        max-width: 100%;
        gap: 0.75rem;
    }
    
    .live-neon-header {
        padding: 0.6rem 0.85rem;
    }
    
    .neon-title {
        font-size: 0.8rem;
    }
    
    .live-neon-list {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 0.75rem;
    }
    
    .live-neon-list .live-item {
        padding: 0.5rem 0.65rem;
        font-size: 0.8rem;
    }
}
