/* Inter Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.6;
    background: #070C1B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.telegram-btn {
    text-decoration: none;
    color: #24A1DE;
    margin-right: 1rem;
    font-size: 14px;
    padding: 0.5rem 0;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Top Bar Styles */
.topbar {
    padding: 10px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
}

.topbar-link {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.btn-signup {
    background-color: #ff1744;
    color: #fff;
    margin-right: 10px;
}

.btn-login {
    background-color: #00b105;
    color: #fff;
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}

.language-selector img {
    width: 20px;
    margin-right: 5px;
}

/* Main Header Styles */
.main-header {
    background-color: #0c1028;
    padding: 10px 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.logo img {
    height: 80px;
}

/* Hero Banner Styles */
.swiper-slide .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem!important;
        font-weight:600;
    }

    .video-background video {
        height: 100%;
        transform: translateX(-35%);
    }

    .hero-content {
        max-width: 60%;
    }

    .hero-banner {
            height: 500px!important;
            margin-top: -10%;
    }
}

.btn-start-trading {
    background-color: #0066ff;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

.hero-image {
    max-width: 50%;
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #0066ff;
}

.hero-banner {
    background-color: #070C1B;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%; 
}

.swiper-slide {
    height: 100%;
}

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

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@media screen and (min-width: 769px) {
    .video-background video {
        position: absolute;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

}


.swiper-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .desktop-only, .desktop-header {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-header, .mobile-menu {
        display: none;
    }
}

/* Mobile Header Styles */
.mobile-header {
    background-color: #0c1028;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 40px; /* Logonun simetrik olması için sabit genişlik */
}

.mobile-header .logo img {
    height: 60px;
}

.mobile-header .logo {
    text-align: center;
}

.placeholder {
    width: 40px; /* Menü butonu ile aynı genişlikte, simetri için */
}
.mobile-actions {
    display: flex;
}

.btn-signup-mobile {
    background-color: #ff1744;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #0c1028;
    z-index: 1001;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.menu-content {
    padding: 20px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Overlay for Mobile Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Info Section Styles */
.info-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: #b7b9c8;
}

.section-text strong {
    color: #fff;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .info-section {
        padding: 40px 0;
    }
}



/* Performance Section Styles */
.performance-section {
    padding: 70px 0;
    text-align: center;
}

.performance-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.performance-section .section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #b7b9c8;
}

.section-tagline {
    font-size: 1.2rem;
    color: #b7b9c8;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 60px; /* Added space between tagline and features */
}

.performance-section .section-text strong {
    color: #fff;
    font-weight: 700;
}

/* Features Styles inside Performance Section */
.features-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left; /* Reset text alignment for features */
    margin-top: 40px;
}

.features-image {
    flex: 0 0 45%;
}

.features-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.features-list {
    flex: 0 0 45%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    color: #0066ff;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.feature-action {
    margin-top: 30px;
}

.btn-learn-more {
    background-color: #0066ff;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .features-wrapper {
        flex-direction: column;
    }
    
    .features-image, .features-list {
        flex: 0 0 100%;
    }
    
    .features-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .performance-section .section-title {
        font-size: 2rem;
    }
    
    .performance-section .section-text {
        font-size: 1rem;
    }
    
    .section-tagline {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .performance-section {
        padding: 50px 0;
    }
    
    .feature-text {
        font-size: 16px;
    }
}

/* Regulation Section Styles */
.regulation-section {
    padding: 80px 0;
    padding-bottom: 10rem;
    position: relative;
    overflow: hidden;
}

.rotation-animation-logo {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.25;
    top: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 60%, 
    rgba(0, 0, 0, 0) 100%);
mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 60%, 
    rgba(0, 0, 0, 0) 100%);
}

.img-box img {
    max-width: 100%;
    height: auto;
}

/* Animasyon için CSS */
.animat {
    opacity: 0;
}

.animat.start {
    opacity: 1;
}

.animat_fadeInBottom {
    animation: fadeInBottom 1.5s ease forwards;
}

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

/* Dönme animasyonu */
.rotation-animation-logo .img-box img {
    animation: rotate 40s linear infinite;
}

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

.regulation-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1; /* İçeriğin arka plan üzerinde görünmesi için */
}

.regulation-column {
    flex: 1;
    text-align: center;
}

.column-title {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.column-text {
    color: #b7b9c8;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .regulation-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .column-title {
        font-size: 1.8rem;
    }
    
    .regulation-section {
        padding: 60px 0;
    }
    
    .rotation-animation-logo {
        width: 100%;
    }
}

.trading-steps-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 50px 20px;
    overflow: hidden;
    text-align: center;
}

.trading-steps-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.trading-steps-section .section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    /* font-family tanımı çıkarıldı */
}

.trading-steps-section .section-title span {
    color: #a0a0a0;
}

.trading-steps-section .steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
}

@media (min-width: 769px) {
    .trading-steps-section .steps-container {
        flex-direction: row;
        gap: 40px;
    }
}

.trading-steps-section .step-box {
    display: flex;
    align-items: center;
    position: relative;
}

@media (min-width: 769px) {
    .trading-steps-section .step-box {
        width: 33.33%;
        max-width: 250px;
        margin-bottom: 0;
    }
    
    .trading-steps-section .arrow {
        display: block;
    }
}

@media (max-width: 768px) {
    .trading-steps-section .step-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .trading-steps-section .steps-container {
        flex-direction: column;
    }
}

.trading-steps-section .step-number {
    font-weight: 700;
    line-height: 1;
    color: #3a80ff;
    margin-right: 20px;
}

@media (min-width: 769px) {
    .trading-steps-section .step-number {
        font-size: 110px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .trading-steps-section .step-number {
        font-size: 60px;
        min-width: 50px;
        text-align: center;
    }
}

.trading-steps-section .step-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trading-steps-section .step-title {
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}

.trading-steps-section .step-description {
    color: #d0d0d0;
    line-height: 1.4;
    text-align: left;
}

@media (min-width: 769px) {
    .trading-steps-section .step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .trading-steps-section .step-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .trading-steps-section .step-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .trading-steps-section .step-description {
        font-size: 13px;
    }
}

.trading-steps-section .arrow {
    position: absolute;
    top: 60px;
    right: -30px;
    font-size: 24px;
    color: #3a80ff;
}

@media (max-width: 768px) {
    .trading-steps-section .arrow {
        display: none;
    }
}

.trading-steps-section .get-started-btn {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.trading-steps-section .get-started-btn:hover {
    background-color: #d42836;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .trading-steps-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .trading-steps-section .step-box {
        margin-bottom: 25px;
    }
    
    .trading-steps-section .step-number {
        font-size: 60px;
        min-width: 50px;
    }
    
    .trading-steps-section .step-title {
        font-size: 16px;
    }
    
    .trading-steps-section .step-description {
        font-size: 13px;
    }
    
    .trading-steps-section .arrow {
        display: none;
    }
    
    .trading-steps-section .step-number {
        font-size: 80px;
    }
}

.trading-footer {
    background-color: #0a1123;
    color: white;
    padding: 40px 20px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sol bölüm - Trading Widget */
.footer-widget-area {
    flex: 1;
    min-height: 250px;
    padding-right: 20px;
}

/* Orta bölüm - Dikey menü */
.footer-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.footer-menu-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-menu-item {
    margin-bottom: 12px;
}

.footer-menu-link {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-menu-link:hover {
    color: #3a80ff;
}

/* Sağ bölüm - Funding Methods */
.footer-funding {
    flex: 1;
    padding-left: 20px;
}

.funding-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 200px;
}

.payment-method {
    background-color: #1a253b;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-method img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-widget-area, .footer-menu, .footer-funding {
        width: 100%;
        padding: 20px 0;
        border: none;
    }
    
    .footer-funding {
        border-bottom: none;
    }
    
    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}

.risk-legal-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0a1123;
    color: #a0a0a5;
    font-size: 12px;
    line-height: 1.5;
}

.risk-legal-container h4 {
    color: #d9d9d9;
    margin: 15px 0 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.risk-legal-container p {
    margin-bottom: 15px;
}

.legal-link {
    color: #3a80ff;
    text-decoration: none;
}

.legal-link:hover {
    text-decoration: underline;
}

.risk-warning, .regional-restrictions, .legal-information {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .risk-legal-container {
        font-size: 11px;
    }
    
    .risk-legal-container h4 {
        font-size: 13px;
    }
}

/* Page Banner Styles - Genel kullanım için tasarlandı */
.page-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #0a1542; /* Koyu mavi arka plan */
}

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

.page-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görüntünün kırpılmadan kaplandığından emin olur */
}

.page-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 140px; /* Banner içeriğini dikey konumlandırma */
}

.page-banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.page-banner-subtitle {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-banner {
        height: 350px;
    }
    
    .page-banner-content {
        padding-top: 120px;
    }
    
    .page-banner-title {
        font-size: 2.8rem;
    }
    
    .page-banner-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .page-banner {
        height: 300px;
    }
    
    .page-banner-content {
        padding-top: 100px;
    }
    
    .page-banner-title {
        font-size: 2.2rem;
    }
    
    .page-banner-subtitle {
        font-size: 1.1rem;
    }
}

button {
    font-family: unset!important;
}