body {
    background-color: #0a0514;
    color: #ffffff;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
    background-image: radial-gradient(rgba(176, 38, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Space Grotesk', sans-serif;
}

.glass-card {
    background: rgba(22, 13, 41, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(176, 38, 255, 0.2);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00FFA3;
    box-shadow: 0 15px 35px rgba(0, 255, 163, 0.15);
}

.text-gradient-green {
    background: linear-gradient(135deg, #00FFA3, #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #B026FF, #FF007A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-playful {
    position: relative;
    background: linear-gradient(45deg, #00FFA3, #00cc82);
    color: #0a0514;
    font-weight: 800;
    border-radius: 9999px;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.2s;
}

.btn-playful::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.btn-playful:hover::before {
    left: 100%;
}

.btn-playful:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 10px 25px rgba(0, 255, 163, 0.4);
}

.btn-secondary {
    background: #160d29;
    color: white;
    border: 2px solid #B026FF;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #B026FF;
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 25px rgba(176, 38, 255, 0.4);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #B026FF;
    padding: 10px 0;
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.3);
    z-index: 20;
}

.marquee-container::after,
.marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #B026FF, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #B026FF, transparent);
}

.ticket-edge {
    mask-image: radial-gradient(circle at 10px 10px, transparent 10px, black 11px);
    mask-size: 20px 20px;
    mask-position: -10px -10px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0514;
}

::-webkit-scrollbar-thumb {
    background: #B026FF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00FFA3;
}

/* Oyun Kartları */
.game-card {
    background: rgba(22, 13, 41, 0.8);
    border: 1px solid rgba(176, 38, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.game-card:hover {
    border-color: #00FFA3;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 255, 163, 0.12);
}

.game-card-thumb {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.3), rgba(0, 255, 163, 0.15));
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

/* İstatistik Şeridi */
.stat-box {
    background: rgba(22, 13, 41, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

/* Adım Numaraları */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FFA3, #B026FF);
    color: #0a0514;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SSS Akordeon */
.faq-item {
    border: 1px solid rgba(176, 38, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(22, 13, 41, 0.5);
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: #00FFA3;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: transparent;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-question:hover {
    color: #00FFA3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #B026FF;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #00FFA3;
}

/* SEO İçerik Bloğu */
.seo-content h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.seo-content p {
    color: #a79ec1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #a79ec1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Blog / Makale Sayfası */
.article-content h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(176, 38, 255, 0.3);
}

.article-content h3 {
    color: #00FFA3;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    color: #a79ec1;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.article-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.article-content ul li {
    color: #a79ec1;
    line-height: 1.85;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.article-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #B026FF;
    font-weight: bold;
}

.article-content strong {
    color: #fff;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
}

.article-table th,
.article-table td {
    border: 1px solid rgba(176, 38, 255, 0.25);
    padding: 0.85rem 1rem;
    text-align: left;
}

.article-table th {
    background: rgba(176, 38, 255, 0.2);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.article-table td {
    color: #a79ec1;
    background: rgba(22, 13, 41, 0.5);
}

.article-table tr:hover td {
    background: rgba(22, 13, 41, 0.8);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    color: #a79ec1;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link-active {
    color: #00FFA3 !important;
}
