/* ============================================
   KöpekbalığıNW - Modern Minecraft Server Website
   ============================================ */

:root {
    /* Color Palette */
    --primary-color: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary-color: #7c3aed;
    --accent-color: #06ffa5;
    --bg-dark: #0a0f1a;
    --bg-darker: #060a12;
    --bg-card: #111827;
    --bg-card-hover: #1a2234;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --discord-color: #5865f2;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 15, 26, 0.8) 0%, rgba(6, 10, 18, 0.95) 100%);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particles Background */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none;
    /* Mobilde gizle */
}

@media (min-width: 768px) {
    .nav-logo span {
        display: block;
    }
}

/* Kullanıcı Kredi Göstergesi */
.user-credit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 60px;
    height: 26px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.discord-btn {
    background: var(--discord-color);
    color: white;
}

.nav-link.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
}

.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
}

.hero-bg-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.hero-bg-placeholder code {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    margin-top: 10px;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-glow);
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.6);
    }
}

/* Banner Logo */
.banner-logo-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
}


.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* IP Section */
.ip-section {
    position: relative;
    margin-bottom: 40px;
}

.ip-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 500px;
    transition: all 0.3s ease;
}

.ip-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.ip-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.ip-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ip-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

#server-ip {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.copy-notification {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-notification.show {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        transform: translateX(-50%) scale(0.5);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Stats */
.stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.stat-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   Info Banner
   ============================================ */
.info-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.5rem;
    text-align: center;
    padding: 5px;
}

.icon-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.icon-placeholder code {
    font-size: 0.4rem;
    background: transparent;
}

.banner-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.banner-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.btn {
    padding: 10px 25px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Banner User Info */
.banner-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 212, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-left: auto;
}

.banner-user-info .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.banner-user-info .user-avatar img {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.banner-user-info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Sola yasla */
    padding: 15px 60px 15px 25px;
    /* İkon için sağdan boşluk */
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.store-text {
    font-size: 1.3rem;
    font-weight: 800;
}

.store-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
}

.store-btn i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* ============================================
   Featured Section
   ============================================ */
.featured-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.featured-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.02);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder p {
    margin-bottom: 10px;
}

.image-placeholder code {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    font-size: 0.9rem;
}

.image-placeholder span {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.read-more-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

/* Discord Card */
.discord-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.discord-card:hover {
    border-color: var(--discord-color);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.2);
}

.discord-card-header {
    background: var(--discord-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.discord-card-header i {
    font-size: 1.3rem;
}

.discord-card-body {
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discord-server-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.discord-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.discord-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.discord-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stat-dot.online {
    background: #3ba55c;
    box-shadow: 0 0 8px rgba(59, 165, 92, 0.5);
    animation: pulse-green 2s infinite;
}

.stat-dot.members {
    background: var(--text-muted);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(59, 165, 92, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(59, 165, 92, 0.8);
    }
}

.discord-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px;
    background: var(--discord-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-join-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

/* Hero Background Image */
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card Image */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.card-image:hover .card-img {
    transform: scale(1.05);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.about-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-secondary);
}

/* ============================================
   Rules Section
   ============================================ */
.rules-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.rules-list {
    display: grid;
    gap: 20px;
}

.rule-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.rule-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.rule-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rule-content p {
    color: var(--text-secondary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.language-selector {
    margin-top: 15px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--text-muted);
    margin-left: 10px;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--primary-color);
}

.footer-copyright .disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-powered {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-powered .highlight {
    color: var(--primary-color);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .ip-box {
        min-width: auto;
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .ip-content {
        flex-direction: column;
    }

    #server-ip {
        font-size: 0.9rem;
    }

    .stats-container {
        flex-direction: column;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-buttons {
        margin-left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-circle i {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Admin Button
   ============================================ */
.nav-link.admin-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.nav-link.admin-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
}

/* ============================================
   Store Section
   ============================================ */
.store-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, var(--bg-darker) 100%);
}

.store-header {
    text-align: center;
    margin-bottom: 40px;
}

.store-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -20px;
}

/* Store Tabs */
.store-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 15px 40px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.product-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    overflow: hidden;
}

.product-image img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-glow {
    opacity: 1;
}

.product-info {
    padding: 20px;
    flex: 1;
}

.product-header {
    margin-bottom: 15px;
}

.product-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.buy-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Credit Badge — shown next to prices */
.credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 6px;
    white-space: nowrap;
    animation: creditPulse 2s ease-in-out infinite;
}

.credit-badge i {
    font-size: 0.7rem;
}

@keyframes creditPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Discount Box — "Sonraki aylar" info card */
.discount-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.discount-box i {
    color: #10b981;
}

.discount-box .discount-price {
    color: #10b981;
    font-weight: 600;
}

.discount-box .discount-note {
    color: var(--text-secondary);
}

/* Credit Info Banner — top of store page */
.credit-info-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.credit-info-banner i {
    font-size: 1.2rem;
    color: #10b981;
}

.credit-info-banner strong {
    color: #10b981;
}

/* Payment Options in Order Modal */
.payment-option {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.payment-option input:checked~span {
    color: var(--text-primary);
}

/* IBAN Info Box */
.iban-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: var(--radius-md);
    font-family: monospace;
    font-size: 0.95rem;
    word-break: break-all;
}

/* Price subtitle in product-header */
.price-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 5px;
}

/* ============================================
   Order Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.payment-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
}

.payment-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-info p {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin: 5px 0;
}

.iban-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.file-upload:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.file-upload i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.file-upload span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.file-upload input {
    display: none;
}

.submit-order-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    border: none;
    color: var(--bg-dark);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.submit-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Notifications */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    z-index: 3000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: var(--success-color);
}

.notification.error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Store */
@media (max-width: 768px) {
    .store-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}

/* ============================================
   Modal Base Styles
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(6, 10, 18, 0.98));
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal .close {
    color: var(--text-secondary);
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal .close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ============================================
   Login & Profile Modal Styles
   ============================================ */


/* Login Button in Nav */
.login-btn {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.login-btn:hover {
    opacity: 0.8;
}

.login-btn.logged-in {
    background: var(--success-color) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Login Modal Content */
.login-modal-content {
    max-width: 420px;
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header i {
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.login-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

#loginForm .form-group {
    margin-bottom: 20px;
    text-align: left;
}

#loginForm label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

#loginForm label i {
    margin-right: 8px;
    color: var(--primary-color);
}

#loginForm input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

#loginForm input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

#loginForm input::placeholder {
    color: var(--text-muted);
}

.login-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.login-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-info {
    margin-top: 25px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.login-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.login-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.login-info code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: monospace;
}

/* Profile Modal Content */
.profile-modal-content {
    max-width: 380px;
    text-align: center;
}

.profile-header {
    margin-bottom: 25px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.profile-header h2 {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.profile-stat {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.profile-stat i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.profile-stat span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.profile-stat strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.logout-btn {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #ef4444;
    border-radius: var(--radius-md);
    color: #ef4444;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}

.logout-btn i {
    margin-right: 8px;
}

/* Responsive Login Modal */
@media (max-width: 480px) {

    .login-modal-content,
    .profile-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }


    /* ============================================
       Footer
       ============================================ */
}

/* ============================================
   Store Page Hero (magaza.html)
   ============================================ */
.store-page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    text-align: center;
}

.store-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.store-page-hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.store-page-content {
    padding: 40px 0 80px;
}

.store-page-content .store-section {
    padding: 0;
    background: transparent;
}

/* Payment Method Selector */
.payment-method-selector {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

/* Payment option radio accent */
.payment-option input[type="radio"] {
    accent-color: var(--primary-color);
}

.payment-option input[type="radio"].credit-accent {
    accent-color: #10b981;
}

.payment-option i {
    margin-right: 5px;
}

.credit-icon {
    color: #10b981;
}

/* IBAN Box Styled */
.iban-box-styled {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: var(--radius-md);
    font-family: monospace;
    font-size: 0.95rem;
    word-break: break-all;
}

.iban-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Form input styled (email field etc) */
.form-input-styled {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-styled:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Dekont label required indicator */
.required-indicator {
    color: var(--primary-color);
}

/* Credit Confirm Modal */
.credit-confirm-modal {
    max-width: 420px;
    text-align: center;
}

.credit-confirm-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 15px;
}

.credit-confirm-heading {
    margin-bottom: 10px;
}

.credit-confirm-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.credit-confirm-price-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-top: 15px;
}

.credit-confirm-price-text {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.credit-confirm-section {
    margin-bottom: 20px;
}

.credit-confirm-actions {
    display: flex;
    gap: 10px;
}

.credit-cancel-btn {
    flex: 1;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

.credit-confirm-ok-btn {
    flex: 1;
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Reject modal buttons */
.reject-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.reject-cancel-btn {
    margin: 0;
    width: auto;
    background: transparent;
}

.reject-submit-btn {
    width: auto;
    background: #ef4444;
}

/* Store redirect section */
.store-redirect-section .container {
    text-align: center;
    padding: 60px 20px;
}

.store-redirect-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.store-redirect-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Credit balance display */
.credit-balance-text {
    color: #10b981;
    font-weight: bold;
}

/* Footer Styles (Global) */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 80px;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    /* Logo boyutunu sınırla */
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}