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




body {
    font-family: "Onest", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: linear-gradient(#0f1022, #0b0913);
}

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

/* Header */

.game-slider {
    position: relative;
    height: 525px;
    overflow: hidden;
}

.game-track {
    position: absolute;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
    margin-top: 35px;
}

.game-row {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem;
}

.game-card {
    width: 121px;
    flex-shrink: 0;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    z-index: 1;
}

.game-card img {
    width: 121px;
    height: 215px;
    object-fit: cover;
    border-radius: 0.5rem;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    color: white;
    margin-top: 22px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(64px);
    border-radius: 10px;
    border: 1px solid rgba(71, 67, 50, 0.493);
    background-color: rgb(255 255 255 / 5%);
}

header .logo img {
    width: 158px;
    margin: 7px 0px 0px 7px;
}
header nav{

    margin: 5px 20px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    opacity: .4;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}
header nav ul li a.active {
    opacity: 1;
}
header nav ul li a:hover {
    opacity: 1;
}


header .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3F2DFF;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 7px 14px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

header .contact-button .icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

@media (max-width: 768px) {

    header .contact-button {
        visibility: hidden;
    }
}


.cta-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}



/* Hamburger Menu */
header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin: 5px 20px;
    color: white;
}

header .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

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

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

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #0f1123;
    padding: 60px 20px;
    transition: left 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #fff;
}

.sidebar-active {
    left: 0;
}

/* Close Button */
.close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #fff;
}

.slogan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 0 60px;
    flex-wrap: wrap;
    color: white;
}

.slogan .section {
    margin: auto;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}
.slogan .section h1 {
    margin: 0;
    font-weight: 500;
    font-size: 32px;
}
.slogan .section p {
    margin: 10px 0 20px;
    font-size: 20px;
    opacity: 0.5;
}
.slogan .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff0f;
    border-radius: 47px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ffffff17;
}
.slogan .image-container img {
    max-width: 100%;
    border-radius: 10px;
}
@media (max-width: 600px) {
   .slogan  .section {
        padding: 10px;
    }
   .slogan  .section h1 {
        font-size: 20px;
    }
    .slogan .section p {
        font-size: 14px;
    }
}

.slogan-image img {
    max-width: 100%;
    height: auto;
}

/* slide section */

.vision-section {
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
}

.content-wrapper {
    margin-bottom: 4rem;
    right: 0;
    left: 0;
}

.vision-title {
    font-size: 32px;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 1;
    filter: blur(0);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.vision-description {
    font-size: 1.1rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.5;
    filter: blur(0);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.fade-blur {
    opacity: 0;
    filter: blur(20px); /* Blur efekti artırıldı */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(20px); /* Blur efekti artırıldı */
    transition: opacity 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.nav-button {
    background: rgba(255, 255, 255, 0);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
    opacity: 0.5;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* CLV Section */
.games-section {
    width: 100%;
    padding: 4rem 2rem;
    height: 1000px;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff0d;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid #ffffff17;
}

.games-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.games-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.games-header p {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.5;
}

.gallery-container {
    display: flex;
    gap: 1rem;
    height: 600px;
    border-radius: 1rem;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
}

.gallery-item.expanded {
    flex: 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Resim üzerindeki karartma efekti */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 1rem;
    pointer-events: none;
}
/* Support Section */

.s3-games-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.s3-games-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.s3-game-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.s3-game-card:hover {
    transform: translateY(-4px);
}

.s3-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s3-game-card .s3-game-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}



.s3-grid-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
}

/* Desktop: 3 columns */
@media (min-width: 768px) {
    .s3-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer */

.footer {
   
    padding: 4rem 2rem; /* Padding artırıldı */
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* Gap artırıldı */
    min-height: 200px; /* Minimum yükseklik eklendi */
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0; /* Padding eklendi */
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Gap artırıldı */
    margin-bottom: 1rem; /* Margin eklendi */
}

.footer-logo img {
    height: 32px; /* Logo boyutu artırıldı */
    width: auto;
}

.footer-logo span {
    color: white;
    font-size: 1.5rem; /* Font boyutu artırıldı */
    font-weight: 500;
}

.footer-copyright {
    font-size: 15px;
    color: #fff;
    padding: 0.5rem 0;
    font-weight: 300;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; /* Gap artırıldı */
    padding: 1rem 0; /* Padding eklendi */
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Gap artırıldı */
}

.info-label {
    font-size: 1rem; /* Font boyutu artırıldı */
    color: #fff;
    font-weight: 300;
}

.info-value {
    color: #fff;
    font-size: 1rem; /* Font boyutu artırıldı */
    opacity: 0.5;
    line-height: 1.6; /* Line height eklendi */
}

/* Tablet ve üzeri */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: auto 1fr;
        gap: 6rem; /* Gap artırıldı */
    }

    .footer-info {
        grid-template-columns: repeat(3, 1fr);
        justify-content: flex-end;
        gap: 3rem; /* Gap artırıldı */
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .footer {
        padding: 5rem 2rem; /* Padding artırıldı */
    }

    .footer-container {
        min-height: 250px; /* Minimum yükseklik artırıldı */
    }

    .footer-info {
        gap: 2rem; /* Gap artırıldı */
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .slogan-text h1 {
        font-size: 32px;
    }

    .clv-text h2,
    .support-text h2 {
        font-size: 24px;
    }

    .footer-columns {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }

    .cta-buttons {
        display: none;
    }

    header .hamburger {
        display: flex;
    }

    .sidebar {
        width: 80%;
        max-width: 300px;
    }

    .slogan {
        flex-direction: column;
        text-align: center;
    }
}

/* Sidebar Button Styles */
.sidebar .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.sidebar .cta-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar .login {
    background: none;
    color: #fff;
    font-size: 16px;
    text-align: left;
}

.sidebar .login:hover {
    color: #fff;
}

.sidebar .demo {
    background-color: #fff;
    color: white;
}

.sidebar .demo:hover {
    background-color: #218838;
}

.sidebar .live-demo {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    text-align: left;
}

.sidebar .live-demo:hover {
    background-color: #fff;
    color: #fff;
}

/* Adjust Sidebar Links */
.sidebar ul li a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #444;
}

.sidebar ul li a:last-child {
    border-bottom: none;
}
/* Policy Sections */
.policy-section {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
}

.policy-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.policy-section ul {
    list-style-type: disc;
    margin-left: 40px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

/* Footer Adjustments */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer-links {
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-links a:hover {
    color: #ffffff8f;
}
/* Genel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Onest", serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

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


/* Footer */
footer {

    padding: 60px 0;
    color: white;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer-links {
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-links a, .footer-links button {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

.footer-links a:hover, .footer-links button:hover {
    color: #fff;
}

.footer-social a {
    margin: 0 10px;
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

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

.newsletter {
    width: 100%;
    max-width: 500px;
    text-align: center;
}


