:root {
    --bg-dark: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --primary-color: #ff8000;
    --secondary-color: #ff8000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #ffffff;
    --nav-height: 80px;
    --card-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-light);
    min-height: 100vh;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 1.2s;
}

/* Header ve Navbar Stilleri */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    background: rgba(66, 66, 66, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::after {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle,
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Scroll Efekti */
.header.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-dark);
        transition: 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-gradient);
    padding-bottom: 50px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #ff0000,
        transparent
    );
    opacity: 0.7;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    flex: 1;
}

.hero-video-container {
    flex: 1;
    max-width: 600px;
    height: 340px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 128, 0, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Code Window Styles */
.hero-graphics {
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-window {
    background: var(--card-bg);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.code-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.code-content {
    position: relative;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.code-content::after {
    content: "Developed by Reval.xyz";
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: monospace;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.8;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(255, 183, 0, 0.1), 
        transparent 50%);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphics {
        order: -1;
    }

    .code-window {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hizmet Kartları */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 72, 0, 0.2);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil menü için */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Ana içerik için padding ekleme */
main {
    padding-top: 80px;
}

/* Müşteri Yorumları Stilleri */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f0f);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgb(255, 166, 0);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-size: 14px;
}

/* Particles container düzeltmesi */
#particles-js {
    display: none;
}

/* Hizmetler Bölümü */
.services {
    padding: 100px 0;
    background: var(--bg-gradient);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 145, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 217, 0, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Müşteri Yorumları Stilleri */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f0f);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Animasyon için ek stiller */
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

/* İletişim Bölümü Stilleri */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0f0f0f, var(--bg-dark));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Sosyal Medya Kartları */
.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.social-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-info h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Sosyal Medya Renkleri */
.discord .social-icon {
    color: #daaf72;
}

.youtube .social-icon {
    color: #ff0000;
}

.instagram .social-icon {
    color: #e4405f;
}

.github .social-icon {
    color: #ffffff;
}

.discord:hover {
    border-color: #7289da;
    box-shadow: 0 5px 15px rgba(114,137,218,0.2);
}

.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 5px 15px rgba(255,0,0,0.2);
}

.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 5px 15px rgba(228,64,95,0.2);
}

.github:hover {
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* İletişim Bilgileri */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #333333;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .social-cards {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-card, .info-card {
        padding: 1.25rem;
    }
}

.gradient-link {
    background: linear-gradient(45deg, #ffae00, #ff7b00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.gradient-link:hover {
    background: linear-gradient(45deg, #cc9c00, #ff5100);
    -webkit-background-clip: text;
    background-clip: text;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff5e00, #cc5200);
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: none; /* Başlangıçta gizli */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 230, 0, 0.5);
}

.scroll-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Giriş ve Kayıt Sayfası Stilleri */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-dark);
    padding-top: var(--nav-height);
}

.login-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.login-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 115, 0, 0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-box .form-group {
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 115, 0, 0.1);
    outline: none;
}

.login-box .btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 132, 0, 0.2);
}

.login-box p {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    opacity: 0.8;
}

.login-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-box a:hover {
    opacity: 0.8;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff4444;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-menu span {
    color: var(--text-light);
    opacity: 0.9;
}

.user-menu .btn-outline {
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-menu .btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Responsive Tasarım */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

    .user-menu span {
        display: none;
    }
}

/* Dashboard Stilleri */
.dashboard-container {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--bg-dark);
    padding-top: calc(var(--nav-height) + 40px);
}

.dashboard-box {
    background: var(--card-bg);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.dashboard-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.balance-card {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: var(--bg-dark);
}

.balance-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: bold;
}

.add-balance-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.add-balance-form h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #00ff9d;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .dashboard-box {
        padding: 20px;
    }

    .balance-amount {
        font-size: 2rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://revalroleplay.com/path/to/pattern.png');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.balance-display {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.balance-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-light);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--bg-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .balance-display {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* İstatistikler Bölümü Stilleri */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.stat-group {
    position: relative;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(255, 136, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--bg-dark);
}

.stat-info {
    text-align: left;
}

.stat-counter {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-counter h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-counter span {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.stat-info p {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 1rem;
    margin: 0;
}

.stat-detail {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-detail span {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-detail span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-counter h3 {
        font-size: 2rem;
    }

    .stat-counter span {
        font-size: 1.2rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Animasyon Efektleri */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-item[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
}

/* Dekoratif çizgi için genel stil */
.hero::after,
.stats::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #ff0000,
        transparent
    );
    opacity: 0.7;
}

/* Hero section'ın alt çizgisi */
.hero::after {
    bottom: 0;
    left: 0;
}

/* Stats section'ın üst çizgisi */
.stats::before {
    top: 0;
    left: 0;
}

/* Section pozisyonlarını ayarla */
.hero {
    position: relative;
    padding-bottom: 50px;
}

.stats {
    position: relative;
    padding-top: 50px;
}

/* Tüm section'lar için aynı arka plan */
section {
    background: var(--bg-gradient);
    position: relative;
}

/* Logo container */
.floating-logo {
    width: 200px; /* Logo boyutunu ayarlayın */
    height: 200px;
    margin: 0 auto 2rem auto;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatingAnimation 3s ease-in-out infinite;
}

/* Yavaş yavaş havaya zıplama animasyonu */
@keyframes floatingAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Hover efekti (isteğe bağlı) */
.floating-logo:hover .logo-image {
    animation-play-state: paused;
}

/* Responsive tasarım için */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-video-container {
        max-width: 100%;
        height: 300px;
    }
}

/* Yetkili Ekibimiz Bölümü */
.team {
    padding: 80px 0;
    background: #242424;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ff0000,
        transparent
    );
    opacity: 0.7;
}

.team h2 {
    color: #ff8000;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    background: #0D0F18;
    padding: 1.5rem;
    border-radius: 15px;
    width: 250px;
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0.8rem;
}

.team-member h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 0.8rem;
}

.social-links a {
    color: #ffa600;
    margin: 0 8px;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .team-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-container {
        grid-template-columns: 1fr;
    }
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #252525;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out forwards;
    animation-delay: 1s;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid #0D0F18;
    border-radius: 50%;
    border-top-color: #ff7b00;
    animation: spin 0.8s ease-in-out infinite;
}

.loader-inner {
    width: 40px;
    height: 40px;
    border: 3px solid #0D0F18;
    border-radius: 50%;
    border-top-color: #ff0033;
    margin: 7px;
    animation: spin 0.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Sayfa içeriğinin animasyonu */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 1.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
