/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: #0a0a1a;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Particle Background Animation */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #000000; /* tamamen siyah */
}


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, #f1e6b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

/* Navigation Fix for Desktop & Mobile */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, #f1e6b4 100%);
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

/* Hamburger Butonu (Mobil Menü için) */
.hamburger {
    display: none; /* Mobilde görünmesini istiyorsan media query ile aç */
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;

    /* Dokunma efekti iptali */
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent; /* Android/iOS mavi ışık önleme */
}

.hamburger:focus,
.hamburger:active {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Çubuklar */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Aktif olduğunda (X şekline dönüş) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive aktif etmek için örnek */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}



/* Responsive Menu */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.95);
        padding: 20px 0;
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    body.no-scroll {
        overflow: hidden;
    }
}


.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff 0%, #eaab5d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 700px;
    opacity: 0;
    animation: fadeInRight 1.5s ease 0.9s forwards;
}

.btn.btn-primary {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #020202;
    background-color: #f1e6b4;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #f5f5f5; /* beyaz-krem tonu */
    color: #000;
}



.about-section {
    width: 100%;
    background: #0a0a0a;
    padding: 60px 20px;
    color: white;
}

.about-box {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 40px rgba(186, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1;
    overflow: hidden;
}

#bgd {
    flex: 1 1 300px;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    width: 100%;
    background: transparent;
    border-radius: 50%;
    display: block;
    z-index: 0;
}

.about-text {
    flex: 1 1 300px;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 28px;
    color: #c2a6ff;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .about-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    #bgd {
        max-width: 240px;
        margin: 0 auto;
    }

    .about-text {
        padding: 0;
    }
}


/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(113, 255, 158, 0.92) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgb(237, 234, 222);
    line-height: 1.6;
}

/* Roadmap Section */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #000000, #cad8dc);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transition: all 1s ease;
}

.timeline-item.in-view {
    opacity: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    transform: translateX(-50px);
}

.timeline-item:nth-child(even) {
    left: 50%;
    transform: translateX(50px);
}

.timeline-item.in-view:nth-child(odd),
.timeline-item.in-view:nth-child(even) {
    transform: translateX(0);
}

.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.timeline-item:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #2256c8 0%, #ffffff 100%);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.2);
}

.timeline-item:nth-child(odd):after {
    right: -10px;
}

.timeline-item:nth-child(even):after {
    left: -10px;
}

/* Team Section */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.team-member.in-view {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 210, 255, 0.3);
    transition: all 0.5s ease;
}

.team-member:hover .member-image {
    border-color: rgba(0, 210, 255, 0.7);
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.position {
    color: #f1e6b4;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.bio {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}


/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

    .about-content {
        flex-direction: column;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
        transform: translateX(0);
    }

    .timeline-item:nth-child(odd):after,
    .timeline-item:nth-child(even):after {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image {
        display: none;
    }

    .about {
        padding: 30px;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .about {
        padding: 20px;
    }
}





/* Panel yapısı */
.dashboard-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100%;
    background: #111;
    color: white;
    padding: 24px;
    z-index: 9999;
    box-shadow: -4px 0 12px rgba(0, 255, 200, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-panel.open {
    right: 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    font-size: 20px;
    font-weight: bold;
    color: #edeade;
    margin: 0; /* başlık yukarı yapışsın */
    line-height: 1;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #edeade;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}


/* Login kutusu */
.dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 14px; /* ARALARDA BOŞLUK */
    margin-top: 20px;
}


.dashboard-form input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #2c2c2c;
    color: #fff;
    font-size: 14px;
}

.dashboard-form input::placeholder {
    color: #aaa;
}

.login-btn {
    padding: 12px;
    background: linear-gradient(90deg, #f4e0c2, #f1e6b4);
    color: #000;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transition: 0.2s ease;
    margin-top: 14px;
}

.login-btn:hover {
    background: linear-gradient(90deg, #f4e0c2, #ffffff);
}

/* Bilgi kutuları */
.dashboard-box {
    background: #1c1c1e;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.label {
    font-size: 14px;
    color: #bbb;
}

.value {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.check {
    width: 12px;
    height: 12px;
    background-color: #08c800;
    border-radius: 50%;
    animation: blink 1s infinite ease-in-out;
}

/* Animasyon tanımı */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

/* Logout butonu */
.logout-btn {
    padding: 10px;
    background-color: #ff4444;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

/* Footer Alanı */
.footer {
    background: #0a0d1a;
    padding: 60px 20px 30px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Sol bağlantılar */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d2ff;
}

/* Sağ sosyal bağlantılar */
.footer-block.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffcc66;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    background-color: #00d2ff;
    color: #000;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-block.right {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }
}


.footer-logo-powered {
    height: 115px;
    margin-top: 8px;
    display: inline-block;
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.footer-logo-powered:hover {
    transform: scale(1.05);
    opacity: 1;
}



.about-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    max-width: 1100px;
    margin: 40px auto; /* Ortala */
    flex-wrap: wrap; /* responsive */
}


.about-text {
    flex: 1;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    padding-right: 20px;
}

.circle-mask {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.circle-mask canvas {
    width: 100%;
    height: 100%;
    display: block;
}


.about-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(173, 123, 255, 0.2);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.circle-mask {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff33;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-mask canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
}

.about-text {
    flex: 1;
    min-width: 320px;
    padding-left: 60px; /* yazıyı sağa itmek için eklendi */
}

.earn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

.earn-list li {
    margin-bottom: 14px; /* Her madde arasında boşluk */
}

.earn-list li strong {
    color: #fff;
}

#join-telegram {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.telegram-box {
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

.circle-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background: #0a0a1a;
    border: 2px solid #00d2ff55;
    box-shadow: 0 0 25px #00d2ff40;
    flex-shrink: 0;
}

#telegramCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 2;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 0 6px #00d2ff80);
}

.telegram-text {
    flex: 1;
    min-width: 260px;
    color: #fff;
}

.telegram-text h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    font-family: 'Orbitron', sans-serif;
}

.telegram-text p {
    margin-bottom: 24px;
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    background: #00d2ff;
    color: #000;
    transition: 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000;
}

@media (max-width: 650px) {
    .telegram-box {
        flex-direction: column;
        text-align: center;
    }

    .telegram-text {
        min-width: 100%;
    }
}


.wallet-success-box {
    background: rgba(10, 10, 15, 0.7);
    border-radius: 22px;
    padding: 48px 32px;
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 40px rgba(0, 255, 231, 0);
    font-family: 'Inter', sans-serif; /* ✔️ Daha modern ve okunur font */
    position: relative;
}

.wallet-success-inner {
    backdrop-filter: blur(10px);
    color: white;
}

.wallet-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(15, 15, 15, 0));
}

.wallet-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.wallet-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #f4e0c2;
    margin-bottom: 20px;
}

.wallet-desc {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.wallet-thanks {
    font-size: 14px;
    color: #999999;
    font-style: italic;
}
