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

body {
    font-family: "Poppins", serif;
    background-color: #e1d1d8;
    color: #eee;
    line-height: 1.6;
}

header {
    background-image: radial-gradient(farthest-side at 50% 15%, #601233 50%, #98204d 110%, #fffeaf 200%);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ffffff6e;
}

header .logo {
    font-size: 2em;
    font-weight: 100;
    border-bottom: 2px solid;
    line-height: 40px;
    max-width: fit-content;
    margin: auto;
    color: #fbffd0;
    text-transform: uppercase;
}

header a {
    color: #fbffd0;
    text-decoration: none;
}

.tighter {
    font-weight: 500;
}

header .tagline {
    font-size: 1em;
    font-weight: 200;
    color: #eee;
    margin-top: 5px;
}

.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%); /* Tamamen gizle */
    background-image: radial-gradient(farthest-side at 50% 15%, #601233 50%, #98204d 110%, #fffeaf 200%);
    color: #eee;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid #ffffff6e;
}

body.scrolled .sticky-bar {
    transform: translateY(0);
}

.sticky-left {
    font-size: 1.5em;
    font-weight: 100;
    line-height: 40px;
    color: #fbffd0;
    text-transform: uppercase;
}

.sticky-left a {
    color: #fbffd0;
    text-decoration: none;
}

.sticky-right {
    font-size: 1em;
    font-weight: 200;
}

.hero {
    display: flex;
    height: 250px;
    background-image: radial-gradient(farthest-side at 50% 75%, #5c3142 10%, #29101a 150%);
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2em;
    font-weight: 400;
    color: #fff;
}

.hero p {
    color: #e2e6c89e;
    font-weight: 300;
}

.heroInside {
    display: flex;
    height: 120px;
    background-image: linear-gradient(180deg, #ffffffa6 0%, #e2cfd8 100%);
    text-align: center;
    justify-content: center;
    align-items: center;
    border-top: 5px solid black;
    padding-top: 30px;
}

.appHead {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 1160px;
    justify-content: space-between;
}

.appHead img {
    width: 80px;
    border-radius: 0 20px 10px 10px;
}

.titleSpace {
    width: 750px;
    text-align: left;
    color: #331620;
}

.titleSpace p {
    margin: 0 0 -5px 0;
}

.titleSpace h1 {
    font-size: 1.75em;
    font-weight: 600;
    line-height: 1.3em;
}

.app-button {
    padding: 0.5em 0;
    width: 295px;
    font-family: "Poppins", serif;
    border-radius: 0.5em;
    color: #570000;
    font-size: 1.5em;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.1sease, box-shadow 0.1sease;
    -webkit-tap-highlight-color: transparent;
    background-image: linear-gradient(to bottom, #fff, #ffc6c6);
    border: 3px solid #ba5763;
    box-shadow: 0 8px 10px rgb(194 28 28 / 10%), 0px 2px 2px rgb(255 14 113 / 20%);
}

.app-button:active {
    background-color: #f3f4f6;
    box-shadow: -1px 2px 5px rgba(81,41,10,0.15),0px 1px 1px rgba(81,41,10,0.15);
    transform: translateY(0.125rem);
}

.app-button:focus {
    box-shadow: #ba5763 0 0 0 4px, -6px 8px 10px rgba(81, 41, 10, 0.1), 0px 2px 2px rgba(81, 41, 10, 0.2);
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.mainAppPadding {
    padding: 20px 20px !important;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.site-card {
    border-top: 1px solid #ffffffc4;
    border-bottom: 1px solid #0000004a;
    background-image: linear-gradient(180deg, #ffffff26 10%, #ad8f9b45 100%);
    padding: 20px 20px 10px 20px;
    border-radius: 5px;
}

.site-card a {
    text-decoration: none;
}

.allSites {
    font-size: 0.8em;
    color: #81636b;
    transition: color 0.3s ease;
}

.allSites:hover {
    color: #61313e;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}

.site-card h2 {
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: 500;
    color: #331620;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.site-card ul {
    list-style: none;
}
    
.site-card ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #7e5d65;
    padding: 0 10px 0 0;
    color: #feffdf;
    font-weight: 300;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.site-card ul li:hover {
    background-color: #61313e;
}

.item-name {
    display: flex;
    align-items: center;
}

.site-card ul li img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 0 100px 100px 0;
    border-radius: 5px 0 0 5px;
}

.site-card ul li .item-rating {
    font-size: 0.8em;
    color: #ffffffb0;
    font-weight: 200;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #a7909829;
    color: #282324;
    padding: 20px;
    border-radius: 5px;
    border-top: 1px solid #ffffffc4;
    border-bottom: 1px solid #0000004a;
}

.blog-card h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    line-height: 2em;
    font-weight: 500;
    color: #282324;
    border-bottom: 1px dashed #2823248a;
}

.blog-card h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 500;
}

.blog-card p {
    margin-bottom: 15px;
    line-height: 1.56;
    font-weight: 300;
}

.static-container {
    color: #282324;
}

.static-container p {
    margin-top: 10px;
}

.static-container h1 {
    border-bottom: 1px dashed #2823248a;
    margin-bottom: 20px;
}

.static-container h2 {
    margin-top: 20px;
    font-weight: 500;
}

.static-container a {
    color: #600b0b;
    transition: color 0.3s ease;
}

.static-container a:hover {
    color: #cf0046;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}

.dividerDiv {
    border-top: 3px solid #4f0919;
    width: 100%;
}

.appContainer {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
}

.left-column {
    width: 800px;
    color: #331620;
    text-align: center;
}

.left-column p {
    line-height: 1.6;
    font-weight: 300;
    padding-bottom: 15px;
    text-align: left;
}

.left-column h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    line-height: 2em;
    font-weight: 500;
    color: #282324;
    border-bottom: 1px dashed #2823248a;
    text-align: left;
}

.left-column img {
    border-radius: 20px;
    padding-bottom: 10px;
}

.left-column ul {
    text-align: left;
    list-style: inside;
}

.left-column li {
    padding-bottom: 10px;
}

.right-column {
    width: 300px;
    height: 400px;
    color: #331620;
    margin-left: 60px;
    position: sticky;
    top: 70px;
    padding: 0 10px;
}

.right-column h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    line-height: 2em;
    font-weight: 500;
    color: #282324;
    border-bottom: 1px dashed #2823248a;
    text-align: left;
}

.right-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-column li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    align-items: center;
}

.left {
    font-weight: 500;
}

.right {
    font-weight: 300;
    font-size: 0.9em;
}

.right a {
    color: #600b0b;
    transition: color 0.3s ease;
}

.right a:hover {
    color: #cf0046;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}

footer {
    background-color: #4b373d;
    box-shadow: inset 0 3px 0 #211a1c;
    padding: 25px 0;
    text-align: center;
    color: #aaa;
    font-size: 0.9em;
    font-weight: 300;
}

footer .footer-links {
    margin: auto;
    padding-top: 10px;
    border-top: 1px dashed #ffffff3d;
    max-width: 500px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd4ec;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}

footer .footer-text {
    margin-bottom: 10px;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
    font-weight: 400;
    border-top: 1px dashed #ffffff3d;
    max-width: 500px;
    margin: auto;
    padding-top: 10px;
    margin-top: 10px;
}

footer p {
    padding-bottom: 5px;
}

.press-button {
    padding: 0.65em 1.4em;
    background-image: linear-gradient(180deg, #c0005b 50%, #e31d71 80%, #e96bad 100%);
    font-family: "Poppins", serif;
    border: 1px solid #d9468a;
    border-radius: 0.75em;
    color: #fff;
    font-size: 1.5em;
    font-weight: 500;
    margin-top: 0.75em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 5px 0 #841e53;
    -webkit-tap-highlight-color: transparent;
}
    
.press-button:active {
    transform: translateY(5px);
    box-shadow: none;
}

.frameClass {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border: 0;
}

.badges {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.badges img {
    width: 125px;
}

.sitePath {
    font-size: 0.8em;
    font-weight: 300;
}

.sitePath a {
    color: #600b0b;
    transition: color 0.3s ease;
}

.sitePath a:hover {
    color: #cf0046;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}

@media (max-width: 1160px) {
    .appContainer {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 768px) {    
    header .logo {
        font-size: 1.8em;
    }

    .hero h1 {
        font-size: 1.4em;
    }

    .heroInside {
        height: auto !important;
    }

    .sticky-right {
        display: none;
    }

    .sticky-bar {
        justify-content: center;
    }

    .appContainer {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        width: 100%;
        margin: 0;
    }

    .right-column {
        position: relative;
        top: auto;
        margin-top: 20px;
    }

    .left-column h2 {
        font-size: 1.2em;
    }

    .left-column img {
        max-width: 100% !important;
    }

    .appHead {
        display: flex;
        flex-direction: column !important;
        width: 100% !important;
    }

    .appHead img {
        margin: 0 0 20px 0 !important;
    }

    .titleSpace {
        width: auto !important;
        text-align: center;
        margin-bottom: 20px;
    }

    .badges {
        margin-top: 80px !important;
    }

    .badges img {
        width: 100px !important;
    }

    .topTenMargin {
        margin-top: 10px;
    }
}