/*
Theme Name: Faldan Theme
Theme URI: https://faldans.app
Author: Faldan
Version: 1.0
*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: #05000d;
    background-image:
        radial-gradient(ellipse at top right, rgba(27, 10, 48, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(40, 10, 60, 0.8) 0%, transparent 70%);
    color: #fff;
    position: relative;
}

/* STAR CANVAS */
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

/* İçeriklerin canvas üstüne çıkması için */
.hero,
.section,
.cta,
footer {
    position: relative;
    z-index: 1;
}

/* HEADER - hidden */
.main-header {
    display: none;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-logo {
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 28px rgba(200, 100, 255, 0.9));
    }
}

.hero h1 {
    font-size: 52px;
    background: linear-gradient(90deg, #FFD700, #ffffff, #FFD700);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.hero p {
    margin-top: 25px;
    font-size: 22px;
    opacity: 0.85;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
    color: #FFD700;
}

/* GRID */
.grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 25px;
    padding: 35px;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    text-align: center;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

.card h3 {
    margin-bottom: 15px;
    color: #FFD700;
    font-size: 22px;
}

.card p {
    opacity: 0.85;
}

.post-link {
    color: #FFD700;
    text-decoration: none;
}

.post-link:hover {
    text-decoration: underline;
}

/* CTA */
.cta {
    text-align: center;
    padding: 60px 20px;
}

.play-badge img {
    height: 90px;
    transition: 0.4s;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.6));
}

.play-badge img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 0 40px rgba(0, 255, 0, 1));
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px;
    opacity: 0.6;
    font-size: 14px;
}

/* PAGINATION */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 0;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
}

.custom-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-pagination .page-numbers:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.custom-pagination .current {
    background: #FFD700;
    color: #000;
}

/* MOBILE */
@media (max-width:768px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero-logo {
        height: 50px;
    }

    .hero p {
        font-size: 18px;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: auto;
    }

    .card {
        padding: 25px;
    }
}