@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0; /* Initial opacity set to 0 to start the animation */
    animation: fade-in 2s ease forwards; /* Animation applied only once and keeps the final state */
}

* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

  .loading-bar-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #ffb200;
            z-index: 9999;
            overflow: hidden; /* İçeri taşan kısmı gizle */
        }

        .loading-bar {
            height: 100%;
            width: 0;
            background-color: #ffb200; /* Yüklenecek olan kısmın rengi */
            animation: progress 2s linear forwards; /* progress animasyonunu kullan */
        }

        @keyframes progress {
            0% { width: 0; } /* Yükleme çubuğunun başlangıç genişliği */
            100% { width: 100%; } /* Yükleme çubuğunun son genişliği */
        }
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

::-webkit-scrollbar-thumb {
    border-radius: 80px;  
    background-color: #ffb200;
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
    position: relative;
    text-decoration: none;
    color: #06f;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0c0c0c;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    max-width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #f9e444;
    transition: all 0.3s ease;
}

.link a:hover::after {
    width: 70%;
}

.btn {
   padding: 1rem 1.7rem;
    font-size: 1rem;
    font-weight: 650;
    color: #ffffff;
    text-align: center;
    background-color: #000000;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.7s ease;
}

.btn:hover {
    color: #000000;
    background-color: #ffffff;
}

.btn2 {
    padding: 1rem 1.7rem;
    font-size: 1rem;
    font-weight: 650;
    color: #000000;
    background-color: #ffffff;
    border-radius: 35px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.67, 0.51, 0.25, 1);
}

.btn2:hover {
    color: #ffffff;
    background-color: #101010;

}

.btn3 {
    padding: 1rem 1.7rem;
    font-size: 1rem;
    font-weight: 650;
    color: #000000;
    background-color: #ffffff;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.67, 0.51, 0.25, 1);
    text-align: center;
}

.btn3:hover {
    color: #ffffff;
    background-color: #101010;

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

.blur {
    position: absolute;
    box-shadow: 0 0 450px 30px #ffb200;
    z-index: -100;
}

header {
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

header .content h4 {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
}

header .content h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

header .content h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

header .content p {
    margin-bottom: 2rem;
    color: #ccc;
}

header .image {
    position: relative;
}

header .image::before {
    content: "G";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 38rem;
    font-weight: 400;
    line-height: 20rem;
    color: #606060;
    opacity: 0.2;
    z-index: -100;
}

header .imageinvalid {
    position: relative;
}
header .imageinvalid::before {
    content: "";
    position: absolute;
    top: -44px;
    left: 54%;
    transform: translateX(-50%);
    font-size: 38rem;
    font-weight: 400;
    line-height: 20rem;
    color: #606060;
    opacity: 0.2;
    z-index: -100;
}
header .imageinvalid img {
    max-width: 600px;
    margin: auto;
}

header .imagenewurl {
    text-align: center;
    margin: auto;
    position: relative;
}
header .imagenewurl::before {
    content: "";
    position: absolute;
    top: -44px;
    left: 54%;
    transform: translateX(-50%);
    font-size: 38rem;
    font-weight: 400;
    line-height: 20rem;
    color: #606060;
    opacity: 0.2;
    z-index: -100;
}
header .imagenewurl img {
    max-width: 900px;
    margin: auto;
}

    
header .imageticket {
    position: relative;
}
header .imageticket::before {
    position: absolute;
    top: -44px;
    left: 54%;
    transform: translateX(-50%);
    font-size: 38rem;
    font-weight: 400;
    line-height: 20rem;
    color: #606060;
    opacity: 0.2;
    z-index: -100;
}
header .imageticket img {
    max-width: 600px;
    margin: auto;
}


header .image img {
    max-width: 600px;
    margin: auto;
}

section .header {
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
}

.features {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.features .card {
    background-color: #27272a;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.features .card:hover {
    background-color: #323232;
    border-color: #fff;
}

.features .card span {
    display: inline-block;
    background-color: #f6de66;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    border-radius: 5px;
}

.features .card h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.features .card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.features .card a {
    color: #fff;
    transition: all 0.7s ease;
}

.features .card a:hover {
    color: #f6d266;
}

.sub-header {
    max-width: 600px;
    margin: auto;
    padding-bottom: 1rem;
    text-align: center;
    color: #ccc;
}

.pricing {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing .card {
    padding: 3rem 2rem;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.7s ease;
}

.pricing .card:hover {
    border-color: #ffb200;
}

.pricing .card .content {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing .card h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

.pricing .card h3 {
    color: #37ff00;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 2px solid #fff;
}

.pricing .card h2-2 {
    color: #404040;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: solid;
    text-decoration-line: line-through;
}

.pricing .card p {
    color: #898181;
    margin-bottom: 0.75rem;
}

.pricing .card p i {
    color: #ffb200;
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.pricing .card button {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.pricing .card button:hover {
    background-color: #bc8d00;
    border-color: #b48b06;
}

.icon-link {
    align-items: center;
    text-decoration: none; /* Link altındaki varsayılan alt çizgiyi kaldırır */
}

.icon {
    width: 28px; /* İkonun genişliği */
    height: 28px; /* İkonun yüksekliği */
    margin-right: 5px; /* İkon ile metin arasındaki boşluk */
}

footer {
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 2rem;
}

footer .column .logo {
    max-width: 100px;
    margin-bottom: 2rem;
}

footer .column p {
    color: #ccc;
    margin-bottom: 2rem;
}

footer .column .socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .column .socials a {
    padding: 8px 8px;
    color: #ccc;
    border: 1px solid #ccc;
    font-size: 1.25rem;
    border-radius: 100%;
    transition: all 0.3s ease;
}

footer .column .socials a:hover {
    color: #fff;
    background-color: #5f5f5f;
    border-color: #282828;
}

footer .column h4 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

footer .column>a {
    display: flex;
    color: #ccc;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

footer .column>a:hover {
    color: #ffb200;
}

.copyright {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}
.menu-btn {
    display: none;
    cursor: pointer;
}

.menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: 0.4s;
}

@media (max-width: 899px) {
   .menu-btn {
    display: block;
    z-index: 1001;
    margin: 4px;
    border-radius: 10px;
    padding: 11px 11px 7px;
    background-color: #000000;
    width: auto;
    transition: background-color 0.3s ease; /* Tıklama animasyonu için geçiş efekti */
}

.menu-btn:hover {
    background-color: #222222; /* Tıklama animasyonu için arka plan rengi değişimi */
}

.nav-links {
    display: none;
    flex-direction: column;
    background-color: #000000;
    padding: 44px;
    position: absolute;
    top: 61px;
    right: 20px;
    left: auto;
    z-index: 1000;
    border-radius: 35px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Menü açılış animasyonu için geçiş efekti */
    transform: translateX(100%); /* Menü başlangıçta sağda gizlenmiş olarak başlar */
    opacity: 0; /* Başlangıçta menü görünmez olur */
}

.nav-links.open {
    display: flex;
    width: auto;
    transform: translateX(0); /* Menü açıldığında sağdan sola doğru gelme animasyonu */
    opacity: 1; /* Menü görünür olur */
}

    .nav-links .link {
        margin-bottom: 10px;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
    }

    .nav-links a:hover {
        text-decoration: underline;
    }

    .nav-links .link a {
        position: relative;
        text-decoration: none;
        color: #fff;
    }

    .nav-links .link a:hover {
        text-decoration: none;
    }

    .btn2 {
        display: none;
    }

    header {
        grid-template-columns: repeat(1, 1fr);
    }

    header .image {
        grid-area: 1/1/2/2;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        grid-template-columns: 1fr 200px;
    }
}
@media (max-width: 600px) {
    header .image::before {
        display: none;
    }

    .features {
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing {
        grid-template-columns: repeat(1, 1fr);
    }

    .card {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        grid-template-columns: 1fr 150px;
    }
}
     