Add global CSS enhancements for visual effects
- Implemented dynamic gradient background animation for body - Added neon glow hover effect to .btn-minecraft - Applied glassmorphism effect to .section-bg - Introduced text glitch effect for .minecraft-font on hover - Enhanced .nav-btn with micro-animation shine effect
This commit is contained in:
108
css/style.css
108
css/style.css
@@ -15,9 +15,9 @@ html, body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #0b0f2b; /* Explicit fallback */
|
|
||||||
background: -webkit-linear-gradient(135deg, #0b0f2b, #1a2249);
|
|
||||||
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
||||||
|
background-size: 200% 200%;
|
||||||
|
animation: bgShift 15s ease infinite;
|
||||||
font-family: 'Roboto', 'Verdana', sans-serif;
|
font-family: 'Roboto', 'Verdana', sans-serif;
|
||||||
color: #e0e7ff;
|
color: #e0e7ff;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
@@ -26,19 +26,23 @@ body {
|
|||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes bgShift {
|
||||||
|
0% { background-position: 0% 50%; }
|
||||||
|
50% { background-position: 100% 50%; }
|
||||||
|
100% { background-position: 0% 50%; }
|
||||||
|
}
|
||||||
|
|
||||||
/* Custom Scrollbar Styles */
|
/* Custom Scrollbar Styles */
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
background: -webkit-linear-gradient(135deg, #0b0f2b, #1a2249); /* Match body gradient */
|
|
||||||
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
||||||
border: none; /* Ensure no border */
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
background: -webkit-linear-gradient(45deg, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid rgba(10, 17, 40, 0.8);
|
border: 1px solid rgba(10, 17, 40, 0.8);
|
||||||
@@ -46,7 +50,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb:hover {
|
::-webkit-scrollbar-thumb:hover {
|
||||||
background: -webkit-linear-gradient(45deg, #2dd4bf, #60a5fa);
|
|
||||||
background: linear-gradient(45deg, #2dd4bf, #60a5fa);
|
background: linear-gradient(45deg, #2dd4bf, #60a5fa);
|
||||||
box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
|
box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
|
||||||
}
|
}
|
||||||
@@ -57,20 +60,53 @@ body {
|
|||||||
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
background: -webkit-linear-gradient(to right, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
background-clip: text;
|
background-clip: text;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.minecraft-font:hover {
|
||||||
|
animation: glitch 0.3s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes glitch {
|
||||||
|
0% {
|
||||||
|
transform: translate(0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
||||||
|
}
|
||||||
|
20% {
|
||||||
|
transform: translate(-2px, 2px);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), 2px 0 #3b82f6;
|
||||||
|
}
|
||||||
|
40% {
|
||||||
|
transform: translate(2px, -2px);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), -2px 0 #14b8a6;
|
||||||
|
}
|
||||||
|
60% {
|
||||||
|
transform: translate(-2px, 0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), 2px 0 #3b82f6;
|
||||||
|
}
|
||||||
|
80% {
|
||||||
|
transform: translate(2px, 0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), -2px 0 #14b8a6;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate(0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-bg {
|
.section-bg {
|
||||||
background: rgba(10, 17, 40, 0.75);
|
background: rgba(10, 17, 40, 0.3);
|
||||||
|
-webkit-backdrop-filter: blur(12px);
|
||||||
|
backdrop-filter: blur(12px);
|
||||||
border-radius: 24px;
|
border-radius: 24px;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||||
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.08);
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.1);
|
||||||
transition: box-shadow 0.4s ease;
|
transition: box-shadow 0.4s ease, background 0.4s ease, -webkit-backdrop-filter 0.4s ease, backdrop-filter 0.4s ease;
|
||||||
animation: floatSection 4s ease-in-out infinite;
|
animation: floatSection 4s ease-in-out infinite;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
@@ -90,6 +126,9 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.section-bg:hover {
|
.section-bg:hover {
|
||||||
|
background: rgba(10, 17, 40, 0.4);
|
||||||
|
-webkit-backdrop-filter: blur(14px);
|
||||||
|
backdrop-filter: blur(14px);
|
||||||
box-shadow: 0 12px 40px rgba(20, 184, 166, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.12);
|
box-shadow: 0 12px 40px rgba(20, 184, 166, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.12);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -103,7 +142,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-minecraft {
|
.btn-minecraft {
|
||||||
background: -webkit-linear-gradient(45deg, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||||
background-size: 300% 300%;
|
background-size: 300% 300%;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -116,6 +154,7 @@ body {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: transform 0.3s, box-shadow 0.3s;
|
transition: transform 0.3s, box-shadow 0.3s;
|
||||||
animation: gradientShift 5s ease infinite;
|
animation: gradientShift 5s ease infinite;
|
||||||
|
box-shadow: 0 0 15px rgba(20, 184, 166, 0.5), 0 0 25px rgba(59, 130, 246, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-minecraft::before {
|
.btn-minecraft::before {
|
||||||
@@ -125,7 +164,6 @@ body {
|
|||||||
left: -100%;
|
left: -100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: -webkit-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
|
||||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
||||||
transition: left 0.5s;
|
transition: left 0.5s;
|
||||||
}
|
}
|
||||||
@@ -136,7 +174,8 @@ body {
|
|||||||
|
|
||||||
.btn-minecraft:hover {
|
.btn-minecraft:hover {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
box-shadow: 0 8px 30px rgba(20, 184, 166, 0.7);
|
box-shadow: 0 0 20px rgba(20, 184, 166, 0.8), 0 0 30px rgba(59, 130, 246, 0.5), 0 0 40px rgba(20, 184, 166, 0.3);
|
||||||
|
animation: neonPulse 1.5s ease-in-out infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-minecraft::after {
|
.btn-minecraft::after {
|
||||||
@@ -158,6 +197,15 @@ body {
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes neonPulse {
|
||||||
|
0%, 100% {
|
||||||
|
filter: brightness(1);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
filter: brightness(1.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes gradientShift {
|
@keyframes gradientShift {
|
||||||
0% {
|
0% {
|
||||||
background-position: 0% 50%;
|
background-position: 0% 50%;
|
||||||
@@ -215,7 +263,6 @@ body {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
|
||||||
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
@@ -310,7 +357,6 @@ body {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
background: -webkit-linear-gradient(45deg, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@@ -318,8 +364,8 @@ body {
|
|||||||
z-index: -1;
|
z-index: -1;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
box-shadow: 0 0 15px rgba(20, 184, 166, 0.9);
|
box-shadow: 0 0 15px rgba(20, 184, 166, 0.9);
|
||||||
mix-blend-mode: screen; /* Blend with background */
|
mix-blend-mode: screen;
|
||||||
will-change: transform, opacity; /* Optimize rendering */
|
will-change: transform, opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
.particle.large {
|
.particle.large {
|
||||||
@@ -347,7 +393,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.header-bg {
|
.header-bg {
|
||||||
background: -webkit-linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
|
||||||
background: linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
background: linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -375,7 +420,6 @@ footer a:hover {
|
|||||||
.nav-btn {
|
.nav-btn {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
background: -webkit-linear-gradient(to right, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -385,6 +429,23 @@ footer a:hover {
|
|||||||
transition: transform 0.2s, box-shadow 0.2s;
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-btn::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: -100%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
|
||||||
|
transition: left 0.4s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-btn:hover::before {
|
||||||
|
left: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-btn:hover {
|
.nav-btn:hover {
|
||||||
@@ -418,7 +479,6 @@ footer a:hover {
|
|||||||
opacity: 0;
|
opacity: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
transition: opacity 0.3s ease, visibility 0.3s ease;
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
||||||
background: -webkit-linear-gradient(135deg, rgba(10, 17, 40, 0.98), rgba(5, 15, 35, 0.98));
|
|
||||||
background: linear-gradient(135deg, rgba(10, 17, 40, 0.98), rgba(5, 15, 35, 0.98));
|
background: linear-gradient(135deg, rgba(10, 17, 40, 0.98), rgba(5, 15, 35, 0.98));
|
||||||
-webkit-backdrop-filter: blur(5px);
|
-webkit-backdrop-filter: blur(5px);
|
||||||
backdrop-filter: blur(5px);
|
backdrop-filter: blur(5px);
|
||||||
@@ -448,10 +508,10 @@ footer a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Safari-specific fix for particle rendering */
|
/* Safari-specific fix for particle rendering */
|
||||||
@media not all and (min-resolution:.001dpcm) { /* Targets Safari */
|
@media not all and (min-resolution:.001dpcm) {
|
||||||
.particle {
|
.particle {
|
||||||
z-index: -2; /* Lower z-index to ensure background visibility */
|
z-index: -2;
|
||||||
backface-visibility: hidden; /* Prevent rendering glitches */
|
backface-visibility: hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
96
css/style.min.css
vendored
96
css/style.min.css
vendored
@@ -758,9 +758,9 @@ html, body {
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
background-color: #0b0f2b;
|
|
||||||
background: -webkit-linear-gradient(135deg, #0b0f2b, #1a2249);
|
|
||||||
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
||||||
|
background-size: 200% 200%;
|
||||||
|
animation: bgShift 15s ease infinite;
|
||||||
font-family: 'Roboto', 'Verdana', sans-serif;
|
font-family: 'Roboto', 'Verdana', sans-serif;
|
||||||
color: #e0e7ff;
|
color: #e0e7ff;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
@@ -768,23 +768,31 @@ body {
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
}
|
}
|
||||||
|
@keyframes bgShift {
|
||||||
|
0% {
|
||||||
|
background-position: 0% 50%;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
background-position: 100% 50%;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-position: 0% 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
background: -webkit-linear-gradient(135deg, #0b0f2b, #1a2249);
|
|
||||||
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
background: linear-gradient(135deg, #0b0f2b, #1a2249);
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
background: -webkit-linear-gradient(45deg, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid rgba(10, 17, 40, 0.8);
|
border: 1px solid rgba(10, 17, 40, 0.8);
|
||||||
transition: background 0.3s ease;
|
transition: background 0.3s ease;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-thumb:hover {
|
::-webkit-scrollbar-thumb:hover {
|
||||||
background: -webkit-linear-gradient(45deg, #2dd4bf, #60a5fa);
|
|
||||||
background: linear-gradient(45deg, #2dd4bf, #60a5fa);
|
background: linear-gradient(45deg, #2dd4bf, #60a5fa);
|
||||||
box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
|
box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
|
||||||
}
|
}
|
||||||
@@ -794,19 +802,50 @@ body {
|
|||||||
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
background: -webkit-linear-gradient(to right, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
background-clip: text;
|
background-clip: text;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.minecraft-font:hover {
|
||||||
|
animation: glitch 0.3s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes glitch {
|
||||||
|
0% {
|
||||||
|
transform: translate(0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
||||||
|
}
|
||||||
|
20% {
|
||||||
|
transform: translate(-2px, 2px);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), 2px 0 #3b82f6;
|
||||||
|
}
|
||||||
|
40% {
|
||||||
|
transform: translate(2px, -2px);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), -2px 0 #14b8a6;
|
||||||
|
}
|
||||||
|
60% {
|
||||||
|
transform: translate(-2px, 0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), 2px 0 #3b82f6;
|
||||||
|
}
|
||||||
|
80% {
|
||||||
|
transform: translate(2px, 0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5), -2px 0 #14b8a6;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate(0);
|
||||||
|
text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.section-bg {
|
.section-bg {
|
||||||
background: rgba(10, 17, 40, 0.75);
|
background: rgba(10, 17, 40, 0.3);
|
||||||
|
-webkit-backdrop-filter: blur(12px);
|
||||||
|
backdrop-filter: blur(12px);
|
||||||
border-radius: 24px;
|
border-radius: 24px;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||||
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.08);
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.1);
|
||||||
transition: box-shadow 0.4s ease;
|
transition: box-shadow 0.4s ease, background 0.4s ease, -webkit-backdrop-filter 0.4s ease, backdrop-filter 0.4s ease;
|
||||||
animation: floatSection 4s ease-in-out infinite;
|
animation: floatSection 4s ease-in-out infinite;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
@@ -819,6 +858,9 @@ body {
|
|||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
}
|
}
|
||||||
.section-bg:hover {
|
.section-bg:hover {
|
||||||
|
background: rgba(10, 17, 40, 0.4);
|
||||||
|
-webkit-backdrop-filter: blur(14px);
|
||||||
|
backdrop-filter: blur(14px);
|
||||||
box-shadow: 0 12px 40px rgba(20, 184, 166, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.12);
|
box-shadow: 0 12px 40px rgba(20, 184, 166, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.12);
|
||||||
}
|
}
|
||||||
@keyframes floatSection {
|
@keyframes floatSection {
|
||||||
@@ -830,7 +872,6 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btn-minecraft {
|
.btn-minecraft {
|
||||||
background: -webkit-linear-gradient(45deg, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||||
background-size: 300% 300%;
|
background-size: 300% 300%;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -843,6 +884,7 @@ body {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: transform 0.3s, box-shadow 0.3s;
|
transition: transform 0.3s, box-shadow 0.3s;
|
||||||
animation: gradientShift 5s ease infinite;
|
animation: gradientShift 5s ease infinite;
|
||||||
|
box-shadow: 0 0 15px rgba(20, 184, 166, 0.5), 0 0 25px rgba(59, 130, 246, 0.3);
|
||||||
}
|
}
|
||||||
.btn-minecraft::before {
|
.btn-minecraft::before {
|
||||||
content: '';
|
content: '';
|
||||||
@@ -851,7 +893,6 @@ body {
|
|||||||
left: -100%;
|
left: -100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: -webkit-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
|
||||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
||||||
transition: left 0.5s;
|
transition: left 0.5s;
|
||||||
}
|
}
|
||||||
@@ -860,7 +901,8 @@ body {
|
|||||||
}
|
}
|
||||||
.btn-minecraft:hover {
|
.btn-minecraft:hover {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
box-shadow: 0 8px 30px rgba(20, 184, 166, 0.7);
|
box-shadow: 0 0 20px rgba(20, 184, 166, 0.8), 0 0 30px rgba(59, 130, 246, 0.5), 0 0 40px rgba(20, 184, 166, 0.3);
|
||||||
|
animation: neonPulse 1.5s ease-in-out infinite;
|
||||||
}
|
}
|
||||||
.btn-minecraft::after {
|
.btn-minecraft::after {
|
||||||
content: '';
|
content: '';
|
||||||
@@ -879,6 +921,14 @@ body {
|
|||||||
height: 200px;
|
height: 200px;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
@keyframes neonPulse {
|
||||||
|
0%, 100% {
|
||||||
|
filter: brightness(1);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
filter: brightness(1.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
@keyframes gradientShift {
|
@keyframes gradientShift {
|
||||||
0% {
|
0% {
|
||||||
background-position: 0% 50%;
|
background-position: 0% 50%;
|
||||||
@@ -932,7 +982,6 @@ body {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
|
||||||
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
@@ -1012,7 +1061,6 @@ body {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
background: -webkit-linear-gradient(45deg, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
background: linear-gradient(45deg, #14b8a6, #3b82f6);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@@ -1055,7 +1103,6 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.header-bg {
|
.header-bg {
|
||||||
background: -webkit-linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
|
||||||
background: linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
background: linear-gradient(180deg, rgba(10, 17, 40, 0.95), rgba(5, 15, 35, 0.95));
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -1079,7 +1126,6 @@ footer a:hover {
|
|||||||
.nav-btn {
|
.nav-btn {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
background: -webkit-linear-gradient(to right, #14b8a6, #3b82f6);
|
|
||||||
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
background: linear-gradient(to right, #14b8a6, #3b82f6);
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -1089,6 +1135,21 @@ footer a:hover {
|
|||||||
transition: transform 0.2s, box-shadow 0.2s;
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.nav-btn::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: -100%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
|
||||||
|
transition: left 0.4s ease;
|
||||||
|
}
|
||||||
|
.nav-btn:hover::before {
|
||||||
|
left: 100%;
|
||||||
}
|
}
|
||||||
.nav-btn:hover {
|
.nav-btn:hover {
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
@@ -1115,7 +1176,6 @@ footer a:hover {
|
|||||||
opacity: 0;
|
opacity: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
transition: opacity 0.3s ease, visibility 0.3s ease;
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
||||||
background: -webkit-linear-gradient(135deg, rgba(10, 17, 40, 0.98), rgba(5, 15, 35, 0.98));
|
|
||||||
background: linear-gradient(135deg, rgba(10, 17, 40, 0.98), rgba(5, 15, 35, 0.98));
|
background: linear-gradient(135deg, rgba(10, 17, 40, 0.98), rgba(5, 15, 35, 0.98));
|
||||||
-webkit-backdrop-filter: blur(5px);
|
-webkit-backdrop-filter: blur(5px);
|
||||||
backdrop-filter: blur(5px);
|
backdrop-filter: blur(5px);
|
||||||
|
Reference in New Issue
Block a user