* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Nunito', 'Segoe UI', sans-serif;
}
body {
background: linear-gradient(90deg, #f50847, #3c49ff);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
overflow-x: hidden;
}
.chat-container {
width: 100%;
max-width: 1200px;
background: rgba(10, 5, 24, 0.7);
backdrop-filter: blur(12px);
border-radius: 25px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
border: 2px solid rgba(255, 255, 255, 0.1);
position: relative;
} .floating-circle {
position: absolute;
border-radius: 50%;
z-index: 1;
filter: blur(60px);
opacity: 0.6;
}
.circle-1 {
width: 300px;
height: 300px;
background: radial-gradient(circle, #ff4e7d 0%, transparent 70%);
top: -150px;
left: -150px;
animation: float 12s infinite ease-in-out;
}
.circle-2 {
width: 400px;
height: 400px;
background: radial-gradient(circle, #0ff0fc 0%, transparent 70%);
bottom: -200px;
right: -200px;
animation: float 15s infinite ease-in-out;
animation-delay: 1s;
}
.circle-3 {
width: 200px;
height: 200px;
background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
top: 40%;
left: 30%;
animation: float 8s infinite ease-in-out;
animation-delay: 2s;
} .header-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 40px;
background: rgba(20, 10, 40, 0.9);
position: relative;
z-index: 10;
border-bottom: 3px solid #ff4e7d;
}
.logo-area {
display: flex;
align-items: center;
gap: 15px;
}
.logo-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #ff4e7d, #ff8e3c);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 30px rgba(255, 78, 125, 0.6);
animation: pulse 3s infinite;
}
.logo-icon i {
font-size: 28px;
color: white;
}
.logo-text {
font-size: 32px;
font-weight: 800;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c, #0ff0fc, #a78bfa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
} .desktop-nav {
display: flex;
gap: 25px;
}
.nav-item {
color: white;
text-decoration: none;
font-weight: 700;
font-size: 18px;
padding: 12px 20px;
border-radius: 30px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c);
display: flex;
align-items: center;
gap: 10px;
}
.nav-item:hover {
background: linear-gradient(90deg, #ff4e7d, #ff8e3c);
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(255, 78, 125, 0.5);
}
.nav-item i {
font-size: 20px;
color: #0ff0fc;
} .mobile-toggle {
display: none;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c);
border: none;
color: white;
font-size: 28px;
cursor: pointer;
width: 45px;
height: 45px;
margin-right: -18px;
border-radius: 50%;
justify-content: center;
align-items: center;
box-shadow: 0 0 20px rgba(255, 78, 125, 0.6);
} .login-section {
display: flex;
padding: 50px 40px;
gap: 40px;
position: relative;
z-index: 5;
}
.login-form {
flex: 1;
background: rgba(30, 15, 60, 0.6);
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 30px rgb(255 255 255 / 40%);
border: 2px solid rgba(255, 255, 255, 0.1);
display: flex;
flex-direction: column;
gap: 25px;
margin-left: -28px;
margin-right: -27px;
}
.form-title {
font-size: 38px;
margin-bottom: 10px;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c, #0ff0fc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.input-group {
position: relative;
}
.input-icon {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 22px;
color: #ff8e3c;
}
.input-field {
width: 100%;
padding: 20px 25px 20px 65px;
border: none;
border-radius: 15px;
background: rgba(10, 5, 24, 0.8);
color: white;
font-size: 18px;
border: 2px solid transparent;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.input-field:focus {
outline: none;
border-color: #0ff0fc;
background: rgba(15, 7, 35, 0.9);
box-shadow: 0 0 20px rgba(15, 240, 252, 0.4);
}
.input-field::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.connect-btn {
background: linear-gradient(90deg, #ff4e7d, #ff8e3c);
color: white;
border: none;
padding: 20px;
border-radius: 15px;
font-weight: 700;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
box-shadow: 0 10px 30px rgba(255, 78, 125, 0.5);
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 10px;
}
.connect-btn:hover {
transform: translateY(-7px);
box-shadow: 0 15px 35px rgba(255, 78, 125, 0.7);
background: linear-gradient(90deg, #ff5e8d, #ff9e4c);
}
.connect-btn:active {
transform: translateY(0);
} .visual-area {
flex: 1;
display: flex;
flex-direction: column;
gap: 25px;
}
.bubble-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.bubble {
aspect-ratio: 1/1;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: white;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
animation: float 6s infinite ease-in-out;
transition: all 0.4s ease;
}
.bubble:hover {
transform: scale(1.1) rotate(10deg);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.bubble:nth-child(1) {
background: linear-gradient(135deg, #ff4e7d, #ff8e3c);
animation-delay: 0s;
}
.bubble:nth-child(2) {
background: linear-gradient(135deg, #0ff0fc, #00c9ff);
animation-delay: 1s;
}
.bubble:nth-child(3) {
background: linear-gradient(135deg, #a78bfa, #7b4bff);
animation-delay: 2s;
}
.bubble:nth-child(4) {
background: linear-gradient(135deg, #ffd166, #ff9e00);
animation-delay: 3s;
}
.bubble:nth-child(5) {
background: linear-gradient(135deg, #06d6a0, #00bb9c);
animation-delay: 0.5s;
}
.bubble:nth-child(6) {
background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
animation-delay: 1.5s;
} .mobile-nav {
position: fixed;
top: 0;
right: -100%;
width: 300px;
height: 100vh;
background: rgba(20, 10, 40, 0.98);
backdrop-filter: blur(15px);
padding: 120px 30px 40px;
z-index: 99;
transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
flex-direction: column;
gap: 20px;
box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
border-left: 3px solid #ff4e7d;
}
.mobile-nav.active {
right: 0;
}
.mobile-nav-item {
color: white;
text-decoration: none;
font-size: 22px;
padding: 18px 25px;
border-radius: 15px;
display: flex;
align-items: center;
gap: 20px;
transition: all 0.4s ease;
background: rgba(255, 255, 255, 0.05);
}
.mobile-nav-item:hover {
background: linear-gradient(90deg, rgba(255, 78, 125, 0.4), rgba(255, 142, 60, 0.4));
transform: translateX(-10px);
box-shadow: 0 5px 15px rgba(255, 78, 125, 0.4);
}
.mobile-nav-item i {
width: 30px;
text-align: center;
color: #0ff0fc;
font-size: 26px;
} .hizlishell-sozu {
font-family: 'Audiowide', sans-serif;
font-size: 16px;
color: #fff;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;  
}
@media (min-width: 768px) {
.hizlishell-sozu {
font-size: 20px;
}
}	
.hizlishell-card {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 20px;
text-align: center;
color: white;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
width: 97%;
margin: 20px auto;
box-sizing: border-box;
word-wrap: break-word; 
overflow-wrap: break-word;
box-shadow: 0 0px 50px rgb(255 0 0 / 50%);
}
.hizlishell-card:hover {
transform: translateY(-5px);
}
.hizlishell-card i {
font-size: 32px;
margin-bottom: 10px;
color: orange;
}
.hizlishell-card h3 {
margin: 0;
font-family: 'Aclonica', sans-serif;
font-size: 18px;
}
.desktop-only {
display: block;
}
.mobile-only {
display: none;
} .features-section {
padding: 60px 40px;
background: rgba(10, 5, 24, 0.6);
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c, #0ff0fc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
padding-bottom: 15px;
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c, #0ff0fc);
border-radius: 2px;
}
.features-container {
display: flex;
flex-direction: column;
gap: 60px;
}
.feature-row {
display: flex;
align-items: center;
gap: 40px;
}
.feature-row:nth-child(even) {
flex-direction: row-reverse;
}
.feature-icon {
flex: 0 0 120px;
height: 120px;
width: 101px;
background: linear-gradient(135deg, #4361ee, #3a0ca3);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 3rem;
color: white;
box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
transition: all 0.3s ease;
}
.feature-icon:hover {
transform: translateY(-10px) rotate(10deg);
box-shadow: 0 15px 40px rgba(67, 97, 238, 0.6);
}
.feature-content {
flex: 1;
background: rgba(30, 15, 60, 0.6);
border-radius: 20px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s ease;
}
.feature-content:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(255, 78, 125, 0.4);
border-color: #ff4e7d;
}
.feature-content h3 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #ff8e3c;
display: flex;
align-items: center;
gap: 10px;
}
.feature-content h3 i {
font-size: 1.5rem;
color: #0ff0fc;
}
.feature-content p {
font-size: 1.1rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.85);
} @keyframes pulse {
0% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 78, 125, 0.6); }
50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 78, 125, 0.8); }
100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 78, 125, 0.6); }
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes feature-float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}
.feature-icon {
animation: feature-float 4s infinite ease-in-out;
}
.feature-row:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-row:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-row:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-row:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-row:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-row:nth-child(6) .feature-icon { animation-delay: 2.5s; } @media (max-width: 1000px) {
.desktop-nav {
display: none;
}
.mobile-toggle {
display: flex;
}
.login-section {
flex-direction: column;
}
.form-title {
font-size: 32px;
}
.bubble-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.header-bar {
padding: 15px 20px;
}
.logo-text {
font-size: 26px;
}
.login-form {
padding: 30px;
}
.bubble-grid {
grid-template-columns: repeat(2, 1fr);
}
.mobile-nav {
width: 280px;
}
.visual-area {
display: none;
}
.section-title {
font-size: 2rem;
}
.feature-row {
flex-direction: column !important;
gap: 25px;
}
.feature-icon {
flex: 0 0 90px;
height: 90px;
font-size: 2.2rem;
}
.feature-content {
padding: 25px;
}
.feature-content h3 {
font-size: 1.5rem;
}
.feature-content p {
font-size: 1rem;
}
.mobile-only {
display: block !important;
margin-top: 20px;
}
}
@media (max-width: 480px) {
.logo-icon {
width: 50px;
height: 50px;
}
.logo-text {
font-size: 22px;
}
.bubble-grid {
grid-template-columns: 1fr;
}
.bubble {
max-width: 200px;
margin: 0 auto;
}
.section-title {
font-size: 1.7rem;
}
.feature-content {
padding: 20px;
}
.feature-content h3 {
font-size: 1.3rem;
}
} .header-container, 
.content-container {
width: 100%;
max-width: 1200px;
background: rgba(10, 5, 24, 0.7);
backdrop-filter: blur(12px);
border-radius: 25px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
border: 2px solid rgba(255, 255, 255, 0.1);
position: relative;
margin: 0 auto 30px auto; } .content-container {
margin-top: 30px;
} .mobile-nav {
position: fixed;
top: 124px;
right: -100%;
z-index: 1000;
} .desktop-only {
display: block;
}
.mobile-only {
display: none;
}
@media (max-width: 768px) {
.desktop-only {
display: none;
}
.mobile-only {
display: block;
}
} body {
background: linear-gradient(90deg, #f50847, #3c49ff);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
overflow-x: hidden;
background-size: 400% 400%;
animation: gradient 15s ease infinite;
} @media (max-width: 768px) {
.header-container,
.content-container {
margin: 0 auto 20px auto;
border-radius: 20px;
}
.content-container {
margin-top: 20px;
}
} .blog-section {
margin-top: 60px;
padding: 40px 0;
}
.hizlishell-container {
display: flex;
gap: 30px;
} .hizlishell-sidebar {
flex: 1;
max-width: 300px;
}
.sidebar-box {
background: rgba(30, 15, 60, 0.6);
border-radius: 15px;
padding: 25px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.1);
}
.sidebar-box h3 {
font-size: 1.5rem;
color: #0ff0fc;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.categories-box ul {
list-style: none;
padding: 0;
margin: 0;
}
.categories-box li {
margin-bottom: 10px;
transition: transform 0.3s ease;
}
.categories-box li:hover {
transform: translateX(10px);
}
.popular-posts-box ul {
list-style: none;
padding: 0;
margin: 0;
}
.popular-post-item {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.popular-post-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.popular-post-item a {
display: flex;
align-items: center;
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.popular-post-item a:hover {
color: #ff8e3c;
}
.popular-post-item img {
width: 70px;
height: 70px;
border-radius: 10px;
object-fit: cover;
margin-right: 15px;
}
.thumbnail-placeholder {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #4361ee, #3a0ca3);
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 1.5rem;
margin-right: 15px;
}
.popular-post-item span {
flex: 1;
font-weight: 600;
} .hizlishell-main {
flex: 2;
}
.hizlishell-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.post-card {
background: rgba(30, 15, 60, 0.6);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.1);
}
.post-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(255, 78, 125, 0.4);
border-color: #ff4e7d;
}
.post-image {
position: relative;
height: 200px;
overflow: hidden;
}
.post-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.post-card:hover .post-image img {
transform: scale(1.1);
}
.image-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #4361ee, #3a0ca3);
display: flex;
justify-content: center;
align-items: center;
font-size: 3rem;
color: white;
}
.category-tag {
position: absolute;
top: 15px;
left: 15px;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c);
color: white;
padding: 5px 15px;
border-radius: 30px;
font-weight: 700;
font-size: 0.9rem;
}
.post-content {
padding: 25px;
}
.post-meta {
color: #0ff0fc;
font-size: 0.9rem;
margin-bottom: 10px;
}
.post-content h3 {
font-size: 1.4rem;
margin-bottom: 15px;
}
.post-content h3 a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.post-content h3 a:hover {
color: #ff8e3c;
}
.excerpt {
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
margin-bottom: 20px;
}
.read-more {
display: inline-flex;
align-items: center;
color: #ff8e3c;
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
}
.read-more i {
margin-left: 8px;
transition: transform 0.3s ease;
}
.read-more:hover {
color: #ff4e7d;
}
.read-more:hover i {
transform: translateX(5px);
}
.pagination {
margin-top: 50px;
display: flex;
justify-content: center;
} @media (max-width: 992px) {
.hizlishell-container {
flex-direction: column;
}
.hizlishell-sidebar {
max-width: 100%;
}
.hizlishell-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
.hizlishell-container {
padding: 0 15px;
}
.sidebar-box {
padding: 20px;
}
} .footer-container {
width: 100%;
max-width: 1200px;
background: rgba(10, 5, 24, 0.9);
backdrop-filter: blur(10px);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
border: 2px solid rgba(255, 255, 255, 0.1);
margin: 0 auto;
} .footer-content {
display: flex;
padding: 50px 40px;
justify-content: space-between;
position: relative;
} .social-section {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
padding-right: 30px;
}
.social-title {
font-size: 24px;
color: #ff8e3c;
margin-bottom: 25px;
font-weight: 700;
text-shadow: 0 0 10px rgba(255, 142, 60, 0.3);
}
.social-icons {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.social-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: white;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
}
.social-icon::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--color1), var(--color2));
z-index: -1;
transition: transform 0.5s ease;
}
.social-icon:hover::before {
transform: scale(1.1);
}
.social-icon:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
} .site-info {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 30px;
border-left: 1px solid rgba(255, 255, 255, 0.1);
border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.site-logo {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.logo-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #ff4e7d, #ff8e3c);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 32px;
color: white;
box-shadow: 0 0 30px rgba(255, 78, 125, 0.6);
animation: pulse 3s infinite;
}
.site-name {
font-size: 36px;
font-weight: 800;
background: linear-gradient(90deg, #ff4e7d, #ff8e3c);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.site-slogan {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
text-align: center;
max-width: 350px;
line-height: 1.6;
margin-top: 15px;
} .links-section {
flex: 1;
padding-left: 30px;
}
.links-title {
font-size: 24px;
color: #0ff0fc;
margin-bottom: 25px;
font-weight: 700;
text-shadow: 0 0 10px rgba(15, 240, 252, 0.3);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 18px;
position: relative;
padding-left: 30px;
}
.footer-links li::before {
content: "»";
position: absolute;
left: 0;
color: #ff8e3c;
font-size: 20px;
}
.footer-links a {
color: white;
text-decoration: none;
font-size: 18px;
transition: all 0.3s ease;
display: block;
padding: 8px 0;
}
.footer-links a:hover {
color: #ff8e3c;
transform: translateX(10px);
} .copyright {
background: rgba(10, 5, 24, 0.95);
text-align: center;
padding: 20px;
font-size: 16px;
color: rgba(255, 255, 255, 0.7);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright a {
color: #ff8e3c;
text-decoration: none;
} @keyframes pulse {
0% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 78, 125, 0.6); }
50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 78, 125, 0.8); }
100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 78, 125, 0.6); }
} @media (max-width: 992px) {
.footer-content {
flex-direction: column;
gap: 40px;
}
.social-section, 
.site-info, 
.links-section {
padding: 0;
border: none;
align-items: center;
text-align: center;
}
.social-section {
align-items: center;
}
.site-info {
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 30px 0;
}
.footer-links li {
padding-left: 0;
text-align: center;
}
.footer-links li::before {
display: none;
}
}
@media (max-width: 576px) {
.footer-content {
padding: 40px 20px;
}
.site-name {
font-size: 28px;
}
.social-icons {
justify-content: center;
}
}