:root {
--primary-color: #e74c3c;
--secondary-color: #1a1a2e;
--text-color: #333;
--text-light: #666;
--bg-color: #0a0a1a;
--white: #fff;
--border-radius: 12px;
--transition: all 0.3s ease;
--glow-color: rgba(231, 76, 60, 0.6);
--neon-blue: #00d4ff;
--neon-purple: #9b59b6;
} .tech-bg {
position: relative;
overflow: hidden;
}
.tech-bg::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(90deg, transparent 79px, rgba(0, 212, 255, 0.03) 79px, rgba(0, 212, 255, 0.03) 81px, transparent 81px),
linear-gradient(0deg, transparent 79px, rgba(0, 212, 255, 0.03) 79px, rgba(0, 212, 255, 0.03) 81px, transparent 81px);
background-size: 100px 100px;
pointer-events: none;
z-index: 0;
}
.tech-bg::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 26, 0.4) 70%, rgba(10, 10, 26, 0.95) 100%);
pointer-events: none;
z-index: 1;
} .scanlines::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0, 212, 255, 0.015) 2px,
rgba(0, 212, 255, 0.015) 4px
);
pointer-events: none;
z-index: 2;
} @keyframes neonPulse {
0%, 100% {
opacity: 0.6;
filter: blur(20px);
}
50% {
opacity: 1;
filter: blur(30px);
}
}
@keyframes floatGlow {
0%, 100% {
transform: translateY(0) scale(1);
}
50% {
transform: translateY(-20px) scale(1.05);
}
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.glow-orb {
position: absolute;
border-radius: 50%;
filter: blur(60px);
animation: neonPulse 4s ease-in-out infinite;
pointer-events: none;
z-index: 0;
}
.glow-orb-1 {
width: 400px;
height: 400px;
background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
top: -100px;
right: -100px;
animation-delay: 0s;
}
.glow-orb-2 {
width: 300px;
height: 300px;
background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
bottom: -50px;
left: -50px;
animation-delay: 2s;
}
.glow-orb-3 {
width: 200px;
height: 200px;
background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 1s;
} .particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
z-index: 1;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--neon-blue);
border-radius: 50%;
opacity: 0.6;
animation: floatParticle 15s linear infinite;
}
@keyframes floatParticle {
0% {
transform: translateY(100vh) translateX(0);
opacity: 0;
}
10% {
opacity: 0.6;
}
90% {
opacity: 0.6;
}
100% {
transform: translateY(-100vh) translateX(100px);
opacity: 0;
}
} .tech-border {
position: relative;
}
.tech-border::before,
.tech-border::after {
content: '';
position: absolute;
background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--primary-color));
height: 2px;
width: 100%;
left: 0;
animation: borderGlow 3s ease-in-out infinite;
}
.tech-border::before {
top: 0;
}
.tech-border::after {
bottom: 0;
}
@keyframes borderGlow {
0%, 100% {
opacity: 0.5;
box-shadow: 0 0 10px var(--neon-blue);
}
50% {
opacity: 1;
box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
}
} .hex-pattern {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.02'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
z-index: 0;
} .card-glow {
position: relative;
transition: var(--transition);
}
.card-glow::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: var(--border-radius);
padding: 2px;
background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--primary-color));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0;
transition: var(--transition);
}
.card-glow:hover::before {
opacity: 1;
} .btn-glow {
position: relative;
overflow: hidden;
}
.btn-glow::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transform: rotate(45deg);
animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
0% {
transform: translateX(-100%) rotate(45deg);
}
100% {
transform: translateX(100%) rotate(45deg);
}
} .text-glow {
text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
} .tech-loading {
position: relative;
}
.tech-loading::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
animation: techLoad 1.5s ease-in-out infinite;
}
@keyframes techLoad {
0% {
left: -100%;
}
100% {
left: 100%;
}
} * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
a:hover {
color: var(--primary-color);
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul, ol {
list-style: none;
}
button, input, textarea, select {
font-family: inherit;
font-size: inherit;
border: none;
outline: none;
}
button {
cursor: pointer;
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.clearfix::after {
content: '';
display: table;
clear: both;
}
.text-center {
text-align: center;
}
.text-primary {
color: var(--primary-color);
} .site-content {
min-height: calc(100vh - 200px);
padding: 40px 0;
} .site-header {
background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
color: var(--white);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.site-header.scrolled {
background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 212, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-logo a {
font-size: 26px;
font-weight: 700;
color: var(--white);
letter-spacing: 2px;
display: flex;
align-items: center;
gap: 2px;
}
.site-logo span {
color: var(--primary-color);
} .main-navigation {
display: flex;
justify-content: center;
}
.main-navigation ul {
display: flex;
gap: 5px;
}
.main-navigation li {
position: relative;
}
.main-navigation a {
display: block;
padding: 12px 20px;
color: rgba(255, 255, 255, 0.85);
font-size: 15px;
font-weight: 500;
border-radius: 6px;
transition: var(--transition);
}
.main-navigation a:hover,
.main-navigation a.active,
.main-navigation li:hover > a {
color: var(--white);
background: var(--primary-color);
box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
} .main-navigation .sub-menu {
position: absolute;
top: 100%;
left: 0;
background: var(--secondary-color);
min-width: 220px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border-radius: 8px;
overflow: hidden;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: var(--transition);
z-index: 100;
}
.main-navigation li:hover > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.sub-menu li a {
padding: 12px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sub-menu li:last-child a {
border-bottom: none;
} .menu-toggle {
display: none;
padding: 10px;
background: transparent;
color: var(--white);
font-size: 24px;
} .hero-section {
background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 50%, #0f3460 100%);
color: var(--white);
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: 
radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 1;
}
.hero-section h1 {
font-size: 56px;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
animation: fadeInUp 0.8s ease;
}
.hero-section p {
font-size: 20px;
opacity: 0.9;
margin-bottom: 35px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
animation: fadeInUp 0.8s ease 0.4s both;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
border-radius: 30px;
font-weight: 600;
font-size: 16px;
transition: var(--transition);
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--primary-color);
color: var(--white);
}
.btn-primary:hover {
background: #c0392b;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}
.btn-secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}
.btn-secondary:hover {
background: var(--white);
color: var(--secondary-color);
} .section-title {
text-align: center;
font-size: 34px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 40px;
position: relative;
display: inline-block;
width: 100%;
}
.section-title::after {
content: '';
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50%);
width: 70px;
height: 4px;
background: var(--primary-color);
border-radius: 2px;
} .section-header {
text-align: center;
margin-bottom: 50px;
position: relative;
z-index: 1;
}
.section-header.tech-border {
padding: 30px 0;
}
.section-tag {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 15px;
font-size: 13px;
font-weight: 600;
letter-spacing: 4px;
color: var(--neon-blue);
text-transform: uppercase;
}
.section-tag .tag-line {
width: 50px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}
.section-header .section-title {
color: var(--white);
font-size: 42px;
text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.section-header .section-title::after {
background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--primary-color));
width: 100px;
height: 3px;
border-radius: 2px;
}
.section-subtitle {
color: rgba(255, 255, 255, 0.7);
font-size: 16px;
margin-top: 15px;
letter-spacing: 1px;
} .categories-section {
padding: 80px 0;
background: linear-gradient(180deg, var(--bg-color) 0%, #0d0d25 100%);
}
.categories-section .container {
position: relative;
z-index: 1;
}
.categories-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
}
.category-card {
background: linear-gradient(145deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
border-radius: var(--border-radius);
padding: 30px 15px;
text-align: center;
transition: var(--transition);
border: 1px solid rgba(0, 212, 255, 0.15);
position: relative;
overflow: hidden;
cursor: pointer;
}
.category-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--primary-color));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.category-card:hover::before {
transform: scaleX(1);
}
.category-card:hover {
transform: translateY(-10px);
border-color: rgba(0, 212, 255, 0.4);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.1);
}
.category-icon-wrapper {
position: relative;
display: inline-block;
margin-bottom: 20px;
}
.category-icon {
font-size: 48px;
display: block;
filter: drop-shadow(0 0 10px currentColor);
}
.category-glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.category-card:hover .category-glow {
opacity: 1;
}
.category-card .sr-only {
display: none;
}
.category-card h3 {
font-size: 16px;
color: var(--white);
margin-bottom: 10px;
font-weight: 600;
letter-spacing: 0.5px;
}
.category-card .count {
font-size: 13px;
color: var(--neon-blue);
font-weight: 500;
letter-spacing: 1px;
}
.category-arrow {
position: absolute;
bottom: 15px;
right: 15px;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 212, 255, 0.1);
border-radius: 50%;
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
color: var(--neon-blue);
font-size: 12px;
}
.category-card:hover .category-arrow {
opacity: 1;
transform: translateX(0);
} .articles-section {
padding: 80px 0;
background: linear-gradient(180deg, #0d0d25 0%, var(--bg-color) 100%);
}
.articles-section .container {
position: relative;
z-index: 1;
}
.articles-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.article-card {
background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.9) 100%);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
transition: var(--transition);
border: 1px solid rgba(0, 212, 255, 0.1);
}
.article-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.15);
border-color: rgba(0, 212, 255, 0.3);
}
.article-card .thumbnail {
height: 200px;
overflow: hidden;
background: #1a1a2e;
position: relative;
}
.article-card .thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.article-card:hover .thumbnail img {
transform: scale(1.08);
}
.article-card .thumbnail-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, transparent 0%, rgba(231, 76, 60, 0.8) 100%);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.article-card:hover .thumbnail-overlay {
opacity: 1;
}
.article-card .read-more {
color: var(--white);
font-weight: 600;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
}
.article-card .read-more i {
transition: transform 0.3s ease;
}
.article-card:hover .read-more i {
transform: translateX(5px);
}
.article-card .content {
padding: 25px;
}
.article-card .category {
display: inline-block;
padding: 5px 14px;
background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
color: var(--white);
border-radius: 20px;
font-size: 11px;
margin-bottom: 15px;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.article-card h3 {
font-size: 18px;
line-height: 1.4;
margin-bottom: 12px;
color: var(--white);
}
.article-card h3 a:hover {
color: var(--neon-blue);
}
.article-card .meta {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}
.article-card .excerpt {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
margin-top: 15px;
line-height: 1.7;
} .view-more-wrapper {
text-align: center;
margin-top: 50px;
} .home-pagination {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 50px;
flex-wrap: wrap;
}
.home-pagination a,
.home-pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
padding: 0 12px;
background: linear-gradient(145deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
border: 1px solid rgba(0, 212, 255, 0.2);
border-radius: 10px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.8);
transition: all 0.3s ease;
}
.home-pagination a:hover {
background: linear-gradient(145deg, rgba(0, 212, 255, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
border-color: var(--neon-blue);
color: var(--white);
box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
transform: translateY(-3px);
}
.home-pagination .current {
background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
border-color: var(--primary-color);
color: var(--white);
box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}
.home-pagination .prev,
.home-pagination .next {
font-size: 13px;
padding: 0 18px;
}
.home-pagination .dots {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 35px;
color: var(--neon-blue);
font-weight: 600;
}
.btn-tech {
position: relative;
overflow: hidden;
padding: 16px 40px;
font-size: 16px;
letter-spacing: 1px;
}
.btn-tech .btn-line {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.btn-tech:hover .btn-line {
transform: scaleX(1);
} .category-links-section {
margin-top: 70px;
padding: 50px 40px;
background: linear-gradient(145deg, rgba(15, 15, 40, 0.9) 0%, rgba(25, 25, 60, 0.85) 100%);
border-radius: var(--border-radius);
border: 1px solid rgba(0, 212, 255, 0.2);
position: relative;
overflow: hidden;
}
.category-links-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
linear-gradient(90deg, transparent 79px, rgba(0, 212, 255, 0.05) 79px, rgba(0, 212, 255, 0.05) 81px, transparent 81px),
linear-gradient(0deg, transparent 79px, rgba(0, 212, 255, 0.05) 79px, rgba(0, 212, 255, 0.05) 81px, transparent 81px);
background-size: 50px 50px;
pointer-events: none;
}
.category-links-section::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
pointer-events: none;
animation: sectionPulse 6s ease-in-out infinite;
}
@keyframes sectionPulse {
0%, 100% { opacity: 0.5; transform: scale(1); }
50% { opacity: 1; transform: scale(1.1); }
} .category-links-section .corner {
position: absolute;
width: 60px;
height: 60px;
border: 2px solid var(--neon-blue);
opacity: 0.4;
}
.category-links-section .corner-tl {
top: 15px;
left: 15px;
border-right: none;
border-bottom: none;
border-top-left-radius: 10px;
}
.category-links-section .corner-tr {
top: 15px;
right: 15px;
border-left: none;
border-bottom: none;
border-top-right-radius: 10px;
}
.category-links-section .corner-bl {
bottom: 15px;
left: 15px;
border-right: none;
border-top: none;
border-bottom-left-radius: 10px;
}
.category-links-section .corner-br {
bottom: 15px;
right: 15px;
border-left: none;
border-top: none;
border-bottom-right-radius: 10px;
}
.category-links-title {
text-align: center;
font-size: 24px;
color: var(--white);
margin-bottom: 35px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
position: relative;
z-index: 1;
}
.category-links-title i {
color: var(--neon-blue);
animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
0%, 100% { text-shadow: 0 0 10px var(--neon-blue); }
50% { text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue); }
}
.category-links-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 15px;
position: relative;
z-index: 1;
}
.category-link-item {
display: flex;
align-items: center;
gap: 10px;
padding: 18px 20px;
background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 100%);
border-radius: 12px;
border: 1px solid rgba(0, 212, 255, 0.15);
transition: all 0.4s ease;
color: var(--white);
position: relative;
overflow: hidden;
}
.category-link-item::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
transition: left 0.5s ease;
}
.category-link-item:hover::before {
left: 100%;
}
.category-link-item:hover {
background: linear-gradient(145deg, rgba(0, 212, 255, 0.15) 0%, rgba(155, 89, 182, 0.1) 100%);
border-color: rgba(0, 212, 255, 0.5);
transform: translateY(-5px) scale(1.02);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
}
.category-link-item .link-icon {
font-size: 26px;
filter: drop-shadow(0 0 5px currentColor);
}
.category-link-item .link-text {
flex: 1;
font-size: 14px;
font-weight: 500;
}
.category-link-item .link-arrow {
color: var(--neon-blue);
font-size: 12px;
opacity: 0.5;
transition: all 0.3s ease;
}
.category-link-item:hover .link-arrow {
opacity: 1;
transform: translateX(5px);
} .pagination {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 50px;
}
.pagination a,
.pagination span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
padding: 0 14px;
background: var(--white);
border-radius: 8px;
font-size: 15px;
font-weight: 500;
transition: var(--transition);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.pagination a:hover {
background: var(--primary-color);
color: var(--white);
}
.pagination .current {
background: var(--primary-color);
color: var(--white);
}
.pagination .prev,
.pagination .next {
font-size: 18px;
} .site-footer {
background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
color: var(--white);
padding: 70px 0 30px;
}
.footer-widgets {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 35px;
margin-bottom: 50px;
}
.footer-widget h4 {
font-size: 17px;
margin-bottom: 22px;
color: var(--primary-color);
position: relative;
padding-bottom: 12px;
font-weight: 600;
}
.footer-widget h4::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 45px;
height: 3px;
background: var(--primary-color);
border-radius: 2px;
}
.footer-widget ul li {
margin-bottom: 12px;
}
.footer-widget ul li a {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
transition: var(--transition);
}
.footer-widget ul li a:hover {
color: var(--primary-color);
padding-left: 5px;
}
.footer-widget p {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
line-height: 1.8;
}
.site-info {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-info p {
color: rgba(255, 255, 255, 0.5);
font-size: 14px;
}
.site-info a {
color: var(--primary-color);
}
.site-info a:hover {
text-decoration: underline;
} .single-post {
max-width: 850px;
margin: 0 auto;
background: var(--white);
padding: 50px;
border-radius: var(--border-radius);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.single-post .post-header {
text-align: center;
margin-bottom: 35px;
}
.single-post .post-category {
display: inline-block;
padding: 5px 14px;
background: var(--primary-color);
color: var(--white);
border-radius: 20px;
font-size: 12px;
margin-bottom: 18px;
}
.single-post h1 {
font-size: 38px;
font-weight: 700;
color: var(--secondary-color);
line-height: 1.3;
margin-bottom: 15px;
}
.single-post .post-meta {
color: #888;
font-size: 14px;
}
.single-post .post-meta i {
margin-right: 5px;
}
.single-post .post-thumbnail {
margin-bottom: 35px;
border-radius: var(--border-radius);
overflow: hidden;
}
.single-post .post-thumbnail img {
width: 100%;
height: auto;
}
.single-post .post-content {
font-size: 17px;
line-height: 1.85;
color: #444;
}
.single-post .post-content h2 {
font-size: 26px;
margin: 40px 0 18px;
color: var(--secondary-color);
font-weight: 600;
}
.single-post .post-content h3 {
font-size: 22px;
margin: 30px 0 15px;
color: var(--secondary-color);
}
.single-post .post-content p {
margin-bottom: 18px;
}
.single-post .post-content ul,
.single-post .post-content ol {
margin: 20px 0;
padding-left: 30px;
}
.single-post .post-content li {
margin-bottom: 10px;
list-style: disc;
}
.single-post .post-content ol li {
list-style: decimal;
}
.single-post .post-content img {
border-radius: 10px;
margin: 25px 0;
}
.single-post .post-content blockquote {
border-left: 5px solid var(--primary-color);
padding: 20px 25px;
background: #f8f9fa;
margin: 25px 0;
font-style: italic;
font-size: 18px;
border-radius: 0 8px 8px 0;
}
.single-post .post-content blockquote p {
margin-bottom: 0;
} .comments-section {
margin-top: 50px;
padding-top: 40px;
border-top: 1px solid #eee;
}
.comments-section h3 {
font-size: 22px;
margin-bottom: 25px;
color: var(--secondary-color);
} .search-form {
display: flex;
gap: 12px;
margin-bottom: 35px;
}
.search-form input {
flex: 1;
padding: 14px 22px;
border: 2px solid #ddd;
border-radius: 10px;
font-size: 16px;
transition: var(--transition);
}
.search-form input:focus {
border-color: var(--primary-color);
}
.search-form button {
padding: 14px 28px;
background: var(--primary-color);
color: var(--white);
border-radius: 10px;
font-weight: 600;
transition: var(--transition);
}
.search-form button:hover {
background: #c0392b;
} .author-bio {
margin-top: 50px;
padding: 35px;
background: #f8f9fa;
border-radius: var(--border-radius);
}
.author-bio .avatar {
border-radius: 50%;
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 1024px) {
.categories-grid {
grid-template-columns: repeat(3, 1fr);
}
.footer-widgets {
grid-template-columns: repeat(3, 1fr);
}
.hero-section h1 {
font-size: 44px;
}
.glow-orb {
transform: scale(0.7);
}
.category-links-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.header-top {
flex-direction: column;
gap: 15px;
}
.main-navigation ul {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--secondary-color);
padding: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.main-navigation ul.active {
display: flex;
}
.menu-toggle {
display: block;
}
.hero-section {
padding: 70px 0;
}
.hero-section h1 {
font-size: 34px;
}
.hero-section p {
font-size: 17px;
}
.hero-buttons {
flex-direction: column;
align-items: center;
}
.categories-grid {
grid-template-columns: repeat(2, 1fr);
}
.articles-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-widgets {
grid-template-columns: repeat(2, 1fr);
}
.single-post {
padding: 30px 20px;
}
.single-post h1 {
font-size: 28px;
}
.section-header .section-title {
font-size: 32px;
}
.category-links-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.categories-grid,
.articles-grid {
grid-template-columns: 1fr;
}
.footer-widgets {
grid-template-columns: 1fr;
}
.section-title {
font-size: 28px;
}
.section-header .section-title {
font-size: 26px;
}
.pagination {
flex-wrap: wrap;
}
.search-form {
flex-direction: column;
}
.category-links-grid {
grid-template-columns: 1fr;
}
.category-links-section {
padding: 25px;
}
} .site-footer {
position: relative;
background: linear-gradient(180deg, #0d0d25 0%, #0a0a1a 50%, #050510 100%);
overflow: hidden;
}
.site-footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(90deg, transparent 79px, rgba(0, 212, 255, 0.05) 79px, rgba(0, 212, 255, 0.05) 81px, transparent 81px),
linear-gradient(0deg, transparent 79px, rgba(0, 212, 255, 0.05) 79px, rgba(0, 212, 255, 0.05) 81px, transparent 81px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
} .glow-orb-footer-1 {
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
top: -200px;
right: -150px;
animation: floatGlow 8s ease-in-out infinite;
}
.glow-orb-footer-2 {
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(155, 89, 182, 0.12) 0%, transparent 70%);
bottom: -150px;
left: -100px;
animation: floatGlow 10s ease-in-out infinite;
animation-delay: 2s;
} .scanlines-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 3px,
rgba(0, 212, 255, 0.02) 3px,
rgba(0, 212, 255, 0.02) 6px
);
pointer-events: none;
z-index: 1;
animation: scanMove 10s linear infinite;
}
@keyframes scanMove {
0% { background-position: 0 0; }
100% { background-position: 0 100px; }
} .footer-grid-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
linear-gradient(0deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 1;
} .footer-top-border,
.footer-bottom-border {
display: flex;
align-items: center;
justify-content: center;
margin: 25px 0;
position: relative;
z-index: 2;
}
.footer-line {
flex: 1;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}
.footer-node {
width: 12px;
height: 12px;
background: var(--neon-blue);
border-radius: 50%;
margin: 0 20px;
box-shadow: 0 0 10px var(--neon-blue), 0 0 20px rgba(0, 212, 255, 0.5);
animation: nodePulse 2s ease-in-out infinite;
}
@keyframes nodePulse {
0%, 100% { 
box-shadow: 0 0 10px var(--neon-blue), 0 0 20px rgba(0, 212, 255, 0.5);
transform: scale(1);
}
50% { 
box-shadow: 0 0 15px var(--neon-blue), 0 0 30px rgba(0, 212, 255, 0.7);
transform: scale(1.2);
}
} .footer-widget-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(155, 89, 182, 0.1) 100%);
border-radius: 12px;
margin-bottom: 18px;
border: 1px solid rgba(0, 212, 255, 0.2);
transition: all 0.4s ease;
}
.footer-widget-icon i {
font-size: 22px;
color: var(--neon-blue);
filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
transition: all 0.4s ease;
}
.footer-widget:hover .footer-widget-icon {
background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(155, 89, 182, 0.2) 100%);
border-color: rgba(0, 212, 255, 0.5);
transform: translateY(-5px) rotate(5deg);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}
.footer-widget:hover .footer-widget-icon i {
color: var(--white);
filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
} .footer-widget ul li {
margin-bottom: 10px;
position: relative;
padding-left: 5px;
}
.footer-widget ul li a {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.li-arrow {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
background: rgba(0, 212, 255, 0.1);
border-radius: 4px;
transition: all 0.3s ease;
}
.li-arrow i {
font-size: 10px;
color: var(--neon-blue);
transition: all 0.3s ease;
}
.footer-widget ul li a:hover {
color: var(--white);
padding-left: 10px;
}
.footer-widget ul li a:hover .li-arrow {
background: var(--neon-blue);
transform: rotate(90deg);
}
.footer-widget ul li a:hover .li-arrow i {
color: var(--white);
} .footer-social {
display: flex;
gap: 12px;
margin-top: 18px;
}
.footer-social a {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(0, 212, 255, 0.2);
border-radius: 10px;
color: rgba(255, 255, 255, 0.7);
font-size: 16px;
transition: all 0.4s ease;
}
.footer-social a:hover {
background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(155, 89, 182, 0.3) 100%);
border-color: var(--neon-blue);
color: var(--white);
transform: translateY(-5px) rotate(5deg);
box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}
.footer-social a:hover i {
filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
} .tech-decoration {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 20px;
}
.tech-line {
width: 80px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
animation: lineGlow 3s ease-in-out infinite;
}
@keyframes lineGlow {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
.tech-dot {
width: 8px;
height: 8px;
background: var(--neon-blue);
border-radius: 50%;
box-shadow: 0 0 10px var(--neon-blue);
animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
0%, 100% { 
box-shadow: 0 0 5px var(--neon-blue);
transform: scale(1);
}
50% { 
box-shadow: 0 0 15px var(--neon-blue), 0 0 25px rgba(0, 212, 255, 0.5);
transform: scale(1.3);
}
} .tech-tagline {
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--neon-blue) !important;
margin-top: 8px;
text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
animation: tagGlow 3s ease-in-out infinite;
}
@keyframes tagGlow {
0%, 100% { text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }
50% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.3); }
} .glow-orb {
position: absolute;
border-radius: 50%;
pointer-events: none;
z-index: 0;
}
.footer-widget {
position: relative;
padding: 20px;
border-radius: 15px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.4s ease;
}
.footer-widget:hover {
background: rgba(0, 212, 255, 0.03);
border-color: rgba(0, 212, 255, 0.15);
transform: translateY(-5px);
} .footer-widget ul li a span {
display: inline-block;
width: 18px;
height: 18px;
background: rgba(0, 212, 255, 0.1);
border-radius: 4px;
text-align: center;
line-height: 18px;
font-size: 10px;
margin-right: 8px;
transition: all 0.3s ease;
}
.footer-widget ul li a:hover span {
background: var(--neon-blue);
color: var(--white);
}