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

html{
    scroll-behavior:smooth;
}

body{
    background:#090914;
    color:white;
    font-family:'Segoe UI',sans-serif;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:35px 0;
    flex-wrap:wrap;
}

.logo{
    font-size:3.2rem;
    font-weight:800;
    color:#ffffff;
    letter-spacing:-1px;
}

/* ==========================
   SEARCH
========================== */

.search-form{
    display:flex;
    gap:12px;
    align-items:center;
}

.search-form input{
    width:420px;
    padding:18px 24px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.12);

    border-radius:20px;

    color:white;
    font-size:16px;

    transition:all .3s ease;

    outline:none;
}

.search-form input::placeholder{
    color:rgba(255,255,255,0.55);
}

.search-form input:focus{
    border-color:#a855f7;

    box-shadow:
        0 0 0 3px rgba(168,85,247,.15),
        0 10px 30px rgba(168,85,247,.25);

    transform:translateY(-2px);
}

.search-form button{
    border:none;

    padding:18px 34px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #a855f7,
        #9333ea
    );

    color:white;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.search-form button:hover{
    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(168,85,247,.4);
}
/* ==========================
   CATEGORY BAR
========================== */

.categories{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.categories a{
    text-decoration:none;
    color:white;

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    transition:0.3s;

    font-size:18px;
}

.categories a:hover{
    background:#a855f7;
    transform:translateY(-3px);

    box-shadow:
    0 0 20px rgba(168,85,247,0.5);
}

/* ==========================
   HERO
========================== */

.hero{
    margin-bottom:50px;

    background:
    linear-gradient(
        135deg,
        rgba(168,85,247,.15),
        rgba(59,130,246,.05)
    );

    border:1px solid rgba(255,255,255,.05);

    border-radius:35px;

    padding:45px 50px;

    position:relative;

    overflow:hidden;
}

.hero-content{
    max-width:720px;
}

.hero-badge{
    display:inline-block;

    padding:12px 22px;

    background:rgba(168,85,247,.15);

    color:#c084fc;

    border-radius:50px;

    margin-bottom:25px;

    font-size:15px;
}

.hero h1{
    font-size:4rem;

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;
}

.hero p{
    font-size:1.3rem;

    color:#bdbdbd;

    margin-bottom:20px;

    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    text-decoration:none;

    background:#a855f7;

    color:white;

    padding:18px 34px;

    border-radius:16px;

    font-weight:600;

    transition:0.3s;
}

.btn-primary:hover{
    background:#9333ea;
}

.btn-secondary{
    text-decoration:none;

    color:white;

    padding:18px 34px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.1);

    transition:0.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.05);
}

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:25px;
}

.stat h3{
    color:#a855f7;
    font-size:34px;
    margin-bottom:6px;
}

.stat span{
    color:#9ca3af;
    font-size:15px;
}

/* ==========================
   SECTION
========================== */

.section-header{
    margin-bottom:10px;
}

.section-header span{
    color:#a855f7;
    font-weight:600;
    font-size:18px;
}

.section-title{
    font-size:4rem;
    margin-bottom:40px;
    font-weight:800;
}

/* ==========================
   GRID
========================== */

.wallpaper-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(320px,1fr));

    gap:35px;

    margin-bottom:50px;
}

/* ==========================
   CARD
========================== */

.card{
    background:#131320;

    border-radius:28px;

    overflow:hidden;

    transition:0.35s;

    border:1px solid rgba(255,255,255,0.05);
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 0 25px rgba(168,85,247,0.25);
}

.card img{
    width:100%;

    height:450px;

    object-fit:cover;

    display:block;
}

.card-content{
    padding:24px;
}

.card-title{
    text-decoration:none;

    color:white;

    font-size:1.8rem;

    font-weight:700;

    display:block;

    margin-bottom:14px;
}

.download-count{
    color:#9ca3af;
    font-size:15px;
}

/* ==========================
   MOBILE
========================== */

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .logo{
        font-size:2.2rem;
    }

    .search-form{
        width:100%;
    }

    .search-form input{
        width:100%;
    }

    .search-form button{
        padding:18px;
    }

    .categories{
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .categories a{
        white-space:nowrap;
        font-size:16px;
    }

    .hero{
        flex-direction:column;
        text-align:center;

        padding:35px 20px;

        border-radius:25px;

        gap:30px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-image{
        width:100%;
    }

    .hero-image img{
        max-width:280px;
    }

    .hero h1{
        font-size:2.5rem;
        line-height:1.1;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-stats{
        justify-content:center;
        gap:25px;
        flex-wrap:wrap;
    }

    .section-title{
        font-size:2.7rem;
    }

    .wallpaper-grid{
        grid-template-columns:1fr;
    }

    .card img{
        height:350px;
        object-fit:cover;
    }

    .card-title{
        font-size:1.5rem;
    }
}


.hero-image img{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.hero-content{
    flex:1;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    max-width:450px;
    width:100%;
    filter:
        drop-shadow(0 0 40px rgba(168,85,247,.5));

    animation:float 4s ease-in-out infinite;
}

.hero-image{
    position:relative;
}

.hero-image::before{
    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:#a855f7;

    filter:blur(120px);

    opacity:.25;

    border-radius:50%;

    z-index:-1;

    animation:pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }
}

.back-btn{
    display:inline-block;
    margin-top:15px;
    margin-bottom:30px;
    color:#c084fc;
    text-decoration:none;
    font-weight:600;
    font-size:18px;
}

.back-btn:hover{
    color:white;
}

.footer{
    margin-top:80px;
    padding:60px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:40px;
}

.footer h3{
    margin-bottom:15px;
}

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

.footer p{
    color:#9ca3af;
    line-height:1.8;
}

.footer a{
    display:block;
    margin-bottom:10px;
    color:#c084fc;
    text-decoration:none;
}

.footer a:hover{
    color:white;
}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}

.pagination{
    margin:50px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.pagination a{
    text-decoration:none;
    color:white;
    background:#a855f7;
    padding:12px 20px;
    border-radius:12px;
    transition:.3s;
}

.pagination a:hover{
    background:#9333ea;
}

.pagination span{
    color:#cbd5e1;
}

/* ====================================
   PAGE LAYOUT
==================================== */

.page-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

/* ====================================
   HEADER
==================================== */

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);

    color: #d8d8d8;
    font-size: 14px;
    font-weight: 600;

    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 22px;
    color: #b8b8b8;
}

/* ====================================
   CONTENT CARDS
==================================== */

.page-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 30px;
    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-icon {
    font-size: 24px;
}

.page-section h2 {
    color: white;
    font-size: 28px;
    margin: 0;
}

.page-section p {
    color: #d0d0d0;
    line-height: 1.9;
    font-size: 16px;
}

/* ====================================
   LISTS
==================================== */

.page-list {
    padding-left: 20px;
    margin-top: 15px;
}

.page-list li {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 12px;
}

/* ====================================
   DIVIDER
==================================== */

.section-divider {
    display: none;
}

/* ====================================
   HIGHLIGHT BOXES
==================================== */

.highlight-box {
    background: linear-gradient(
        135deg,
        rgba(147,51,234,0.15),
        rgba(79,70,229,0.15)
    );

    border: 1px solid rgba(147,51,234,0.25);

    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 24px;
}

.highlight-box p {
    color: #d0d0d0;
    line-height: 1.8;
}

/* ====================================
   SPECIAL BOXES
==================================== */

.future-box {
    border-left: 5px solid #6366f1;
}

.disclaimer-box {
    border-left: 5px solid #f59e0b;
}

.contact-box {
    border-left: 5px solid #10b981;
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {

    .page-title {
        font-size: 40px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .page-section {
        padding: 24px;
    }

    .page-section h2 {
        font-size: 24px;
    }
}

/* =========================
   BLOG GRID
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

/* =========================
   BLOG CARD
========================= */

.blog-card {
    display: block;
    text-decoration: none;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;
    overflow: hidden;

    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-10px);

    border-color: rgba(168,85,247,0.5);

    box-shadow:
        0 20px 50px rgba(168,85,247,0.18);
}

/* =========================
   IMAGE
========================= */

.blog-image-wrapper {
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.06);
}

/* =========================
   CONTENT
========================= */

.blog-content {
    padding: 28px;
}

.blog-date {
    display: inline-block;

    color: #c084fc;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 15px;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content h2 {
    color: white;

    font-size: 30px;
    line-height: 1.3;

    margin-bottom: 15px;
}

.blog-content p {
    color: #b8b8b8;

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 24px;
}

.read-more {
    color: #c084fc;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.blog-card:hover .read-more {
    color: white;
}

/* =========================
   EMPTY STATE
========================= */

.empty-state {
    text-align: center;

    padding: 100px 20px;

    color: #888;

    font-size: 18px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-content h2{
        font-size:24px;
    }

    .blog-image{
        height:240px;
    }

}



.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.navbar-left{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    gap:24px;
}

.nav-links a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#a855f7;
}

.blog-header{
    margin-bottom:50px;
}

.blog-badge{
    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(168,85,247,.12);

    border:1px solid rgba(168,85,247,.2);

    color:#d8b4fe;

    font-size:14px;

    font-weight:600;
}

.blog-header h1{
    margin-top:20px;

    font-size:52px;

    font-weight:800;

    line-height:1.1;

    color:white;
}

.blog-header p{
    margin-top:15px;

    max-width:700px;

    color:#b8b8b8;

    font-size:18px;

    line-height:1.8;
}

.blog-stats{
    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:25px;
}

.blog-stats span{
    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:10px 18px;

    border-radius:999px;

    color:#cbd5e1;

    font-size:14px;

    transition:.3s;
}

.blog-stats span:hover{
    border-color:#a855f7;

    transform:translateY(-2px);
}

.blog-detail-container{
    max-width:1300px;
    margin:30px auto 80px;
    padding:0 20px;
}

.back-btn{
    display:inline-flex;
    align-items:center;

    padding:12px 20px;

    margin-bottom:25px;

    border-radius:999px;

    background:rgba(168,85,247,.10);

    border:1px solid rgba(168,85,247,.20);

    color:#d8b4fe;

    text-decoration:none;

    transition:.3s;
}

.back-btn:hover{
    transform:translateY(-2px);

    background:rgba(168,85,247,.18);
}

.blog-hero{
    position:relative;

    border-radius:30px;

    overflow:hidden;

    margin-bottom:50px;

    border:1px solid rgba(255,255,255,.08);
}

.hero-image{
    width:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:60px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        transparent
    );
}

.hero-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(168,85,247,.15);

    border:1px solid rgba(168,85,247,.25);

    color:#d8b4fe;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}

.hero-overlay h1{
    font-size:64px;

    line-height:1.1;

    font-weight:800;

    color:white;

    max-width:900px;

    margin-bottom:15px;
}

.hero-meta{
    color:#cbd5e1;

    font-size:16px;
}

.article-container{
    display:flex;
    justify-content:center;
}

.article-content{
    max-width:1000px;
    width:100%;

    font-size:20px;

    line-height:2;

    color:#d6d6d6;
}

.article-content p{
    margin-bottom:28px;
}

.article-content h2{
    color:white;

    margin-top:50px;
    margin-bottom:20px;

    font-size:34px;
}

.article-content h3{
    color:white;

    margin-top:40px;
    margin-bottom:15px;

    font-size:28px;
}

.article-content img{
    width:100%;

    border-radius:20px;

    margin:30px 0;
}

.article-content ul,
.article-content ol{
    padding-left:30px;

    margin-bottom:25px;
}

.article-content blockquote{
    border-left:4px solid #a855f7;

    padding-left:20px;

    margin:30px 0;

    color:#cbd5e1;

    font-style:italic;
}

@media(max-width:768px){

    .hero-image{
        height:400px;
    }

    .hero-overlay{
        padding:30px;
    }

    .hero-overlay h1{
        font-size:36px;
    }

    .article-content{
        font-size:18px;
        line-height:1.9;
    }

}

.blog-home-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:30px;
    margin-top:40px;
    margin-bottom:80px;
}

.blog-home-card{
    text-decoration:none;
    overflow:hidden;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.3s;
}

.blog-home-card:hover{
    transform:translateY(-8px);

    border-color:#a855f7;
}

.blog-home-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-home-content{
    padding:24px;
}

.blog-home-content h3{
    color:white;
    font-size:28px;
    margin-bottom:12px;
}

.blog-home-content p{
    color:#b8b8b8;
    line-height:1.7;
    margin-bottom:15px;
}

.blog-home-content span{
    color:#c084fc;
    font-weight:600;
}

/* =========================
   DESKTOP WALLPAPERS
========================= */

.desktop-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(360px,1fr));
    gap:24px;
    margin-top:40px;
}

.desktop-grid .card{
    background:#0f1023;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    overflow:hidden;
    transition:all .3s ease;
}

.desktop-grid .card:hover{
    transform:translateY(-6px);
    border-color:#a855f7;
    box-shadow:0 20px 40px rgba(168,85,247,.15);
}

.desktop-grid .card img{
    width:100%;
    aspect-ratio:16/9;
    height: 280px;
    object-fit:cover;
    display:block;
}

.desktop-grid .card-content{
    padding:20px;
}

.desktop-grid .card-title{
    display:block;
    color:white;
    text-decoration:none;
    font-size:28px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:12px;
}

.desktop-grid .download-count{
    color:#9ca3af;
    font-size:15px;
}


.desktop-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.desktop-card{
    background:#0f1023;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
}   

.desktop-card .card-content{
    padding:24px;
    padding-bottom: 50px;
}

.device-badge{
    padding:6px 12px;
    border-radius:20px;
    font-size:.8rem;
    font-weight:600;
    margin-bottom:12px;
}

.device-badge.mobile{
    background:(0,255,180,.12);
    color:#6fffd2;
    }

.device-badge.desktop{
    background:(147,51,234,.15);
    color:#c084fc;
}


.desktop-fristcard{
    background:#0f1023;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    transition:.3s ease;
}

.desktop-fristcard:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.desktop-fristcard img{
    width:100%;
    height:350px;
    object-fit:cover;
    display: block;
}

.desktop-fristcard .card-content{
    padding:20px;
}

.desktop-fristcard .card-title{
    display:block;
    color:#fff;
    font-size:2rem;
    font-weight:700;
    text-decoration:none;
    margin:10px 0;
    line-height:1.3;
}

.desktop-fristcard .card-title:hover{
    color:#b16cff;
}

.desktop-fristcard .download-count{
    color:#a8a8b3;
    font-size:1rem;
}

.desktop-fristcard .device-badge{
    display:inline-block;
    font-size:.9rem;
    color:#b16cff;
    font-weight:600;
    margin-bottom:8px;
}

.wallpaper-grid .card-title{
    display:none;
}

.wallpaper-grid .download-count{
    display:none;
}

.desktop-card .card-content{
    display: none;
}

.desktop-card {
    padding-bottom: 50px;
}

.related-blogs-section{
    margin-top:80px;
}

.related-blogs-section h2{
    color:white;
    margin-bottom:25px;
}

.related-blogs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.related-blog-card{
    background:#101225;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
}

.related-blog-card:hover{
    transform:translateY(-5px);
}

.related-blog-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.related-blog-card h3{
    color:white;
    padding:15px;
    font-size:20px;
}

.related-blog-card p{
    color:#999;
    padding:0 15px 15px;
}