.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    backdrop-filter: blur(12px);
    background: rgba(5,10,20,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mini-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0,212,255,0.6);
    box-shadow:
        0 0 15px rgba(0,212,255,0.6),
        0 0 25px rgba(255,0,140,0.25);
    transition: 0.3s ease;
}

.mini-logo:hover {
    transform: rotate(8deg) scale(1.08);
}

.home-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#00d4ff,#ff008c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header-right li a {
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: linear-gradient(145deg,#00d4ff,#0066ff);
    transition: 0.25s ease;
    box-shadow:
        0 8px 18px rgba(0,0,0,0.35);
}

.header-right li a:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 24px rgba(0,212,255,0.35);
}

@media(max-width:768px){

    .site-header {
        flex-direction: column;
        gap: 18px;
    }

    .header-right ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-text {
        font-size: 15px;
    }
	.mini-logo {
        width: 48px;
        height: 48px;
    }
}
.header-right ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-left {
    display: flex;
    align-items: center;
}

.home-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

body {
    background: radial-gradient(circle at top,#101626,#05070d);
    overflow-x: hidden;
}

.cyber-background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%,rgba(0,212,255,0.15),transparent 25%),
        radial-gradient(circle at 80% 30%,rgba(255,0,140,0.15),transparent 25%),
        radial-gradient(circle at 50% 80%,rgba(0,255,180,0.12),transparent 25%);
    z-index: -1;
}

.hero-simple {
    text-align: center;
    padding: 90px 20px 40px;
}

.logo-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: auto;
}

.logo-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg,#00d4ff,#ff008c,#00ffb3,#00d4ff);
    background-size: 400% 400%;
    animation: rotateRing 8s linear infinite;
	    filter: blur(6px);
}

.hero-logo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.15);
    z-index: 2;
    box-shadow:
        0 0 30px rgba(0,212,255,0.6),
        0 0 60px rgba(255,0,140,0.25);
    transition: 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.06) rotate(2deg);
}

.main-title {
    margin-top: 30px;
    font-size: 62px;
    font-weight: 900;
    background: linear-gradient(90deg,#00d4ff,#ff008c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #b8c4d9;
    font-size: 20px;
}
.fun-menu {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    perspective: 1000px;
}

.fun-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.fun-menu li a {
    position: relative;
    display: inline-block;
    padding: 16px 28px;
    border-radius: 18px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(145deg,#00d4ff,#0066ff);
    transform-style: preserve-3d;
    transition: all 0.25s ease;
    box-shadow:
        0 10px 20px rgba(0,0,0,0.4),
        inset 0 1px 1px rgba(255,255,255,0.3);
	}

.fun-menu li a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg,rgba(255,255,255,0.25),transparent);
    opacity: 0;
    transition: 0.3s;
}

.fun-menu li a:hover {
    transform: translateY(-8px) rotateX(12deg) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 20px 35px rgba(0,212,255,0.45),
        0 0 30px rgba(255,0,140,0.3);
}

.fun-menu li a:hover::before {
    opacity: 1;
}

.articles-home {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
	padding: 40px 8% 80px;
}

.post-card {
    background: rgba(20,20,25,0.85);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 45px rgba(0,212,255,0.25),
        0 0 20px rgba(255,0,140,0.15);
}

.post-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.post-content {
    padding: 24px;
}

.post-content h2 {
    margin-top: 0;
    color: white;
    font-size: 24px;
}

.post-content p {
    color: #aeb7c8;
    line-height: 1.6;
}

.post-card a {
    text-decoration: none;
}

@keyframes rotateRing {
    0% {
        background-position: 0% 50%;
        transform: rotate(0deg);
    }

    100% {
        background-position: 400% 50%;
        transform: rotate(360deg);
    }
}

@media(max-width:768px){
	.logo-wrapper {
        width: 150px;
        height: 150px;
    }

    .main-title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 16px;
    }

    .fun-menu ul {
        gap: 15px;
    }

    .fun-menu li a {
        padding: 12px 18px;
        font-size: 14px;
    }
}