body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-container {
    position: relative;
    background: url('../img/hero.gif') no-repeat center top;
    background-size: cover;
    min-height: 100vh;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 0;
}

.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    padding: 1.2rem 0;
}

.navbar-brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

.menu-lines {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.menu-lines span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-menu:hover {
    color: #ff0000;
}

.navbar-brand i {
    color: #ff0000;
    font-size: 2.2rem;
    margin-right: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    }
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), transparent);
}

.navbar-brand:hover::after {
    opacity: 1;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 50px;
}

.nav-item {
    text-align: center;
}

.nav-item:last-child {
    margin-left: auto;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.7rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.8) 50%,
        transparent 100%
    );
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ff0000 !important;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.nav-link:hover::before {
    width: 80%;
}

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
}

.feature i {
    font-size: 1.5rem;
    color: #ff0000;
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-description {
    margin-bottom: 3.5rem;
    position: relative;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.btn-danger {
    background: #ff0000;
    border: 2px solid #ff0000;
    padding: 1rem 3rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-danger i {
    font-size: 1.3rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 3rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-outline i {
    font-size: 1.3rem;
}

.hero-image {
    position: relative;
    padding: 2rem;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), transparent);
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.difficulty-stars {
    display: flex;
    gap: 0.3rem;
}

.difficulty-stars i {
    color: #ff0000;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 2rem;
    }

    .hero-content h1 {
        text-align: center;
        width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .feature {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 3.5rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .difficulty-stars {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 10rem 0 4rem;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
        text-align: center;
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .feature {
        justify-content: center;
        width: 100%;
    }
    
    .hero-description {
        padding: 20px;
        text-align: center;
    }
    
    .hero-description p {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-danger, .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Masaüstü Menü */
.desktop-menu {
    display: flex;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 50px;
}

.nav-item {
    text-align: center;
}

.nav-item:last-child {
    margin-left: auto;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.7rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 0, 0, 0.8) 50%,
        transparent 100%
    );
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ff0000 !important;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.nav-link:hover::before {
    width: 80%;
}

/* Mobil Menü */
.mobile-menu-container {
    display: none;
}

.navbar-brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.menu-lines {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.menu-lines span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-menu:hover {
    color: #ff0000;
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-container {
        display: block;
        width: 100%;
    }

    .menu-lines {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem !important;
        text-align: left;
        width: 100%;
    }

    .btn-danger {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .navbar-brand img {
        width: 200px;
        height: 65px;
    }
}

.about-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 2rem;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ff0000;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p strong {
    color: #ff0000;
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-content {
        padding: 2rem 0;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-content {
        padding: 1rem 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

.gallery-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff0000;
}

.section-header p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item:nth-last-child(2) {
    grid-column: 1;
}

.gallery-item:last-child {
    grid-column: 2;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    color: #ffffff;
}

.gallery-date {
    font-size: 0.9rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-item:nth-last-child(2),
    .gallery-item:last-child {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ff0000;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ff0000;
    opacity: 1;
}

@media (max-width: 991px) {
    .gallery-section {
        padding: 6rem 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .gallery-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }
}

.footer {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer-waves svg {
    width: 100%;
    height: 100px;
    display: block;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 3rem;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0.05), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    color: #ffffff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    color: #ff0000;
    opacity: 1;
    transform: translateY(-3px);
}

.footer-contact h3,
.footer-address h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-contact h3::after,
.footer-address h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff0000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #ff0000;
    font-size: 1.3rem;
}

.contact-item span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:hover span {
    color: #ff0000;
}

.address-info {
    display: flex;
    gap: 1rem;
}

.address-info i {
    color: #ff0000;
    font-size: 1.3rem;
    margin-top: 0.3rem;
}

.address-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #ffffff;
    opacity: 0.7;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
}

.copyright .separator {
    color: #ff0000;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-contact h3,
    .footer-address h3 {
        text-align: center;
    }

    .footer-contact h3::after,
    .footer-address h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        align-items: center;
    }

    .address-info {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 4rem 0 2rem;
    }

    .footer-brand img {
        width: 150px;
    }

    .footer-brand p {
        font-size: 1rem;
    }

    .social-link {
        font-size: 1.5rem;
    }

    .footer-contact h3,
    .footer-address h3 {
        font-size: 1.2rem;
    }

    .contact-item span,
    .address-info p {
        font-size: 1rem;
    }

    .copyright {
        flex-direction: column;
        gap: 0.5rem;
    }

    .copyright .separator {
        display: none;
    }
}

.about-hero {
    position: relative;
    background: url('../img/hero.gif') no-repeat center top;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 8rem 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
    .about-hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 6rem 0;
        margin-top: 80px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero-badge {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

.team-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-info span {
    font-size: 1.1rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .about-hero h1 {
        font-size: 4rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 6rem 0;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero-badge {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .member-info span {
        font-size: 1rem;
    }
}

.games-hero {
    position: relative;
    background: url('../img/hero.gif') no-repeat center top;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 8rem 0;
    margin-top: -40px;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 0;
}

.games-hero-content {
    position: relative;
    z-index: 2;
}

.games-hero h1 {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 2rem;
}

.games-hero-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.games-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.game-item {
    margin-bottom: 8rem;
}

.game-item:last-child {
    margin-bottom: 0;
}

.game-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.game-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.game-image:hover img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.game-overlay-top {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.game-info {
    display: flex;
    gap: 2rem;
    color: #ffffff;
}

.game-duration,
.game-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.game-duration i,
.game-players i {
    color: #ff0000;
    font-size: 1.2rem;
}

.game-content {
    padding: 2rem;
}

.game-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.game-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ff0000;
}

.game-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.feature i {
    color: #ff0000;
    font-size: 1.3rem;
}

.feature span {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .games-hero h1 {
        font-size: 4rem;
    }

    .game-content {
        padding: 2rem 0;
        text-align: center;
    }

    .game-content h2 {
        font-size: 2.5rem;
    }

    .game-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .game-features {
        align-items: center;
    }

    .game-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .games-hero {
        min-height: 40vh;
        padding: 6rem 0;
    }

    .games-hero h1 {
        font-size: 3rem;
    }

    .games-hero-badge {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .game-content h2 {
        font-size: 2rem;
    }

    .game-description p {
        font-size: 1rem;
    }

    .feature span {
        font-size: 1rem;
    }
}

.contact-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ff0000;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: #ffffff;
}

.contact-item i {
    color: #ff0000;
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.contact-item a,
.contact-item p {
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff0000;
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 6rem 0;
    }

    .contact-info {
        padding: 2rem 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .contact-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-item a,
    .contact-item p {
        font-size: 1.1rem;
    }

    .map-container {
        min-height: 350px;
    }
}

/* Blog Styles */
.blog-hero {
    position: relative;
    background: url('../img/hero.gif') no-repeat center top;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 8rem 0;
    margin-top: -40px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.1;
}

.blog-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.blog-section {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.blog-post {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.blog-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.blog-content {
    padding: 30px;
}

.blog-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.blog-meta {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-meta span {
    margin-right: 20px;
    font-size: 1rem;
}

.blog-meta i {
    color: #ff0000;
    margin-right: 8px;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Sidebar Styles */
.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.sidebar-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff0000;
    color: #ffffff;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: #ffffff;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    font-size: 1.2rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.recent-post-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.recent-post-content h4 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #ff0000;
}

.recent-post-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tags a:hover {
    background: #ff0000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-hero {
        padding: 100px 0 40px;
    }

    .blog-hero h1 {
        font-size: 3.5rem;
    }

    .blog-image img {
        height: 300px;
    }

    .blog-content h2 {
        font-size: 1.8rem;
    }

    .sidebar-widget {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-badge {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .blog-image img {
        height: 250px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .recent-post img {
        width: 80px;
        height: 80px;
    }
}

/* Blog Post Styles */
.blog-post-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    position: relative;
}

.blog-post-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.blog-post-content {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.post-meta {
    margin-bottom: 30px;
    color: #888;
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 20px;
}

.post-meta i {
    color: #ff0000;
    margin-right: 5px;
}

.post-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.post-content h3 {
    color: #ff0000;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.post-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.post-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.post-content ul li {
    color: #ccc;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.post-content ul li::before {
    content: '•';
    color: #ff0000;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: rgba(255, 0, 0, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.contact-info-box {
    background: rgba(255, 0, 0, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.contact-info-box h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info-box p {
    color: #ccc;
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info-box i {
    color: #ff0000;
    margin-right: 10px;
    width: 20px;
}

.cta-box {
    background: rgba(255, 0, 0, 0.1);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.cta-box h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-box .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .blog-post-content {
        padding: 30px;
    }

    .post-content h2 {
        font-size: 2rem;
    }

    .post-content h3 {
        font-size: 1.5rem;
    }

    .experience-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-post-section {
        padding: 60px 0;
    }

    .blog-post-content {
        padding: 20px;
    }

    .post-content h2 {
        font-size: 1.8rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-content p {
        font-size: 1rem;
    }

    .experience-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h4 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }
}

/* Blog Sayfalama Stilleri */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-list li {
    margin: 0 5px;
}

.pagination-list .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-list .page-link:hover {
    background: #ff0000;
    color: #fff;
}

.pagination-list li.active .page-link {
    background: #ff0000;
    color: #fff;
}

.pagination-list .page-link i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .pagination-list .page-link {
        width: 35px;
        height: 35px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

.whatsapp-button i {
    font-size: 35px;
} 