/* CSS Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #757575;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #007aff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #757575, #4cd964);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
}

.logo h1 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo img {
    height: 45px;
    width: auto;
    loading: eager;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

nav a:hover {
    background: rgba(0, 122, 255, 0.2);
    color: #4cd964;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Banner - Tasarımcı için alan */
.hero {
    background: linear-gradient(135deg, #757575 0%, #0051d5 100%);
    padding: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(76,217,100,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Banner Container - Tasarımcı banner'ı buraya gelecek */
.hero-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Placeholder - Banner hazır olunca bu bölüm silinecek */
.banner-placeholder {
    background: rgba(18, 18, 18, 0.3);
    border: 3px dashed rgba(76, 217, 100, 0.5);
    border-radius: 20px;
    padding: 80px 40px;
    backdrop-filter: blur(10px);
}

.banner-placeholder h2 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    color: white;
}

.banner-placeholder h3 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    color: #4cd964;
    position: relative;
    padding-bottom: 15px;
}

.banner-placeholder h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4cd964, #757575);
    border-radius: 2px;
}

.banner-placeholder p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
}

.banner-placeholder .note {
    font-size: 14px;
    color: #4cd964;
    margin-top: 40px;
    padding: 15px;
    background: rgba(76, 217, 100, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 217, 100, 0.3);
}

/* Banner görsel için img elementi */
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    loading: lazy;
}

/* Promotional Banner - Like Screenshot */
.promo-banner {
    background: linear-gradient(135deg, #757575 0%, #1a1a1a 100%);
    padding: 40px;
    margin: -50px auto 40px;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 10;
}

.promo-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-5px);
    border-color: #4cd964;
    background: rgba(76, 217, 100, 0.1);
}

.promo-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.promo-item h3 {
    font-size: 16px;
    color: #4cd964;
    margin-bottom: 5px;
}

.promo-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Main Content Sections */
main {
    background: #757575;
    margin: 0 auto;
    max-width: 1200px;
}

section {
    padding: 60px 40px;
}

section:not(:last-child) {
    border-bottom: 2px solid rgba(0, 122, 255, 0.2);
}

section h2 {
    font-size: 38px;
    color: #4cd964;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4cd964, #757575);
    border-radius: 2px;
}

section h3 {
    font-size: 24px;
    color: #757575;
    margin: 30px 0 15px;
    font-weight: 600;
}

section p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

section ul {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 30px;
    line-height: 2;
}

section a {
    color: #4cd964;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

section a:hover {
    color: #757575;
}

/* Features Grid - Casino Game Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 217, 100, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.3);
    border-color: #4cd964;
}

.feature-card h3 {
    color: #4cd964;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(76, 217, 100, 0.5));
}

/* Login Section - Casino Style */
.login-section {
    background: linear-gradient(135deg, #757575, #0051d5);
    color: white;
    text-align: center;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: 0 10px 50px rgba(0, 122, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '💎';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-section h3 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.login-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.login-button {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 45px;
    background: #4cd964;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 217, 100, 0.4);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-button:hover {
    background: #3eb84f;
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(76, 217, 100, 0.6);
}

/* Page Hero (Kurumsal sayfalar) */
.page-hero {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 40px 0;
    border-bottom: 2px solid rgba(0, 122, 255, 0.3);
}

.page-hero h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Content Page (Metin sayfaları) */
.content-page {
    padding: 40px 0 60px;
}

.content-page h2 {
    color: #4cd964;
    margin: 30px 0 15px;
    font-size: 22px;
}

.content-page h2:first-of-type {
    margin-top: 0;
}

.content-page ul {
    margin: 15px 0;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.2);
}

.breadcrumb a {
    color: #4cd964;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child span {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
    font-size: 14px;
}

.faq-section-title {
    color: #4cd964;
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
}

/* Footer */
footer {
    background: #757575;
    color: white;
    padding: 50px 0 20px;
    margin-top: 0;
    border-top: 2px solid rgba(0, 122, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #4cd964;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #4cd964;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.copyright a {
    color: #4cd964;
    text-decoration: none;
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 60px 40px;
    background: #757575;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 122, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4cd964;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #4cd964;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #757575;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: bold;
    color: #757575;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 15px;
}

.faq-answer ul {
    margin-left: 30px;
    margin-top: 15px;
    line-height: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #007aff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    nav li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    nav a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        border-radius: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    nav a:hover {
        background: rgba(0, 122, 255, 0.3);
    }
    
    .hero {
        min-height: 300px;
        padding: 20px 0;
    }
    
    .hero-banner {
        padding: 40px 15px;
    }
    
    .banner-placeholder {
        padding: 40px 20px;
    }
    
    .banner-placeholder h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .banner-placeholder h3 {
        font-size: 28px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .banner-placeholder h3::after {
        width: 80px;
        height: 3px;
    }
    
    .banner-placeholder p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .login-button {
        padding: 14px 35px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .promo-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 25px 15px;
        margin: -30px auto 30px;
    }
    
    .promo-item {
        padding: 15px 10px;
    }
    
    .promo-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .promo-item h3 {
        font-size: 14px;
    }
    
    .promo-item p {
        font-size: 12px;
    }
    
    section {
        padding: 30px 15px;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    section h3 {
        font-size: 20px;
        margin: 20px 0 12px;
    }
    
    section p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    section ul {
        margin-left: 20px;
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .login-section {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    .login-section h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .login-section p {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .faq-section {
        padding: 30px 15px;
    }
    
    .faq-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 15px;
    }
    
    .faq-question::after {
        font-size: 24px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 18px 15px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #007aff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    nav li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    nav a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        border-radius: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    nav a:hover {
        background: rgba(0, 122, 255, 0.3);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    nav a {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .hero {
        min-height: 250px;
    }
    
    .hero-banner {
        padding: 30px 10px;
    }
    
    .banner-placeholder {
        padding: 30px 15px;
    }
    
    .banner-placeholder h2 {
        font-size: 26px;
    }
    
    .banner-placeholder h3 {
        font-size: 24px;
    }
    
    .banner-placeholder p {
        font-size: 14px;
    }
    
    .login-button {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .promo-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 10px;
    }
    
    .promo-item {
        padding: 12px 8px;
    }
    
    .promo-icon {
        font-size: 24px;
    }
    
    .promo-item h3 {
        font-size: 12px;
    }
    
    .promo-item p {
        font-size: 11px;
    }
    
    section {
        padding: 25px 10px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    section h3 {
        font-size: 18px;
    }
    
    section p {
        font-size: 14px;
    }
    
    .login-section {
        padding: 30px 15px;
    }
    
    .login-section h3 {
        font-size: 24px;
    }
}

