
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #E2E8F0;
    overflow-x: hidden;
}
.gradient-text {
    background: linear-gradient(90deg, #38BDF8, #A78BFA, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite;
    background-size: 200% 200%;
}
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-bg, .banner-bg {
    position: relative;
    background: #000;
}
#globe-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: 0.7; /* İsteğiniz üzerine opaklık artırıldı */
}
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.glass-effect:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.5);
}
.shimmer-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #38BDF8, #A78BFA);
    background-size: 200% auto;
    transition: background-position 0.5s;
}
.shimmer-btn:hover {
    background-position: right center;
}
.tech-card {
    background: #111827;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}
.tech-card:hover {
    border-color: #38BDF8;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}
/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.3);
    border-top: 1px solid #1f2937;
    border-bottom: 1px solid #1f2937;
}
.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    display: inline-block;
    padding: 0 2rem;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* Product Tabs */
.tab-button.active {
    color: #38BDF8;
    border-bottom-color: #38BDF8;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: grid;
}
    /* Workflow Animation */
.workflow-step {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 3rem;
}
.workflow-step:last-child {
    padding-bottom: 0;
}
.workflow-step::before {
    content: '';
    position: absolute;
    left: 24px; /* Adjust to center with the icon */
    top: 1rem;
    bottom: -1rem;
    width: 2px;
    background-color: #374151;
}
    .workflow-step:last-child::before {
    display: none;
}
.workflow-icon {
    position: absolute;
    left: 0;
    top: 0;
}
.animated-chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 2s ease-in-out forwards;
}
@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}
.pulse {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
/* Swiper Slider Styles */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    transition: transform 0.2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.2);
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-bullet-active {
    background: #38BDF8;
}

.gradient-text {
    background: linear-gradient(90deg, #38BDF8, #A78BFA, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite;
    background-size: 200% 200%;
}
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.shimmer-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #38BDF8, #A78BFA);
    background-size: 200% auto;
    transition: background-position 0.5s;
}
.shimmer-btn:hover {
    background-position: right center;
}
.tech-card {
    background: #111827;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}
.tech-card:hover {
    border-color: #38BDF8;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.feature-icon-box {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}
.news-card {
    background: #111827;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    border-color: #38BDF8;
}

/* Akordiyon Stilleri */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.accordion-button .accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-button.active .accordion-icon {
    transform: rotate(180deg);
}

.prose-custom {
    color: #9ca3af;
}
.prose-custom h2 {
    color: #fff;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}
.prose-custom h3 {
    color: #e2e8f0;
        font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.prose-custom a {
    color: #38bdf8;
    text-decoration: none;
}
.prose-custom a:hover {
    text-decoration: underline;
}

.feature-card {
    background: #111827;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
    border-color: #A78BFA;
}