@charset "UTF-8";

/* ==========================================================================
   GLOBAL VARIABLES
   ========================================================================== */
:root {
    --papel-yellow: #D5FF40;
    --papel-dark: #0A0A0A;
    --papel-darker: #000000;
    --papel-light: #F8F9FA;
    --papel-gray: #71717A;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--papel-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Sayfalara özel body arka planları */
body.bg-light-gray {
    background-color: #FAFAFA;
}

body.bg-dark-theme {
    background-color: #0A0A0A;
    color: #fff;
}

/* ==========================================================================
   NAVBAR (LIGHT THEME - DEFAULT)
   ========================================================================== */
.navbar {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

/* Navbar Brand - Logo */
.navbar-brand {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--papel-darker);
    letter-spacing: -1.5px;
}

.navbar-brand span {
    color: var(--papel-yellow);
    -webkit-text-stroke: 1px var(--papel-darker);
}

/* Modern Navbar Linkleri */
.nav-link {
    font-weight: 600;
    color: var(--papel-gray);
    margin: 0 12px;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--papel-darker);
}

/* Özel Butonlar */
.btn-login {
    font-weight: 700;
    border: 2px solid var(--papel-dark);
    border-radius: 50px;
    padding: 8px 24px;
    color: var(--papel-dark);
    transition: 0.3s;
}

.btn-login:hover {
    background-color: var(--papel-dark);
    color: #fff;
}

.btn-register {
    background-color: var(--papel-yellow);
    color: var(--papel-darker);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    border: none;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: #c4f020;
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR (DARK THEME)
   ========================================================================== */
.navbar-dark-theme {
    background: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark-theme .navbar-brand {
    color: #fff !important;
}

.navbar-dark-theme .navbar-brand span {
    -webkit-text-stroke: 0;
    color: var(--papel-yellow);
}

.navbar-dark-theme .nav-link {
    color: #aaa;
}

.navbar-dark-theme .nav-link:hover,
.navbar-dark-theme .nav-link.active {
    color: #fff;
}

.navbar-dark-theme .btn-outline-dark {
    color: #fff;
    border-color: #fff;
}

.navbar-dark-theme .btn-outline-dark:hover {
    background-color: #fff;
    color: #000;
}

.navbar-dark-theme .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-dark-theme .btn-login {
    color: #fff;
    border-color: #fff;
}

.navbar-dark-theme .btn-login:hover {
    background-color: #fff;
    color: #000;
}

/* ==========================================================================
   MEGA MENU (GLOBAL)
   ========================================================================== */
.navbar .navbar-nav .nav-item.mega-menu {
    position: static;
}

.navbar .dropdown-menu.mega-dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem 0;
    margin-top: -1px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
    .navbar .nav-item.mega-menu:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s forwards;
    }

    .navbar .dropdown-menu.mega-dropdown-menu {
        display: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-col-title {
    color: #D5FF40;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.mega-link {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.mega-link i {
    width: 28px;
    color: #555;
    transition: 0.3s;
    font-size: 1.1rem;
}

.mega-link:hover,
.mega-link.text-dark {
    color: #fff !important;
    transform: translateX(5px);
}

.mega-link.text-dark i {
    color: #D5FF40;
}

.mega-link:hover i {
    color: #D5FF40;
}

.mega-promo {
    background: linear-gradient(135deg, rgba(213, 255, 64, 0.05), transparent);
    border: 1px solid rgba(213, 255, 64, 0.1);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-promo:hover {
    background: linear-gradient(135deg, rgba(213, 255, 64, 0.1), transparent);
    border-color: rgba(213, 255, 64, 0.3);
}


/* ==========================================================================
   FOOTER (GLOBAL)
   ========================================================================== */
footer {
    background-color: #050505;
    color: #a1a1aa;
    padding: 80px 0 40px;
    border-top: 1px solid #1f1f22;
}

footer .text-muted {
    color: #9a9a9f !important;
}

footer .footer-brand {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

footer .footer-brand span {
    color: var(--papel-yellow);
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

footer ul li a:hover {
    color: white;
}

/* --- Page: index.html --- */
:root {
    --papel-yellow: #D5FF40;
    /* Parazum'in karakteristik neon sarı/yeşil rengi */
    --papel-dark: #0A0A0A;
    --papel-darker: #000000;
    --papel-light: #F8F9FA;
    --papel-gray: #71717A;
}


/* Navbar Tasarımı */


/* Hero Section (Ana Ekran) */
.hero-section {
    padding: 120px 0 80px;
    background: #fcfcfc;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--papel-gray);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
}

/* Pure CSS Phone Mockup (Sıfır Görsel) */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: var(--papel-dark);
    border-radius: 45px;
    border: 12px solid #1e1e1e;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    color: white;
    overflow: hidden;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(0.3deg);
    }

    50% {
        transform: translateY(-15px) rotate(0deg);
    }

    75% {
        transform: translateY(-8px) rotate(-0.3deg);
    }
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 30px;
    background: #1e1e1e;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

.mockup-header {
    padding: 50px 20px 20px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
}

.mockup-balance {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.mockup-body {
    padding: 20px;
    flex: 1;
    background-color: #000;
}

.mockup-btn {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    width: 48%;
    cursor: pointer;
    transition: 0.2s;
}

.mockup-btn:hover {
    background-color: #2a2a2a;
}

/* Özellikler Kartları */
.features-section {
    padding: 100px 0;
    background-color: var(--papel-light);
}

.feature-box {
    padding: 40px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--papel-dark);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--papel-yellow);
}

.feature-box h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--papel-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Kurumsal / Koyu Bölüm */
.dark-section {
    background-color: var(--papel-darker);
    color: white;
    padding: 120px 0;
}

.dark-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}

/* Kredi Kartı CSS Mockup (Sıfır Görsel) */
.cc-mockup {
    width: 100%;
    max-width: 380px;
    height: 240px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.cc-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.cc-metal {
    background: linear-gradient(135deg, #2b2b2b, #737373, #1a1a1a);
    border: 1px solid #555;
}

.cc-gold {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    border: 1px solid #d4af37;
    transform: rotate(5deg);
    margin-top: -100px;
    margin-left: 50px;
    z-index: 2;
}

.cc-gold:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 5;
}

/* Footer */


@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .cc-gold {
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        transform: rotate(0);
    }

    .cc-mockup {
        transform: rotate(0);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }
}

/* Mega Menu */
@media (min-width: 992px) {

    .navbar .nav-item.mega-menu:hover .dropdown-menu,
    .navbar .nav-item.mega-menu .dropdown-menu:hover {
        display: block;
        animation: fadeInDown 0.3s forwards;
    }

    .navbar .dropdown-menu.mega-dropdown-menu {
        display: none;
    }
}







/* 3D CAROUSEL ANIMATION CSS */
.scene {
    width: 100%;
    height: 400px;
    perspective: 2000px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media(min-width: 992px) {
    .scene {
        height: 500px;
    }
}

.fog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, transparent 20%, transparent 80%, #fff 100%);
    pointer-events: none;
    z-index: 100;
}

.carousel-wrapper {
    transform-style: preserve-3d;
    /* Ekranın iyice sol altından girip yukarı doğru kayan bir görüntü */
    transform: scale(0.65) translate(-75%, -20%) rotateX(-12deg) rotateZ(5deg);
}

@media(min-width: 992px) {
    .carousel-wrapper {
        transform: scale(0.45) translate(-80%, -40%) rotateX(-12deg) rotateZ(5deg);
    }
}

.carousel {
    position: relative;
    transform-style: preserve-3d;
    animation: spinCarousel 30s linear infinite;
}

@keyframes spinCarousel {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-360deg);
    }
}

.p-card {
    position: absolute;
    width: 280px;
    height: 175px;
    left: -140px;
    top: -87.5px;
    transform-style: preserve-3d;
}

@media(min-width: 992px) {
    .p-card {
        width: 320px;
        height: 200px;
        left: -160px;
        top: -100px;
    }
}

.card-front,
.card-back {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.card-back {
    transform: rotateY(180deg);
}

.card-front {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

@media(min-width: 992px) {
    .card-front {
        padding: 25px;
    }
}

.card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 40%, transparent 50%);
    pointer-events: none;
}

.theme-dark .card-front {
    background: linear-gradient(135deg, #2b2b2b, #050505);
    color: white;
}

.theme-dark .card-back {
    background: linear-gradient(135deg, #1a1a1a, #000);
}

.theme-grey .card-front {
    background: linear-gradient(135deg, #555555, #222222);
    color: white;
}

.theme-grey .card-back {
    background: linear-gradient(135deg, #333333, #111);
}

.theme-silver .card-front {
    background: linear-gradient(135deg, #f5f5f7, #c1c1c8);
    color: black;
    border-color: rgba(0, 0, 0, 0.25);
}

.theme-silver .card-back {
    background: linear-gradient(135deg, #d4d4d8, #a1a1aa);
    border-color: rgba(0, 0, 0, 0.1);
}

.theme-debit .card-front {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.theme-debit .card-back {
    background: linear-gradient(135deg, #152b53, #1e3a6d);
}

.theme-steel .card-front {
    background: linear-gradient(135deg, #e0e0e0, #8e9eab);
    color: black;
    border-color: rgba(255, 255, 255, 0.4);
}

.theme-steel .card-back {
    background: linear-gradient(135deg, #c0c0c0, #7a8b99);
}

.theme-dark .card-front::before,
.theme-grey .card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 8px 8px;
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.emv-chip {
    width: 38px;
    height: 28px;
    background: linear-gradient(135deg, #e6c27a, #c09d51);
    border-radius: 6px;
    position: relative;
    border: 1px solid #997a3d;
}

@media(min-width: 992px) {
    .emv-chip {
        width: 44px;
        height: 34px;
    }
}

.emv-chip::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.contactless-icon {
    font-size: 20px;
    opacity: 0.6;
    transform: rotate(90deg);
    color: inherit;
}

@media(min-width: 992px) {
    .contactless-icon {
        font-size: 24px;
    }
}

.card-middle {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.actual-logo {
    max-width: 120px;
    max-height: 35px;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}

@media(min-width: 992px) {
    .actual-logo {
        max-width: 150px;
        max-height: 45px;
    }
}

.logo-fallback {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    color: #0084ff;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -1px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}

@media(min-width: 992px) {
    .logo-fallback {
        font-size: 38px;
        letter-spacing: -1.5px;
    }
}

.theme-silver .logo-fallback,
.theme-steel .logo-fallback {
    filter: drop-shadow(0px 1px 2px rgba(255, 255, 255, 0.8));
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.circles {
    display: flex;
}

.circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

@media(min-width: 992px) {
    .circle {
        width: 30px;
        height: 30px;
    }
}

.c-red {
    background: rgba(235, 0, 27, 0.9);
    margin-right: -10px;
    z-index: 2;
}

.c-yellow {
    background: rgba(247, 158, 27, 0.9);
    z-index: 1;
}

/* --- Page: acik-bankacilik.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
    --p-gray: #71717A;
}





.ob-hero {
    padding: 120px 0;
    background: var(--papel-dark);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ob-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 255, 64, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

/* CSS Banka Bağlantı Animasyonu */
.bank-network {
    position: relative;
    width: 320px;
    height: 320px;
    z-index: 2;
    margin: 0 auto;
}

.bank-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.15);
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.center-papel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--papel-yellow);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    box-shadow: 0 0 50px rgba(213, 255, 64, 0.4);
    z-index: 10;
}

.bank-node {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(34,34,34,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.bank-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    color: #ff3b30;
}

.bank-2 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
    color: #007aff;
}

.bank-3 {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation-delay: 2s;
    color: #34c759;
}

.bank-4 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation-delay: 3s;
    color: #ff9500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bank-1, .bank-2 {
    animation-name: floatH;
}

@keyframes floatH {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.bank-3, .bank-4 {
    animation-name: floatV;
}

@keyframes floatV {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

.feature-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.feature-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--papel-dark);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: #F8F9FA;
    color: var(--papel-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

/* Mega Menu */







/* Footer */

/* --- Page: cashback.html --- */
.header {
    padding: 80px 0;
    background: #000;
    color: white;
    text-align: center;
    border-radius: 0 0 40px 40px;
}

.c-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
}

.c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #000;
}

.percent-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D5FF40;
    color: #000;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.brand-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
}

/* CSS Gradient Marka Logoları */
.brand-1 {
    background: linear-gradient(135deg, #1DB954, #127534);
}

/* Spotify vari */
.brand-2 {
    background: linear-gradient(135deg, #E50914, #85040a);
}

/* Netflix vari */
.brand-3 {
    background: linear-gradient(135deg, #00704A, #003020);
}

/* Kahve vari */
.brand-4 {
    background: linear-gradient(135deg, #FF9900, #b86e00);
}

/* E-ticaret vari */
/* Mega Menu */







/* Footer */

/* --- Page: cuzdan.html --- */
:root {
    --papel-yellow: #D5FF40;
    --papel-dark: #0A0A0A;
}


.wallet-hero {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* CSS Cüzdan UI Çizimi */
.wallet-mockup {
    width: 100%;
    max-width: 320px;
    background: #000;
    border-radius: 30px;
    padding: 25px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 8px solid #1a1a1a;
}

.w-balance {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.w-balance span {
    font-size: 14px;
    color: #888;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.w-balance h2 {
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin: 0;
}

.w-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

.w-btn {
    flex: 1;
    background: #222;
    color: white;
    border-radius: 16px;
    padding: 15px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.w-btn:hover {
    background: #333;
}

.w-btn i {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.w-btn.primary {
    background: var(--papel-yellow);
    color: #000;
}

.w-btn.primary:hover {
    background: #c4f020;
}

.bill-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bill-card i {
    color: #ffbd2e;
    font-size: 20px;
}

.bill-info {
    color: white;
    text-align: left;
    margin-left: 10px;
    flex: 1;
}

.bill-info h6 {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
}

.bill-info small {
    color: #888;
    font-size: 11px;
}

.bill-amount {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.feature-box {
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    background: #fff;
}

.feature-box:hover {
    border-color: var(--papel-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

/* Mega Menu */







/* Footer */

/* --- Page: firsatlar-qr.html --- */
/* CSS Radar Animasyonu */
.radar {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #111, #1a1a1a);
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 50%;
    background: conic-gradient(from 0deg, transparent 70deg, rgba(213, 255, 64, 0.6) 90deg);
    transform-origin: 0% 100%;
    animation: sweep 3s linear infinite;
}

@keyframes sweep {
    to {
        transform: rotate(360deg);
    }
}

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #D5FF40;
    border-radius: 50%;
    box-shadow: 0 0 20px #D5FF40;
    z-index: 5;
}

.pin {
    position: absolute;
    background: #fff;
    border: 1px solid #eee;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 6;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pop 2s infinite alternate;
}

.p-badge {
    background: #000;
    color: #D5FF40;
    padding: 2px 6px;
    border-radius: 6px;
}

.pin-1 {
    top: 25%;
    left: 15%;
}

.pin-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.qr-box {
    background: #fff;
    border: 2px dashed #ccc;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.qr-icon {
    font-size: 50px;
    color: #000;
}

/* Mega Menu */







/* Footer */

/* --- Page: hakkimizda.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
    --p-gray: #71717A;
}


.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--papel-yellow);
    border-radius: 2px;
}

.about-hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(213, 255, 64, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.stat-card {
    border-left: 4px solid var(--papel-yellow);
    padding-left: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--papel-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.license-box {
    background: #FAFAFA;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.license-box:hover {
    border-color: #000;
    transform: translateY(-5px);
}

/* Mega Menu */







/* Footer */

/* --- Page: iletisim.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
    --p-gray: #71717A;
}

.contact-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e4e4e7;
    height: 100%;
    transition: 0.3s;
}

.contact-box:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: var(--papel-dark);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--papel-dark);
    color: var(--papel-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

/* Mega Menu */







/* Footer */

/* --- Page: isletme-paneli.html --- */
.panel-header {
    background: #000;
    color: white;
    padding: 80px 0 120px;
    text-align: center;
}

/* CSS Panel Çizimi (Mockup) */
.panel-ui {
    max-width: 1000px;
    margin: -80px auto 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    border: 1px solid #e4e4e7;
}

.ui-sidebar {
    width: 240px;
    background: #FAFAFA;
    border-right: 1px solid #eee;
    padding: 20px;
    display: none;
}

@media (min-width: 768px) {
    .ui-sidebar {
        display: block;
    }
}

.ui-menu-item {
    padding: 12px 15px;
    border-radius: 10px;
    color: #71717A;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    cursor: pointer;
}

.ui-menu-item.active {
    background: #000;
    color: #D5FF40;
}

.ui-content {
    flex: 1;
    padding: 30px;
}

.ui-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.ui-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #eee;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
}

.ui-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
}

.status-success {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
}

.status-pending {
    background: rgba(255, 189, 46, 0.1);
    color: #ffbd2e;
}

.b2b-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.b2b-card:hover {
    border-color: #000;
    transform: translateY(-5px);
}

/* Mega Menu */







/* Footer */

/* --- Page: kampanyalar.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
    --p-gray: #71717A;
}


.campaign-header {
    background: #111;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    border-radius: 0 0 40px 40px;
}

.campaign-header h1 {
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
}

.campaign-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #000;
}

.cashback-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--papel-yellow);
    color: #000;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 2;
}

.brand-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.brand-spotify {
    background: linear-gradient(135deg, #1DB954, #0e7a33);
}

.brand-netflix {
    background: linear-gradient(135deg, #E50914, #850006);
}

.brand-coffee {
    background: linear-gradient(135deg, #00704A, #003b27);
}

.brand-steam {
    background: linear-gradient(135deg, #171a21, #000);
}

.brand-amazon {
    background: linear-gradient(135deg, #FF9900, #b36b00);
}

.brand-papel {
    background: linear-gradient(135deg, #D5FF40, #96b81a);
    color: #000 !important;
}

/* Mega Menu */







/* Footer */

/* --- Page: kariyer.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
}


.career-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.career-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.job-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.job-card:hover {
    border-color: var(--papel-yellow);
    transform: translateX(10px);
    background: #1a1a1a;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.job-tags span {
    font-size: 12px;
    background: #222;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 8px;
    color: #aaa;
}

.apply-btn {
    background: white;
    color: black;
    font-weight: 700;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.job-card:hover .apply-btn {
    background: var(--papel-yellow);
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Mega Menu */







/* Footer */

/* --- Page: kartlar.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
    --p-gray: #71717A;
}





.cards-hero {
    background: var(--papel-dark);
    color: white;
    padding: 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* 3D CSS Kart Animasyonu */
.cards-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.p-card {
    width: 280px;
    height: 170px;
    border-radius: 16px;
    position: absolute;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-card-1 {
    background: linear-gradient(135deg, #111, #222);
    transform: rotate(-15deg) translate(-60px, 20px) translateZ(-50px);
    color: white;
    z-index: 1;
}

.p-card-2 {
    background: linear-gradient(135deg, var(--papel-yellow), #AACC00);
    transform: rotate(0deg) translateZ(0);
    color: black;
    z-index: 3;
}

.p-card-3 {
    background: linear-gradient(135deg, #e6c27a, #997a3d);
    transform: rotate(15deg) translate(60px, 20px) translateZ(-50px);
    color: white;
    z-index: 2;
}

.cards-wrapper:hover .p-card-1 {
    transform: rotate(-25deg) translate(-100px, 10px) translateZ(-50px);
}

.cards-wrapper:hover .p-card-3 {
    transform: rotate(25deg) translate(100px, 10px) translateZ(-50px);
}

.feature-box {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--papel-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-c {
    width: 50px;
    height: 50px;
    background: #000;
    color: var(--papel-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Mega Menu */







/* Footer */

/* --- Page: linkle-odeme.html --- */



.hero {
    padding: 100px 0;
}

/* CSS WhatsApp Benzeri Sosyal Ticaret Mockup */
.phone-chat {
    width: 320px;
    height: 580px;
    background: #e5ddd5;
    border-radius: 40px;
    border: 12px solid #111;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.phone-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.chat-hdr {
    background: #075e54;
    color: white;
    padding: 40px 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-body {
    flex: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-image: radial-gradient(#d4cdb3 1px, transparent 0);
    background-size: 20px 20px;
}

.msg {
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.msg.left {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg.right {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.payment-link {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-link i {
    font-size: 28px;
    color: #000;
}

.success-toast {
    background: rgba(0, 0, 0, 0.8);
    color: #D5FF40;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    align-self: center;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(213, 255, 64, 0.3);
    animation: float 2s infinite alternate;
}

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

    100% {
        transform: translateY(-5px);
    }
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: #D5FF40;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Mega Menu */







/* Footer */

/* --- Page: merchant.html --- */
/* Kurumsal Renk Paleti */
:root {
    --papel-yellow: #D5FF40;
    --papel-dark: #0A0A0A;
    --papel-darker: #000000;
    --papel-light: #F8F9FA;
    --papel-gray: #71717A;
    --papel-border: #E4E4E7;
}


/* Navbar Tasarımı (Kurumsal Sekmesi Aktif) */



/* B2B Ana Giriş (Koyu Tema Hero Section) */
.hero-b2b {
    padding: 120px 0 100px;
    background-color: var(--papel-darker);
    color: white;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-b2b::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(213, 255, 64, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #A1A1AA;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

/* Saf CSS Yönetim Paneli (Dashboard Mockup) - Resimsiz Çizim */
.dashboard-mockup {
    width: 100%;
    max-width: 580px;
    height: 400px;
    background: #121212;
    border-radius: 16px;
    border: 1px solid #27272A;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.dash-header {
    height: 45px;
    background: #18181B;
    border-bottom: 1px solid #27272A;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3f3f46;
}

.dash-dot.r {
    background: #ff5f56;
}

.dash-dot.y {
    background: #ffbd2e;
}

.dash-dot.g {
    background: #27c93f;
}

.dash-body {
    display: flex;
    flex: 1;
}

.dash-sidebar {
    width: 80px;
    background: #0A0A0A;
    border-right: 1px solid #27272A;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.dash-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717A;
    font-size: 16px;
    transition: 0.3s;
}

.dash-icon.active {
    background: var(--papel-yellow);
    color: black;
}

.dash-content {
    flex: 1;
    padding: 25px;
    background: #121212;
}

.dash-card-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.dash-card {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #27272A;
    background: #18181B;
}

.dash-card-title {
    font-size: 11px;
    color: #A1A1AA;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.dash-card-value {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.dash-card-value span {
    font-size: 12px;
    color: var(--papel-yellow);
    margin-left: 5px;
}

.dash-chart-area {
    height: 140px;
    border-radius: 12px;
    border: 1px solid #27272A;
    background: #18181B;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.dash-bar {
    flex: 1;
    background: #3f3f46;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: 0.3s;
}

.dash-bar.active {
    background: var(--papel-yellow);
    box-shadow: 0 0 15px rgba(213, 255, 64, 0.2);
}

.dash-bar:hover {
    background: #52525b;
}

/* Kurumsal Çözümler (Grid) */
.solutions-section {
    padding: 100px 0;
    background-color: var(--papel-light);
}

.solution-card {
    background: white;
    border: 1px solid var(--papel-border);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    border-color: var(--papel-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--papel-darker);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--papel-yellow);
    margin-bottom: 25px;
    transition: 0.3s;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--papel-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Yazılımcılar / API Section (Kod Ekranı) */
.api-section {
    padding: 100px 0;
    background-color: var(--papel-darker);
    color: white;
}

.code-window {
    background: #1E1E1E;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.code-header {
    background: #2D2D2D;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.code-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #D4D4D4;
    overflow-x: auto;
}

.syntax-keyword {
    color: #569CD6;
}

.syntax-string {
    color: #CE9178;
}

.syntax-function {
    color: #DCDCAA;
}

.syntax-number {
    color: #B5CEA8;
}

.syntax-comment {
    color: #6A9955;
}

.integration-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin: 5px 5px 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ortak Footer */


footer a {
    color: #a1a1aa;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

footer a:hover {
    color: white;
}


@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-b2b {
        text-align: center;
        padding: 80px 0;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .dashboard-mockup {
        transform: rotate(0);
        margin-top: 40px;
    }

    .dashboard-mockup:hover {
        transform: scale(1.02);
    }
}

/* Mega Menu */







/* Footer */

/* --- Page: parazum-ile-ode.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
}


.hero {
    padding: 120px 0;
}

/* CSS Yüz Tarama (FaceID) Animasyonu */
.face-scanner {
    width: 280px;
    height: 320px;
    border: 4px dashed #333;
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
}

.face-icon {
    font-size: 120px;
    color: #444;
}

.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--papel-yellow);
    box-shadow: 0 0 20px var(--papel-yellow);
    animation: scan 2.5s infinite ease-in-out;
}

@keyframes scan {
    0% {
        top: -10px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 330px;
        opacity: 0;
    }
}

.tech-card {
    background: #111;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #222;
    transition: 0.3s;
    height: 100%;
}

.tech-card:hover {
    border-color: var(--papel-yellow);
    transform: translateY(-10px);
}

.tech-icon {
    font-size: 40px;
    color: var(--papel-yellow);
    margin-bottom: 20px;
}

/* Mega Menu */







/* Footer */

/* --- Page: sanal-pos.html --- */
:root {
    --p-yellow: #D5FF40;
    --p-dark: #0A0A0A;
}





.vpos-hero {
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Card Brands Infinite Slider */
.card-brands-slider {
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.card-brands-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    padding: 12px 8px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.brand-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.brand-item i {
    font-size: 2.2rem;
}

.brand-item span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .card-brands-slider {
        max-width: 100%;
    }
    .brand-item {
        min-width: 75px;
    }
    .brand-item i {
        font-size: 1.8rem;
    }
}

/* CSS Checkout (Ödeme Ekranı) Çizimi */
.checkout-mockup {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(213, 255, 64, 0.15);
    position: relative;
    color: #000;
    transform: perspective(1000px) rotateY(-10deg);
    transition: 0.5s;
}

.checkout-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.c-header {
    font-weight: 900;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-input {
    background: #F8F9FA;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: monospace;
    color: #71717A;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-row {
    display: flex;
    gap: 10px;
}

.c-btn {
    background: var(--papel-yellow);
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    margin-top: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.c-btn:hover {
    background: #c4f020;
    transform: translateY(-2px);
}

.c-secure {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 15px;
    font-weight: bold;
}

.b-card {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    height: 100%;
    transition: 0.3s;
}

.b-card:hover {
    border-color: var(--papel-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(213, 255, 64, 0.05);
}

.b-icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: var(--papel-yellow);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
}

/* Mega Menu */







/* Footer */

/* --- Page: sosyal-finans.html --- */
.split-hero {
    padding: 100px 0;
}

/* CSS Fiş / Adisyon Çizimi */
.receipt-mockup {
    width: 100%;
    max-width: 320px;
    background: #fff;
    color: #000;
    padding: 30px 25px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(213, 255, 64, 0.15);
    position: relative;
    border-radius: 8px;
    border-bottom: dashed 4px #ccc;
    border-top: dashed 4px #ccc;
}

.receipt-header {
    text-align: center;
    border-bottom: 2px dashed #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 600;
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 900;
    margin-top: 15px;
    border-top: 2px dashed #000;
    padding-top: 15px;
}

.split-avatars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.s-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: #D5FF40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.s-avatar span {
    font-size: 10px;
    color: white;
    font-weight: normal;
}

/* Link Generator */
.paylink-box {
    background: #111;
    border: 1px solid #333;
    padding: 15px 25px;
    border-radius: 50px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-text {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: monospace;
}

.link-text span {
    color: #888;
}

/* Mega Menu */







/* Footer */

/* --- Page: ticari-kartlar.html --- */

.corp-cards-hero {
    padding: 120px 0;
}

/* 3D Kurumsal Kart & Limit Ekranı Çizimi */
.card-stack {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.cc-item {
    width: 320px;
    height: 200px;
    border-radius: 18px;
    position: absolute;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.8);
    transition: 0.6s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cc-bg-1 {
    background: linear-gradient(135deg, #1a1a1a, #000);
    transform: rotate(-12deg) translateX(-45px) translateZ(-50px);
    z-index: 1;
}

.cc-bg-2 {
    background: linear-gradient(135deg, #D5FF40, #a8cf1b);
    color: #000;
    transform: rotate(5deg) translateX(45px) translateZ(0);
    z-index: 2;
}

.card-stack:hover .cc-bg-1 {
    transform: rotate(-18deg) translateX(-70px) translateZ(-50px);
}

.card-stack:hover .cc-bg-2 {
    transform: rotate(10deg) translateX(70px) translateZ(0);
}

.cc-limit-tag {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(213, 255, 64, 0.15);
    z-index: 5;
    width: 85%;
    border-bottom: 5px solid #D5FF40;
}

/* Mega Menu */




/* --- Page: toplu-transfer.html --- */



.bulk-hero {
    padding: 100px 0 60px;
}

/* CSS Toplu İşlem & Yükleme (Upload) Mockup */
.upload-mockup {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e4e4e7;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 16px;
    padding: 40px 20px;
    background: #fafafa;
    margin-bottom: 25px;
    transition: 0.3s;
}

.drop-zone:hover {
    border-color: #000;
    background: #f4f4f5;
}

.drop-icon {
    font-size: 50px;
    color: #217346;
    margin-bottom: 15px;
}

/* Excel Green */

.progress-ui {
    background: #111;
    border-radius: 16px;
    padding: 25px;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.p-bar-bg {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
}

.p-bar-fill {
    width: 100%;
    height: 100%;
    background: #D5FF40;
    animation: loadBulk 2.5s ease-in-out forwards;
}

@keyframes loadBulk {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.c-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.c-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Mega Menu */







/* Footer */

/* --- Page: transfer.html --- */
.hero-chat {
    padding: 100px 0;
    overflow: hidden;
}

/* CSS Chat Arayüzü Çizimi */
.chat-mockup {
    width: 100%;
    max-width: 340px;
    height: 600px;
    background: #fff;
    border-radius: 40px;
    border: 12px solid #000;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.chat-header {
    background: #FAFAFA;
    padding: 40px 20px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D5FF40;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: #F8F9FA;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.bubble {
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    max-width: 80%;
    line-height: 1.4;
}

.bubble.left {
    background: #E9ECEF;
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bubble.right {
    background: #000;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bubble-money {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 15px;
    align-self: flex-end;
    width: 85%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom-right-radius: 4px;
}

.chat-footer {
    background: #fff;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid #eee;
}

.chat-input {
    flex: 1;
    background: #F8F9FA;
    border-radius: 20px;
    height: 40px;
    border: 1px solid #eee;
    padding: 0 15px;
    color: #999;
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* Mega Menu */







/* Footer */

/* --- Page: ucretler.html --- */
.header {
    padding: 100px 0 60px;
    text-align: center;
}

.pricing-table-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 80px;
}

.table {
    margin-bottom: 0;
}

.table th {
    border-bottom: 2px solid #000;
    padding: 20px;
    font-size: 1.1rem;
}

.table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.col-papel {
    background: rgba(213, 255, 64, 0.1);
    font-weight: 800;
    color: #000;
    text-align: center;
    border-radius: 12px;
}

.col-other {
    text-align: center;
    color: #71717A;
}

/* Mega Menu */







/* Footer */

/* --- Page: yurtdisi-transfer.html --- */
.hero-global {
    padding: 120px 0;
}

/* CSS Exchange (Döviz Çevirici) Mockup */
.exchange-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 35px;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.input-group-custom {
    background: #1E1E1E;
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #2A2A2A;
}

.curr-val {
    font-size: 28px;
    font-weight: 900;
    color: white;
    background: transparent;
    border: none;
    outline: none;
    width: 60%;
}

.curr-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    background: #2A2A2A;
    padding: 5px 10px;
    border-radius: 8px;
}

.swap-icon {
    width: 40px;
    height: 40px;
    background: #D5FF40;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -15px auto;
    position: relative;
    z-index: 2;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(213, 255, 64, 0.3);
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 14px;
    color: #999;
}

.fee-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submit-btn {
    background: #D5FF40;
    color: #000;
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    margin-top: 20px;
    transition: 0.3s;
}

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

/* Mega Menu */







/* Footer */

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Hero & Phone Mockup
   ═══════════════════════════════════════════════════════ */

/* Tablet — 991px ve altı */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 270px;
        height: 550px;
        border-radius: 38px;
        border-width: 10px;
        margin-top: 30px;
    }

    .phone-mockup::before {
        width: 110px;
        height: 25px;
    }

    .mockup-balance {
        font-size: 2rem;
    }

    .mockup-header {
        padding: 42px 16px 16px;
    }

    .mockup-body {
        padding: 16px;
    }
}

/* Küçük tablet / büyük mobil — 768px ve altı */
@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-section .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }

    .hero-section .d-flex.gap-3 .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
        height: 490px;
        border-radius: 34px;
        border-width: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .phone-mockup::before {
        width: 90px;
        height: 22px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .mockup-balance {
        font-size: 1.7rem;
    }

    .mockup-header {
        padding: 38px 14px 14px;
    }

    .mockup-btn {
        padding: 10px;
        border-radius: 12px;
    }

    .mockup-btn div {
        font-size: 0.7rem !important;
    }

    .mockup-btn i {
        font-size: 1rem !important;
    }

    /* Hero alt bilgi rozeti */
    .hero-section .mt-5.d-flex.gap-4 {
        flex-direction: column;
        gap: 12px !important;
        align-items: center;
    }

    /* Features */
    .features-section {
        padding: 60px 0;
    }

    .feature-box {
        padding: 28px;
    }

    /* Dark Section */
    .dark-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .dark-section h2 {
        font-size: 2.2rem;
    }

    .dark-section .col-lg-6.position-relative {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-left: 0 !important;
    }

    .cc-mockup {
        max-width: 85vw;
        width: 300px;
        height: 190px;
        padding: 20px;
        transform: rotate(0deg) !important;
        margin: 0 auto !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .cc-gold {
        margin-top: 0 !important;
        /* margin-left: 0 !important;*/
        transform: rotate(0deg) !important;
    }

    .cc-mockup div[style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
    }

    .cc-mockup .fs-4 {
        font-size: 1.1rem !important;
    }

    .dark-section .list-unstyled h5 {
        font-size: 1rem;
    }

    .dark-section .list-unstyled span {
        font-size: 0.85rem;
    }

    .dark-section .btn-lg {
        width: 100%;
        max-width: 280px;
    }

    .dark-section p.fs-5 {
        font-size: 1rem !important;
    }
}

/* Mobil — 576px ve altı */
@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .phone-mockup {
        width: 210px;
        height: 430px;
        border-radius: 30px;
        border-width: 7px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);
        animation-name: floatMobile;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    .phone-mockup::before {
        width: 75px;
        height: 18px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .mockup-header {
        padding: 32px 12px 12px;
    }

    .mockup-header .mb-3 {
        margin-bottom: 8px !important;
    }

    .mockup-header .fw-bold.fs-5 {
        font-size: 0.9rem !important;
    }

    .mockup-header div[style*="width:35px"] {
        width: 28px !important;
        height: 28px !important;
    }

    .mockup-header .text-white-50 {
        font-size: 0.75rem !important;
    }

    .mockup-balance {
        font-size: 1.4rem;
        margin-bottom: 12px !important;
    }

    .mockup-btn {
        padding: 8px 6px;
        border-radius: 10px;
    }

    .mockup-btn div {
        font-size: 0.65rem !important;
    }

    .mockup-btn i {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }

    .mockup-body {
        padding: 12px;
    }

    .mockup-body .fw-bold.mb-3 {
        font-size: 0.85rem;
        margin-bottom: 8px !important;
    }

    .mockup-body .p-3 {
        padding: 10px !important;
    }

    .mockup-body div[style*="width:40px"] {
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
    }

    .mockup-body .fw-bold[style*="font-size: 0.9rem"] {
        font-size: 0.78rem !important;
    }

    .mockup-body small {
        font-size: 0.65rem !important;
    }

    /* Butonlar */
    .hero-section .btn-lg {
        font-size: 0.9rem;
        padding: 10px 20px !important;
    }

    /* Alt rozetler */
    .hero-section .mt-5.d-flex {
        margin-top: 24px !important;
    }

    .hero-section .fs-2 {
        font-size: 1.3rem !important;
    }

    /* Badge */
    .hero-section .badge {
        font-size: 0.75rem;
    }

    /* Features */
    .features-section {
        padding: 50px 0;
    }

    .feature-box {
        padding: 24px;
    }

    .feature-box h4 {
        font-size: 1.15rem;
    }

    /* Dark section */
    .dark-section h2 {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .dark-section p.fs-5 {
        font-size: 0.9rem !important;
    }

    .dark-section .list-unstyled h5 {
        font-size: 0.9rem;
    }

    .dark-section .list-unstyled span {
        font-size: 0.8rem;
    }

    .dark-section .list-unstyled li {
        margin-bottom: 12px !important;
    }

    .dark-section .list-unstyled .fs-4 {
        font-size: 1.1rem !important;
    }

    /* CC mockup — mobil */
    .cc-mockup {
        max-width: 80vw;
        width: 260px;
        height: 165px;
        padding: 16px;
        border-radius: 14px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

    .cc-mockup .fs-4 {
        font-size: 0.9rem !important;
    }

    .cc-mockup div[style*="font-size: 1.5rem"] {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }

    .cc-mockup div[style*="font-size: 0.8rem"] {
        font-size: 0.65rem !important;
    }

    .cc-mockup .fa-wifi {
        font-size: 0.9rem !important;
    }

    .dark-section .btn-lg {
        font-size: 0.85rem;
        padding: 10px 24px !important;
    }

    .dark-section .btn-register {
        margin: 0 auto;
        display: block;
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Navbar & Mega Menu (Mobil)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        margin: 0;
        padding: 12px 0 !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* Mega menü — mobilde accordion stili */
    .navbar .dropdown-menu.mega-dropdown-menu {
        position: static !important;
        width: 100% !important;
        background: rgba(15, 15, 15, 0.97) !important;
        border-radius: 16px !important;
        margin: 8px 0 !important;
        padding: 16px !important;
        box-shadow: none !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .navbar .dropdown-menu.mega-dropdown-menu .row {
        gap: 0;
    }

    .navbar .dropdown-menu.mega-dropdown-menu .col-lg-3 {
        padding: 0;
        margin-bottom: 12px;
    }

    .mega-col-title {
        font-size: 0.75rem;
        margin-bottom: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mega-col-title:first-child {
        border-top: none;
        padding-top: 0;
    }

    .mega-link {
        padding: 6px 0;
        font-size: 0.88rem;
    }

    .mega-link i {
        width: 24px;
        font-size: 0.95rem;
    }

    /* Promo bölümünü mobilde gizle (yer kazanmak için) */
    .navbar .dropdown-menu.mega-dropdown-menu .col-lg-6 {
        display: none;
    }

    /* Giriş/Üye Ol butonları */
    .navbar .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar .btn-login,
    .navbar .btn-register {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

/* Dark theme navbar mobil */
@media (max-width: 991px) {
    .navbar-dark-theme .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-dark-theme .nav-link {
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .navbar-dark-theme .navbar .d-flex.gap-3 {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
}