/* =================================
   FONT TANIMLAMALARI
   ================================= */
/* Google Fonts'tan Tektur fontunu yüklüyoruz (Medium = 500) */
@import url('https://fonts.googleapis.com/css2?family=Tektur:wght@500&display=swap');

/* Proxima Nova fontu için yerel tanımlamalar (Stil rehberinden) */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://litmus.com/fonts/Emails/proximanova-regular-webfont.woff') format('woff');
    font-weight: 400; /* Regular */
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://litmus.com/fonts/Emails/proximanova-bold-webfont.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}

/* =================================
   STİL REHBERİ DEĞİŞKENLERİ
   ================================= */
:root {
    --primary-bg: #021526;
    --secondary-bg: #01233f;
    --accent-color: #1BF264;
    --text-color: #FFFFFF;
    --border-color: #6b7593;
    /* Font ailelerini değişken olarak atıyoruz */
    --font-heading: 'Tektur', sans-serif;
    --font-body: 'Proxima Nova', sans-serif;
}

/* =================================
   TEMEL SAYFA STİLLERİ
   ================================= */
body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-body); /* Varsayılan font Proxima Nova */
    font-weight: 400; /* Regular */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading); /* Başlık fontu Tektur */
    font-weight: 500; /* Medium */
}


.ms-auto-handler{
    margin-left: auto !important;
    margin-bottom: 0rem !important;
}

.ms-handler{
    margin-left: 0.5rem !important;
}

/* =================================
   HEADER BÖLÜMÜ
   ================================= */
.site-header {
    background-color: var(--secondary-bg);
    box-shadow: 0px 5px 20px rgba(2, 21, 38, 0.5);
    padding: 10px 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500; /* Proxima Nova Medium */
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.navbar-toggler {
    border-color: rgba(27, 242, 100, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231bf264' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header Login Butonu */
.btn-login {
    font-family: var(--font-heading); /* Buton fontu Tektur */
    font-weight: 500; /* Medium */
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    padding: 8px 25px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase; /* Görseldeki gibi büyük harf */
}

.btn-login:hover {
    color: var(--primary-bg);
    box-shadow: 0 0 15px var(--accent-color);
    transform: translateY(-2px);
}


/* =================================
   HERO BÖLÜMÜ
   ================================= */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(27, 242, 100, 0.1), var(--primary-bg) 45%);
}

.hero-logo {
    max-width: 250px;
}

.hero-title {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 400; /* Proxima Nova Regular */
    line-height: 1.5;
}

.hero-title strong {
    font-weight: 700; /* Proxima Nova Bold */
}

/* APP STORE BUTONLARI */
.btn-app-store {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-app-store:hover {
    border-color: var(--accent-color);
    background-color: rgba(27, 242, 100, 0.1);
    color: var(--text-color);
    transform: translateY(-2px);
}

.btn-app-store i {
    font-size: 2em;
}

.btn-app-store .btn-text {
    margin-left: 12px;
    text-align: left;
}

.btn-app-store .btn-text-small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.1;
    display: block;
}

.btn-app-store .btn-text-large {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700; /* Proxima Nova Bold */
    line-height: 1.1;
    display: block;
}


/* =================================
   NEXT-GEN WALLET BÖLÜMÜ
   ================================= */
.next-gen-wallet-section {
    padding: 100px 0;
    overflow: hidden;
}

.wallet-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 500px;
    height: 100%;
    padding-left: 10%;
}

.wallet-content .section-title {
    font-size: 3.5rem; /* 56px */
    line-height: 1.2;
    font-weight: 500; /* Tektur Medium */
}

.wallet-content .text-accent {
    color: var(--accent-color);
}

.wallet-content .section-description {
    font-size: 1rem; /* 16px */
    color: #aeb0af; /* Açık gri tonu */
    max-width: 450px;
    line-height: 1.6;
}

/* Yeni Kayıt Ol Butonu Stili (Outline) */
.btn-register-outline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    padding: 12px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-register-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 0 15px var(--accent-color);
}

/* App Store Butonları için Koyu Tema Varyasyonu */
.btn-app-store.btn-app-store-dark {
    background-color: var(--secondary-bg);
    border-color: var(--border-color);
}

.btn-app-store.btn-app-store-dark:hover {
    border-color: var(--accent-color);
    background-color: var(--secondary-bg); /* Hover'da arka plan değişmiyor */
}

/* Bilgi Etiketleri */
.info-badges-wrapper {
    gap: 10px; /* Etiketler arası boşluk */
    max-width: 60%;
    justify-content: space-between;
}

.info-badge {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

/* İstatistik Kartı */
.stats-card {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 15px; /* Proje genelindeki köşe yuvarlaklığı */
    max-width: 330px;
    position: absolute;
    bottom: 0px;
    right: -5%;
}

.wallet-app-btn{
    max-width: 60%;
}

.stats-card .stats-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.stats-card .stats-title .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
}

.stats-card .stat-item {
    display: flex;
    align-items: center;
}

.stats-card .stat-item:not(:last-child) {
    margin-bottom: 20px;
}

.stats-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* 40px */
    font-weight: 500;
    color: var(--text-color);
    min-width: 90px;
}

.stats-card .stat-text {
    font-family: var(--font-body);
    font-size: 0.9rem; /* 14px */
    color: #aeb0af;
    line-height: 1.5;
}

/* Mobil Cihazlar İçin Ayarlamalar */
@media (max-width: 991px) {
    .next-gen-wallet-section {
        text-align: center;
    }
    .wallet-content .section-description {
        margin-left: auto;
        margin-right: auto;
    }
    .action-buttons,
    .info-badges-wrapper {
        justify-content: center;
    }
    .stats-card {
        margin-left: auto;
        margin-right: auto;
        text-align: left; /* Kart içeriği sola hizalı kalsın */
    }
}



/* =================================
   DECENTRALIZED FUTURE BÖLÜMÜ
   ================================= */
.decentralized-future-section {
    padding: 100px 0;
}

/* Üst Başlık Alanı */
.pre-title {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 700; /* Proxima Nova Bold */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-main-title {
    font-size: 3rem; /* 48px */
    font-weight: 500; /* Tektur Medium */
}

.decentralized-future-section .section-description {
    max-width: 600px;
    color: #aeb0af;
}

/* Sol Sütun: İşlem Paneli */
.transactions-panel {
    border-radius: 24px;
    padding: 15px;
    height: 100%;
}

.transactions-content {
    background-color: transparent; /* Arka planı transparan yaptık */
    padding: 15px;
    border-radius: 12px;
    height: 100%;
}

.panel-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.date-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #aeb0af;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(107, 117, 147, 0.3); /* --border-color'ın daha hafifi */
}
.transaction-item:last-of-type {
    border-bottom: none;
}

.transaction-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.transaction-details p {
    margin: 0;
    line-height: 1.3;
}
.transaction-details .item-name {
    font-weight: 700;
}
.transaction-details .item-subtext {
    font-size: 0.9rem;
    color: #aeb0af;
}

.transaction-amount {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
}

/* Sağ Sütun: Finansal Araçlar */
.financial-tools-content {
    padding-top: 20px;
}

.content-title {
    font-size: 2rem; /* 32px */
    font-weight: 500; /* Tektur Medium */
    margin-bottom: 1rem;
}

.content-description {
    color: #aeb0af;
    margin-bottom: 1.5rem;
}


.feature-box {
    padding-left: 15px; /* Sadece sola padding vererek hizalama */
    height: 170px;
    align-content: center;
}

.feature-box.highlight-border {
    border: 2px solid #D90429; /* Görseldeki kırmızı vurgu */
    padding: 25px;
    border-radius: 15px;
}

.dot-wrapper {
    width: 52px;
    height: 52px;
    background-color: #01233f;
    align-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.feature-dot {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto;
    align-content: center;
}

.feature-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: #aeb0af;
    line-height: 1.6;
}

.btn-register-filled {
    font-family: var(--font-heading);
    font-weight: 500;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-register-filled:hover {
    color: var(--primary-bg);
    box-shadow: 0 0 15px var(--accent-color);
}




/* =================================
   DIGITAL ASSETS BÖLÜMÜ
   ================================= */
.digital-assets-section {
    padding: 100px 0;
    overflow: hidden;
}

.asset-content {
    max-width: 100%;
}
/* Mobil için merkezleme */
@media (max-width: 991px) {
    .asset-content {
        margin: 0 auto;
    }
}

.asset-title {
    font-size: 3rem; /* 48px */
    font-weight: 500; /* Tektur Medium */
    line-height: 1.3;
}

.asset-description {
    color: #aeb0af;
    line-height: 1.6;
}

/* Sağ Sütun: Swap Paneli */
.swap-panel-wrapper {
    border-radius: 24px;
    padding: 20px;
    position: relative;
    background-color: transparent;
}

.swap-module {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.module-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.module-balance {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #aeb0af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.token-info {
    display: flex;
    align-items: center;
}

.token-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.token-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
}

.token-name i {
    font-size: 0.7rem;
    margin-left: 8px;
    opacity: 0.7;
}

.token-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* 40px */
    font-weight: 500;
    color: var(--text-color);
}

/* Ayırıcı Çizgi ve Daire */
.swap-separator {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.separator-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--primary-bg); /* Arka plan rengi ile aynı */
    z-index: 2;
    position: relative;
}




/* =================================
   OPPORTUNITIES BÖLÜMÜ (DOĞRU VERSİYON)
   ================================= */
.opportunities-section {
    padding: 100px 0;
    overflow: hidden;
}

.opportunities-title {
    font-size: 2.5rem; /* 40px */
}

.opportunities-title .text-accent {
    color: var(--accent-color);
}

/* Tab İçerik Paneli */
.opportunities-content-panel {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    min-height: 500px; /* İçerik değişse bile yüksekliği sabit tutar */
    display: flex;
    align-items: center;
}

/* Tab İçerik Stilleri */
.tab-pre-title {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tab-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* 40px */
    font-weight: 500;
    margin-bottom: 20px;
}

.tab-description {
    color: #aeb0af;
    line-height: 1.6;
    max-width: 450px;
}

/* Tab Butonlarının olduğu satır */
.opportunities-tab-buttons {
    margin-top: 25px;
    border: none; /* Bootstrap'in varsayılan tab kenarlığını kaldır */
}

/* Tüm Tab Butonları İçin Ortak Stiller */
.opportunities-tab-buttons .nav-link {
    border-radius: 40px 0px 40px 0px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-color);
}

/* Register Butonu (Her zaman yeşil) */
.register-tab-button {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    text-align: center;
}
.active .register-tab-content {
    color: var(--primary-bg);
}

.register-tab-content {
    color: white;
}
.active .register-button-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 40px;
    border: 2px solid var(--primary-bg);
    border-radius: 50px;
    display: inline-block;
}

.register-button-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 40px;
    border: 2px solid #1BF264;
    border-radius: 50px;
    display: inline-block;
}
.register-subtext {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Wallet Butonları (Koyu renkli) */
.wallet-tab-button {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
}
.tab-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 242, 100, 0.1);
    color: var(--accent-color);
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.small-tab-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    transition: color 0.3s ease;
}
.small-tab-text {
    color: #aeb0af;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

/* --- AKTİF BUTON STİLİ --- */
/* Aktif olan Wallet butonu yeşil olur */
.opportunities-tab-buttons .wallet-tab-button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0px 0px 20px #1bf26499;
}
.opportunities-tab-buttons .wallet-tab-button.active .tab-icon {
    background-color: var(--primary-bg);
    color: var(--accent-color);
}
.opportunities-tab-buttons .wallet-tab-button.active .small-tab-title,
.opportunities-tab-buttons .wallet-tab-button.active .small-tab-text {
    color: var(--primary-bg);
}

/* Aktif olan Register butonu için (hafif bir gölge efekti ekleyebiliriz) */
.opportunities-tab-buttons .register-tab-button.active {
    box-shadow: 0 0 20px rgba(27, 242, 100, 0.5);
}


.tab-image-aligner{
    width: 100%;
}

/* Negative Change Styling */
.crypto-change.negative {
    background-color: rgba(220, 38, 38, 0.15);
    color: #ef4444;
}


.background-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.background-video video{
    height: 100vh;
    opacity: 0.5;
}

/* Crypto Icon Image Styling */
.crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.tab-absolute-image-aligner{
    position: absolute;
    width: 70%;
    right: -310px;
    bottom: -40px;
}


.hero-section-mini {
    height: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 70px 0px 70px 0px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-content-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}


.tab-header-enhanced {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}






/* =================================
   CRYPTO SLIDER BÖLÜMÜ (3 SATIRLI)
   ================================= */
.crypto-slider-section {
    padding: 100px 0;
    overflow-x: hidden; /* Yatay taşmayı gizle */
}

.crypto-section-title {
    font-size: 2.5rem; /* 40px */
}
.crypto-section-title .text-accent {
    color: var(--accent-color);
}

/* Animasyon Tanımı */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        /* Kartların ve kopyalarının toplam genişliğinin yarısı kadar kaydır */
        transform: translateX(-50%);
    }
}

/* Slider Satırı */
.crypto-slider-row {
    white-space: nowrap; /* Kartların alt satıra düşmesini engeller */
    /* Kenarlardaki boşlukları kaldırmak için negatif margin */
    margin-left: -50px;
    margin-right: -50px;
}

/* Kayacak Olan Şerit */
.slider-track {
    display: inline-block;
    animation: slide 40s linear infinite;
}
.slider-track.reverse {
    animation-direction: reverse;
    animation-duration: 45s; /* Hızları farklılaştırmak için */
}

/* Kripto Kartları */
.crypto-card {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px 20px;
    margin: 0 12px; /* Kartlar arası boşluk */
    width: 320px; /* Sabit genişlik */
    vertical-align: top;
}

.crypto-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}
/* Yeni Örnek Renkler */
.crypto-icon.btc { background-color: #F7931A; }
.crypto-icon.eth { background-color: #627EEA; }
.crypto-icon.avax { background-color: #E84142; }
.crypto-icon.link { background-color: #2A5ADA; }
.crypto-icon.xmr { background-color: #FF6600; }
.crypto-icon.doge { background-color: #C3A634; }
.crypto-icon.matic { background-color: #8247E5; }
.crypto-icon.bone { background-color: #cccccc; }
.crypto-icon.vet { background-color: #15BDFF; }
.crypto-icon.trx { background-color: #EB0029; }
.crypto-icon.mana { background-color: #FF4459; }
.crypto-icon.ada { background-color: #0033AD; }
.crypto-icon.sol { background-color: #9945FF; }
.crypto-icon.xrp { background-color: #23292F; }
.crypto-icon.ltc { background-color: #345D9D; }
.crypto-icon.dot { background-color: #E6007A; }
.crypto-icon.shib { background-color: #FFC107; }
.crypto-icon.bnb { background-color: #F0B90B; }

.crypto-info {
    flex-grow: 1;
    overflow: hidden;
    text-align: left;
}
.crypto-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 5px 0;
    white-space: nowrap;
}
.crypto-price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #aeb0af;
    margin: 0;
    white-space: nowrap;
}

.crypto-change {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    margin-left: 10px;
    flex-shrink: 0;
}
.crypto-change.positive {
    background-color: rgba(27, 242, 100, 0.15);
    color: var(--accent-color);
}
.crypto-change i {
    margin-right: 4px;
}




/* =================================
   POTENTIAL EARNINGS BÖLÜMÜ
   ================================= */
.crypto-invest-section {
    padding: 100px 0;
}

/* Ana Panel Stili */
.invest-panel {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px; /* Büyük yuvarlak köşe */
    padding: 50px;
    min-height: 520px;
    align-content: center;
}

/* Sol Sütun İçerik Stilleri */
.invest-content {
    max-width: 100%;
    padding-left: 4%;
}
@media (max-width: 991px) {
    .invest-content {
        margin: 0 auto; /* Mobil'de ortala */
    }
}

.invest-title {
    font-family: var(--font-heading);
    font-size: 2.8rem; /* 45px */
    font-weight: 500;
    line-height: 1.3;
}

.invest-description {
    color: #aeb0af;
    line-height: 1.6;
}

/* Panel İçindeki App Store Butonları için Özel Stil */
/* Bu butonlar, panelin arka planından daha koyu olmalı */
.btn-app-store.btn-app-store-deep {
    background-color: var(--primary-bg); /* Daha koyu arka plan */
    border-color: var(--border-color);
}

.btn-app-store.btn-app-store-deep:hover {
    border-color: var(--accent-color);
    background-color: var(--primary-bg);
}


.phone-holder{
    position: absolute;
    width: 40%;
    top: -9%;
}


/* =================================
   WHY CHOOSE US BÖLÜMÜ
   ================================= */
.choose-us-section {
    padding: 100px 0;
}

/* Özellik Kartları */
.feature-card {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%; /* Eşit yükseklik için */
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem; /* 40px */
    color: var(--text-color);
    margin-bottom: 25px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-text {
    color: #aeb0af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}



/* =================================
   FOOTER BÖLÜMÜ
   ================================= */
.site-footer {
    color: var(--text-color);
}

/* Footer CTA Alanı */
.footer-cta {
    background-color: var(--primary-bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem; /* 28px */
    font-weight: 500;
}
.cta-text {
    color: #aeb0af;
    font-size: 0.9rem;
}
.email-form-wrapper {
    display: flex;
    background-color: #fff;
    border-radius: 50px;
    padding: 8px;
}
.email-form-wrapper .form-control {
    border: none;
    background: transparent;
    box-shadow: none;
    color: #000;
}
.email-form-wrapper .form-control::placeholder {
    color: #888;
}
.btn-cta-register {
    background-color: var(--primary-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 25px;
    font-family: var(--font-body);
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn-cta-register:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

/* Ana Footer Alanı */
.main-footer {
    background-color: var(--secondary-bg);
    padding: 60px 0;
}
.footer-logo {
    max-width: 150px;
}
.footer-tagline, .social-title {
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-address, .footer-email {
    font-size: 0.9rem;
    color: #aeb0af;
    line-height: 1.6;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem; /* 18px */
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #aeb0af;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-color);
}

/* Sub-Footer Alanı */
.sub-footer {
    background-color: var(--primary-bg);
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}
.partner-logos img {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.partner-logos img:hover {
    opacity: 1;
}
.copyright-text {
    font-size: 0.9rem;
    color: #aeb0af;
    margin: 0;
}



/* =================================
   FAQ BÖLÜMÜ
   ================================= */
.faq-section {
    padding: 100px 0;
}

.faq-header-text {
    color: #aeb0af;
    line-height: 1.6;
}

/* Bootstrap Akordiyon Stillerini Ezme */
.faq-section .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-color: var(--text-color);
    --bs-accordion-active-bg: transparent;
}

.faq-section .accordion-item {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
}

.faq-section .accordion-button {
    background-color: transparent !important;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 25px;
}

/* Bootstrap ok ikonunu kaldır */
.faq-section .accordion-button::before,
.faq-section .accordion-button::after {
    background-image: none !important;
}

/* Özel + / - ikonu */
.faq-section .accordion-button::after {
    content: '+';
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 32px;
    height: 32px;
    border-radius: 50%;
    
    background-color: transparent;
    color: var(--accent-color);
    
    border: 1px solid var(--border-color);
    
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Akordiyon Açıkken İkon Stili */
.faq-section .accordion-button:not(.collapsed)::after {
    content: '−'; /* Düzgün eksi işareti */
    transform: rotate(180deg);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-bg);
}

.faq-section .accordion-body {
    color: #aeb0af;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 25px 25px 25px;
}

.mobile-display-handler{
    display: flex !important;
}




@media (min-width: 225px) and (max-width: 991px) {

    .info-badges-wrapper{
        max-width: 100%;
    }

    .wallet-content{
        padding-left: 0%;
    }

    .wallet-app-btn{
        max-width: 100%;
    }

    .mobile-display-handler{
        display: block !important;
    }

    .invest-content {
        max-width: 100%;
        padding-left: 0%;
    }

    .ms-auto-handler{
        margin-left: 0px !important;
        margin-bottom: 0.5rem !important;
    }

    .ms-handler{
        margin-left: 0px !important;
    }


}

@media (min-width: 1024px) and (max-width: 1600px) {



    .phone-holder {
    position: absolute;
    width: 30%;
    top: 483%;
}


}



/* =================================
   YENİ ANİMASYONLAR
   ================================= */

/* Hero Section Arkaplan Animasyonu */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(27, 242, 100, 0.15) 0%, transparent 50%);
    animation: rotate-gradient 20s linear infinite;
}

.hero-animated-bg::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    right: -25%;
    background: radial-gradient(circle, rgba(27, 242, 100, 0.1) 0%, transparent 60%);
    animation: rotate-gradient-reverse 15s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotate-gradient-reverse {
    0% {
        transform: rotate(360deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.15);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Floating Animation - Phones */
.phone-float {
    animation: float 6s ease-in-out infinite;
}

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

/* Floating Animation - App Store Buttons */
.floating-animation {
    display: inline-block;
    animation: floating 3s ease-in-out infinite;
}

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

/* Pulse Animation - Buttons */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(27, 242, 100, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(27, 242, 100, 0);
    }
}

/* Pulse Dot Animation */
.pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Card Tilt Effect */
.card-tilt {
    transition: transform 0.5s ease;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

/* Badge Hover Effect */
.badge-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-hover:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 242, 100, 0.4);
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.4s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Glow Effect on Hover */
.feature-card:hover .feature-icon {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(27, 242, 100, 0.8);
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(27, 242, 100, 0.8);
    }
    50% {
        text-shadow: 0 0 25px rgba(27, 242, 100, 1);
    }
}

/* Tab Button Shine Effect */
.tab-header-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-header-enhanced:hover::before {
    left: 100%;
}

/* Accordion Item Animation */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
}

/* Social Icons Rotation */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: rotate(360deg) scale(1.1);
}

/* Text Gradient Animation */
.text-accent{
    background: linear-gradient(90deg, var(--accent-color), #00ff88, var(--accent-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Crypto Card Hover Animation */
.crypto-card {
    transition: none;
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 242, 100, 0.2);
    border-color: var(--accent-color);
}

/* Icon Bounce Animation */
.crypto-icon {
    transition: transform 0.3s ease;
}

.crypto-card:hover .crypto-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

/* Stats Card Slide In */
.stats-card {
    animation: slideInRight 1s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navbar Scroll Effect */
.site-header {
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0px 5px 30px rgba(2, 21, 38, 0.8);
    background-color: rgba(1, 35, 63, 0.95);
    backdrop-filter: blur(10px);
}

/* Button Login Glow */
.btn-login:hover {
    animation: button-glow 1.5s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--accent-color);
    }
    50% {
        box-shadow: 0 0 25px var(--accent-color), 0 0 40px var(--accent-color);
    }
}

/* Register Button Wave Effect */
.btn-register-filled::before,
.btn-register-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-register-filled,
.btn-register-outline {
    position: relative;
    overflow: hidden;
}

.btn-register-filled:hover::before,
.btn-register-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* Feature Box Tilt Effect */
.feature-box {
    transition: transform 0.4s ease;
}

.feature-box:hover {
    transform: perspective(500px) rotateX(5deg);
}

/* Dot Wrapper Rotation */
.dot-wrapper {
    transition: all 0.4s ease;
}

.feature-box:hover .dot-wrapper {
    transform: rotate(180deg);
    background-color: var(--accent-color);
}

.feature-box:hover .feature-dot {
    background-color: var(--primary-bg);
}

/* Email Form Animation */
.email-form-wrapper {
    transition: all 0.3s ease;
}

.email-form-wrapper:focus-within {
    box-shadow: 0 0 20px rgba(27, 242, 100, 0.3);
    transform: scale(1.02);
}

/* Footer Links Slide Effect */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Invest Panel Background Animation */
.invest-panel {
}



@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Tab Content Fade */
.tab-pane {
    animation: fadeIn 0.5s ease;
}

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

/* Opportunities Tab Active Border Animation */
.opportunities-tab-buttons .nav-link.active {
    position: relative;
}

.opportunities-tab-buttons .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: border-flow 2s ease-in-out infinite;
}

@keyframes border-flow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Swap Panel Floating Effect */
.swap-panel-wrapper img {
    animation: float-smooth 8s ease-in-out infinite;
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) rotate(0.5deg);
    }
}

/* Transaction Panel Shimmer */
.transactions-panel img {
    position: relative;
}

.transactions-panel img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Accordion Button Smooth Expand */
.accordion-button {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(27, 242, 100, 0.1), transparent);
}

/* Counter Number Animation */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hero Logo Rotation on Hover */
.hero-logo {
    transition: transform 0.5s ease;
}

.hero-logo:hover {
    transform: rotate(360deg) scale(1.1);
}

/* Wallet Card Parallax Effect */
.wallet-card-img {
    transition: transform 0.3s ease;
}

.next-gen-wallet-section:hover .wallet-card-img {
    transform: translateX(-10px) rotateY(-5deg);
}

/* Glassmorphism Effect for Panels */
.hero-section-mini {
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.hero-section-mini:hover {
    box-shadow: 0 15px 40px rgba(27, 242, 100, 0.2);
    transform: translateY(-5px);
}

/* Scroll to Top Button (Optional - Add to HTML if needed) */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 242, 100, 0.5);
}

/* Mobile Optimizations */
@media (max-width: 991px) {
    .hero-animated-bg::before,
    .hero-animated-bg::after {
        animation-duration: 30s;
    }
    
    .phone-float {
        animation: float 4s ease-in-out infinite;
    }
    
    .floating-animation {
        animation: floating 2s ease-in-out infinite;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation (Optional) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance Optimization */
.hero-section,
.next-gen-wallet-section,
.decentralized-future-section,
.digital-assets-section,
.opportunities-section,
.crypto-slider-section,
.crypto-invest-section,
.faq-section,
.choose-us-section {
    will-change: transform;
}

/* Navbar Scroll Effect JavaScript */
/* Add this script to your HTML after Bootstrap JS */



/* =================================
   CUSTOM MODAL STYLES
   ================================= */
.custom-modal {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.custom-modal .modal-header {
    background: linear-gradient(135deg, rgba(27, 242, 100, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 30px;
}

.custom-modal .modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.custom-modal .modal-title i {
    color: var(--accent-color);
}

.custom-modal .modal-body {
    padding: 30px;
}

/* Custom Form Inputs */
.custom-input {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: var(--primary-bg);
    border-color: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 0 0 3px rgba(27, 242, 100, 0.1);
    outline: none;
}

.custom-input::placeholder {
    color: #6b7593;
}

.custom-input option {
    background-color: var(--primary-bg);
    color: var(--text-color);
}

.form-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Submit Button */
.btn-modal-submit {
    font-family: var(--font-heading);
    font-weight: 500;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-modal-submit:hover {
    background-color: #17d957;
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(27, 242, 100, 0.5);
    transform: translateY(-2px);
}

.btn-modal-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-modal-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Contact Info Section */
.contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.info-text {
    font-family: var(--font-body);
    color: #aeb0af;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.info-text i {
    color: var(--accent-color);
}

.info-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #17d957;
    text-decoration: underline;
}

/* Support Info Cards */
.support-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.info-card {
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 242, 100, 0.2);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-card strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.info-card p {
    font-family: var(--font-body);
    color: #aeb0af;
    font-size: 0.8rem;
    margin: 0;
}

/* Modal Animations */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .custom-modal .modal-body {
        padding: 20px;
    }
    
    .support-info {
        grid-template-columns: 1fr;
    }
    
    .custom-modal .modal-header {
        padding: 20px;
    }
    
    .custom-modal .modal-title {
        font-size: 1.2rem;
    }
}