@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

:root {
    --color-primary-rgb: 98, 179, 212;
    --color-primary-hex: #62b3d4;
    --color-background-dark-rgb: 12, 11, 10;
    --color-background-dark-hex: rgb(12, 11, 10);
    --color-background-light-rgb: 251, 249, 247;
    --color-background-light-hex: #fbf9f7;
    --color-accent-yellow-rgb: 229, 186, 37;
    --color-accent-yellow-hex: #e5ba25;
    --color-neutral-gray-rgb: 217, 217, 217;
    --color-neutral-gray-hex: #D9D9D9;
    --color-cd-white: #fbfeff;
    --color-error-red-rgb: 154, 3, 30;
    --color-error-red-hex: #9A031E;
    --gray-soft-hex: #555;
    --color-primary-dark-hex: #00adf7;
    --color-primary-dark-rgb: 0, 173, 247;
    --color-neutral-gray-hex: #D9D9D9;
    --color-text-dark: #002947;
    --color-secondary-blue-hex: #666666;
    --s: #e9687b;
    --shadow: 3px 3px 8px rgba(184, 185, 190, .6),
        -3px -3px 8px rgba(255, 255, 255, .9);

    /* Radius & spacing */
    --radius: 10px;
    --card-radius: 16px;
    --spacing-sm: 8px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
}

body {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    line-height: 1.25;
    /* letter-spacing: -.01em; */
    font-weight: 600;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'calt';
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    background-color: rgb(var(--color-neutral-gray-rgb), .9);
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.blurred_gradient {
    position: fixed;
    top: 80%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-dark-hex) 0%, var(--color-primary-dark-hex) 50%, var(--color-primary-hex) 100%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: moveGradient 8s ease-in-out infinite alternate;
    z-index: -1;
    /* Arka planda kalması için */
}

.blurred_gradient2 {
    position: fixed;
    top: 5%;
    left: 55%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-hex) 0%, var(--color-primary-hex) 50%, var(--color-primary-dark-hex) 100%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: moveGradient 8s ease-in-out infinite alternate;
    z-index: -1;
    /* Arka planda kalması için */
}

.blurred_gradient3 {
    position: fixed;
    top: 80%;
    left: 80%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--s) 0%, var(--s) 50%, var(--s) 100%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: moveGradient 8s ease-in-out infinite alternate;
    z-index: -1;
    /* Arka planda kalması için */
}

/* Gradient hareket animasyonu */
/* Gradientlerin yumuşak hareketleri için animasyon */
@keyframes moveGradient {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.base_card {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translate(-50%);
    background: linear-gradient(180deg, #1e1e1e 0%, #242424 100%);
    color: #ffffff;
    min-height: 140px;
    width: min(92vw, 880px);
    max-width: 880px;
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.base_copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 72%;
}

.base_copy span {
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1.15;
}

.base_copy p {
    font-size: 0.98rem;
    opacity: 0.78;
}

.base_logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    pointer-events: none;
}

.loader {
    background: linear-gradient(180deg, #0d0d0f 0%, #1a1b1f 100%);
    color: var(--color-background-light-hex);
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader img {
    width: clamp(48px, 8vw, 90px);
    height: auto;
    animation: loader-pulse 1.4s ease-in-out infinite;

}

.loader span {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.loader .dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999rem;
    background-color: var(--color-background-light-hex);
    opacity: 0.9;
    animation: loader-dot 0.9s ease-in-out infinite;
}

.dots .dot:nth-child(2) {
    animation-delay: 0.12s;
}

.dots .dot:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes loader-dot {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    60% {
        transform: translateY(-4px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

@keyframes loader-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

main {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    background-color: #fff;
    height: 72vh;
    max-width: 880px;
    width: min(92vw, 880px);
    border-radius: 22px 22px 0 0;
    padding: 26px 26px 0px;
    box-shadow: 0 24px 56px rgba(36, 104, 150, 0.18);
    border: 1px solid #ebe3ff;
    transition: height 0.3s ease, box-shadow 0.28s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

main.is-expanded {
    height: 100vh;
    box-shadow: 0 30px 70px rgba(70, 36, 150, 0.22);
}

main .notch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    cursor: pointer;
}

main .notch::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: 58px;
    height: 5px;
    background: #dddddd;
    border-radius: 999rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

main .screen {
    border: 2px solid rgba(175, 175, 175, 0.18);
    flex: 1;
    min-height: 0;
    overflow: auto;
    border-radius: 16px 16px 0 0;
    padding: 10px 10px 14px;
}

.goto{
    display: flex;
    justify-content: flex-start;
    align-items: start;
}

.goto a{
    text-decoration: none;
    color: var(--gray-soft-hex);
    font-weight: 600;
}
.cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 6px;
}

.card {
    background: #F3F3F3;
    border-radius: 18px;
    padding: 18px 20px;
    min-height: 114px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-decoration: none;
    color: #111111;
    transition: background 0.5s ease-in-out, box-shadow 0.2s ease;
    position: relative;
}
.card_text i{
    position: absolute;
    top: 10px;
    left: 5px;
    color: var(--color-primary-hex);
}
.card_text h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 6px;
}

.card_text p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4b4b4b;
}

.card_icon {
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4d4d4;
    flex-shrink: 0;
   
}
.card:hover{
    background-color: #fff;
    box-shadow: 0 2px 5px #ddd;
}


.card:hover .card_icon{
     animation: arrow .5s infinite alternate linear;
}
@keyframes arrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(10px);
    }
}

@media (max-width: 640px) {
    .card {
        padding: 16px;
        border-radius: 16px;
    }

    .card_text h3 {
        font-size: 1.05rem;
    }

    .card_text p {
        font-size: 0.85rem;
    }

    .card_icon {
        width: 38px;
        height: 38px;
    }
}


@media (max-width: 800px) {
    .base_card {
        width: 100%;
        min-height: 130px;
        padding: 18px 20px;
        gap: 12px;
    }

    .base_copy {
        max-width: 75%;
    }

    .base_copy span {
        font-size: 1.1rem;
    }

    .base_copy p {
        font-size: 0.8rem;
    }

    .base_logo {
        width: 72px;
        height: 72px;
    }

    main {
        width: 100%;
    }
}

.genarator {
    padding: 12px 8px 18px;
}

.genarator form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.container-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.container-input label {
    font-size: 0.95rem;
    color: #2b2b2b;
}

.container-input input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dedede;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.container-input input:focus {
    outline: 2px solid rgba(98, 179, 212, 0.3);
    border-color: var(--color-primary-hex);
}

.genarator button {
    margin-top: 4px;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: #1e1e1e;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.genarator button:hover {
    background: #2b2b2b;
}
