:root {
    --black: #0E0E10;
    --dark-gray: #1C1C1E;
    --brand-purple: #6E43FF;
    --white: #FFFFFF;
    --mouse-x: 0.5;
    --mouse-y: 0.5;
    --bg-position-x: 0px;
    --bg-position-y: 0px;
    --card-mouse-x: 0;
    --card-mouse-y: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #030305;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Noktalı arka plan efekti */
.background-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
    display: none; /* Noktaları gizliyoruz */
}

/* Renkli çizgiler ve gradientler */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(140deg, rgba(110, 67, 255, 0.05) 0%, transparent 50%),
        linear-gradient(220deg, rgba(177, 124, 255, 0.08) 10%, transparent 80%),
        linear-gradient(160deg, rgba(48, 129, 151, 0.05) 20%, transparent 70%);
    z-index: -3;
    pointer-events: none;
}

/* Renkli eğri çizgiler */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('curved-lines.svg');
    background-repeat: no-repeat;
    background-position: calc(50% + var(--bg-position-x)) calc(50% + var(--bg-position-y));
    background-size: 120% 120%;
    z-index: -2;
    pointer-events: none;
    opacity: 1;
    transition: background-position 0.2s ease-out;
    mix-blend-mode: lighten;
}

/* Solana tarzı büyük dalgalı renkli şekiller */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 140%;
    border-radius: 50%;
    background: linear-gradient(45deg, #6E43FF, #B17CFF);
    opacity: 0.08;
    filter: blur(120px);
    z-index: -1;
    transform: rotate(-15deg);
    animation: slowRotate 30s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 70%;
    height: 120%;
    border-radius: 50%;
    background: linear-gradient(45deg, #6E43FF, #523aff);
    opacity: 0.12;
    filter: blur(120px);
    z-index: -1;
    transform: rotate(15deg);
    animation: slowRotate 35s infinite alternate-reverse;
}

/* Tokenomics bölümü için ekstra şekil */
.tokenomics {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(28, 28, 30, 0.8) 0%, rgba(14, 14, 16, 0.95) 70%);
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,67,255,0.25) 0%, rgba(110,67,255,0.08) 70%, rgba(110,67,255,0) 100%);
    filter: blur(50px);
    z-index: 0;
}

.tokenomics::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,67,255,0.2) 0%, rgba(110,67,255,0.05) 70%, rgba(110,67,255,0) 100%);
    filter: blur(60px);
    z-index: 0;
}

.tokenomics h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #fff, #B57AFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 30px rgba(110, 67, 255, 0.3);
}

.tokenomics .container {
    position: relative;
    z-index: 1;
}

.token-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1000px;
    gap: 60px;
}

.chart {
    flex: 1;
    display: flex;
    justify-content: center;
    filter: none;
    transition: all 0.5s ease;
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.chart img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 550px;
    margin: 0 auto;
    transform: scale(1.4);
}

.chart:hover {
    transform: scale(1.05);
    filter: none;
}

.token-details {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detail-item {
    background: linear-gradient(145deg, rgba(28, 28, 30, 0.8), rgba(14, 14, 16, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(110, 67, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(110, 67, 255, 0.1), transparent);
    opacity: 0.3;
    z-index: 0;
}

.detail-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 67, 255, 0.2), transparent 70%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(110, 67, 255, 0.3);
}

.detail-item:hover::after {
    opacity: 0.3;
}

.detail-item h4 {
    font-size: 1.1rem;
    color: #B57AFA;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.detail-item p {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #fff, #E3CAFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About bölümü için ekstra şekil */
.about::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -10%;
    width: 50%;
    height: 70%;
    border-radius: 50%;
    background: linear-gradient(45deg, #7d57ff, #B17CFF);
    opacity: 0.07;
    filter: blur(100px);
    z-index: -1;
    transform: rotate(10deg);
    animation: slowRotate 40s infinite alternate-reverse;
}

@keyframes slowRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.05);
    }
    100% {
        transform: rotate(-3deg) scale(1);
    }
}

/* Pozisyon ayarlaması */
.about, .tokenomics {
    position: relative;
    overflow: hidden;
}

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(14, 14, 16, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    position: relative;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    animation: shadowPulse 2s infinite alternate;
}

@keyframes shadowPulse {
    0% {
        text-shadow: 0 0 5px rgba(110, 67, 255, 0.5),
                     0 0 10px rgba(110, 67, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(110, 67, 255, 0.8),
                     0 0 25px rgba(177, 124, 255, 0.6);
    }
    100% {
        text-shadow: 0 0 5px rgba(110, 67, 255, 0.5),
                     0 0 10px rgba(110, 67, 255, 0.3);
    }
}

@keyframes glowEffect {
    0% {
        text-shadow: 0 0 8px rgba(142, 103, 255, 0.5),
                     0 0 12px rgba(142, 103, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(142, 103, 255, 0.8),
                     0 0 20px rgba(177, 124, 255, 0.7);
    }
    100% {
        text-shadow: 0 0 8px rgba(142, 103, 255, 0.5),
                     0 0 12px rgba(142, 103, 255, 0.3);
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn {
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--brand-purple);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #7d57ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 67, 255, 0.4);
}

.btn-secondary {
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-gray);
    border-radius: 50%;
}

.btn-icon:hover {
    background-color: #2a2a2e;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4b4b;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #B57AFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(110, 67, 255, 0.3);
}

.tagline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.9;
}

/* Hero CTA Butonları */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.cta-button {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background-color: var(--brand-purple);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(110, 67, 255, 0.3);
}

.cta-button.primary:hover {
    background-color: #7d57ff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(110, 67, 255, 0.45);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.cta-button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--dark-gray);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Feature kartlarına görsel arka plan */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(110, 67, 255, 0.08), transparent 50%);
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at bottom right, rgba(56, 182, 255, 0.06), transparent 60%);
    z-index: -1;
    transition: transform 0.5s ease;
}

/* Her kart için farklı renkler */
.feature-card:nth-child(1)::after {
    background: radial-gradient(ellipse at bottom right, rgba(110, 67, 255, 0.1), transparent 70%);
}

.feature-card:nth-child(2)::after {
    background: radial-gradient(ellipse at bottom right, rgba(177, 124, 255, 0.08), transparent 70%);
}

.feature-card:nth-child(3)::after {
    background: radial-gradient(ellipse at bottom right, rgba(56, 182, 255, 0.07), transparent 70%);
}

.feature-card:nth-child(4)::after {
    background: radial-gradient(ellipse at bottom right, rgba(86, 189, 202, 0.09), transparent 70%);
}

/* Extra efekt olarak görünmez çizgiler */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(110, 67, 255, 0.03) 25%, transparent 25%, transparent 50%, 
        rgba(110, 67, 255, 0.03) 50%, rgba(110, 67, 255, 0.03) 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover::before {
    opacity: 0.4;
}

.feature-card:hover::after {
    transform: scale(1.1);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-icon {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.feature-card p {
    opacity: 0.8;
    text-align: center;
}

/* About Section */
.about {
    padding: 100px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--dark-gray);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Hover ve animasyonları kaldırıyoruz */
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
}

/* Sabit arka plan desenleri - Her kart için farklı */
.info-card:nth-child(1) {
    background: linear-gradient(135deg, #1C1C1E 0%, #141416 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.info-card:nth-child(2) {
    background: linear-gradient(135deg, #1E1A2A 0%, #141416 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.info-card:nth-child(3) {
    background: linear-gradient(135deg, #221C30 0%, #141416 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.info-card:nth-child(4) {
    background: linear-gradient(135deg, #1A1A28 0%, #141416 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Mor ışıltı ekleyin */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(110, 67, 255, 0.15), transparent 60%);
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(110, 67, 255, 0.1), transparent 70%);
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

/* İkon stilinde genişletme */
.info-card:nth-child(1)::after {
    background: radial-gradient(circle at bottom right, rgba(110, 67, 255, 0.12), transparent 70%);
}

.info-card:nth-child(2)::after {
    background: radial-gradient(circle at bottom right, rgba(177, 124, 255, 0.12), transparent 70%);
}

.info-card:nth-child(3)::after {
    background: radial-gradient(circle at bottom right, rgba(90, 50, 220, 0.12), transparent 70%);
}

.info-card:nth-child(4)::after {
    background: radial-gradient(circle at bottom right, rgba(140, 90, 250, 0.12), transparent 70%);
}

.info-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-purple), rgba(110, 67, 255, 0.7));
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(110, 67, 255, 0.3);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #B57AFA, #6E43FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column p {
    margin: 20px 0;
    opacity: 0.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-gray);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--brand-purple);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--brand-purple);
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    opacity: 0.5;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--white);
    opacity: 0.5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.legal-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .token-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    header .logo {
        z-index: 101;
    }
    
    nav {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .token-info {
        flex-direction: column;
        gap: 50px;
    }
    
    .chart {
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .chart img {
        max-width: 100%;
        transform: scale(1.15);
    }
    
    .token-details {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu {
        overflow-y: auto;
        z-index: 100;
    }
    
    .mobile-dropdown-menu {
        padding-left: 20px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Roadmap mobil düzenlemesi */
    .roadmap-section {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .chart img {
        max-width: 100%;
        transform: scale(1.1);
    }
    
    .copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Popup Bildirimleri */
.popup-notification {
    position: absolute;
    z-index: 9999;
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--dark-gray);
}

.popup-notification p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.shadow-popup {
    background-color: var(--dark-gray);
    color: var(--white);
    border-left: 4px solid var(--brand-purple);
}

.airdrop-popup {
    background-color: var(--dark-gray);
    color: var(--white);
    border-left: 4px solid #FFD700;
}

/* Dropdown Menü */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: var(--dark-gray);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.9);
    transform-origin: top center;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
    pointer-events: none;
    border: 1px solid rgba(110, 67, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
    white-space: nowrap;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 5px;
}

.dropdown:hover .dropdown-item {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.dropdown-item.highlighted-item {
    font-weight: bold;
    transform: scale(1.05);
    position: relative;
}

.dropdown-item.highlighted-item::before {
    display: none;
}

.dropdown-item.highlighted-item:hover {
    transform: scale(1.05) translateX(3px);
}

.dropdown-item:nth-child(1) { transition-delay: 0.1s; }
.dropdown-item:nth-child(2) { transition-delay: 0.2s; }
.dropdown-item:nth-child(3) { transition-delay: 0.3s; }

.dropdown-item:hover {
    background-color: rgba(110, 67, 255, 0.2);
    padding-left: 25px;
    color: var(--brand-purple);
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--brand-purple);
    transition: transform 0.3s ease;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover i {
    transform: translateX(3px);
}

/* Dropdown trigger için stil */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown > a:hover {
    background-color: rgba(110, 67, 255, 0.1);
}

.dropdown > a i {
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Buton için efekt ve animasyon */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:hover::after, .btn-secondary:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: transparent;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: transparent;
}

.feature-popup {
    background-color: var(--dark-gray);
    color: var(--white);
    border-left: 4px solid var(--brand-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobil menü için stiller */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background-color: var(--dark-gray);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    z-index: 101;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark-gray);
    z-index: 100;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background-color: rgba(110, 67, 255, 0.1);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    text-align: left;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding: 5px 0 5px 20px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-dropdown-item i {
    margin-right: 10px;
    color: var(--brand-purple);
}

.mobile-dropdown-item:hover {
    background-color: rgba(110, 67, 255, 0.1);
}

.mobile-highlight {
    position: relative;
    color: #FFFFFF !important;
    font-weight: bold;
    background-color: rgba(110, 67, 255, 0.2);
    border-left: 3px solid var(--brand-purple);
    border-radius: 8px;
    padding: 12px 15px 12px 18px !important;
    box-shadow: 0 2px 8px rgba(110, 67, 255, 0.2);
}

.mobile-dropdown-item.mobile-highlight {
    margin-left: -5px;
    padding-left: 13px !important;
}

.mobile-badge {
    display: inline-block;
    font-size: 0.65rem;
    background-color: #8E67FF;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(142, 103, 255, 0.7);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
} 