@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-base: #000000;         
--bg-surface: #0a0a0a;      
--bg-card: #0d0d0d;         
--border: #222222;          
--border-hover: #444444;    
--text-main: #d9d9d9;       
--text-muted: #6e6e6e;      
--accent: #ffffff;          
--error: #8b0000;           
}
body {
background-color: var(--bg-base);
color: var(--text-main);
min-height: 100vh;
font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
pointer-events: none;
z-index: 10;
}
.blood-splatter {
width: 250px;
height: 250px;
margin-left: -125px; 
margin-top: -125px;
background-image: 
radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.85) 15%, transparent 22%),
radial-gradient(circle at 45% 45%, rgba(150, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.9) 5%, transparent 7%),
radial-gradient(circle at 56% 58%, rgba(180, 0, 0, 0.9) 0%, transparent 6%),
radial-gradient(circle at 48% 55%, rgba(139, 0, 0, 0.95) 0%, transparent 4%),
radial-gradient(circle at 53% 43%, rgba(160, 0, 0, 0.9) 0%, transparent 5%),
radial-gradient(circle at 38% 52%, rgba(139, 0, 0, 0.95) 0%, transparent 4%),
radial-gradient(circle at 62% 48%, rgba(170, 0, 0, 0.9) 0%, transparent 6%),
radial-gradient(circle at 51% 65%, rgba(139, 0, 0, 0.85) 0%, transparent 4%),
radial-gradient(circle at 35% 35%, rgba(139, 0, 0, 0.8) 0%, transparent 3%),
radial-gradient(circle at 65% 65%, rgba(139, 0, 0, 0.8) 0%, transparent 3%),
radial-gradient(circle at 40% 60%, rgba(145, 0, 0, 0.9) 0%, transparent 3%);
background-size: 100% 100%;
opacity: 0;
transform: scale(0);
animation: bloodSplash 4.5s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}
@keyframes bloodSplash {
0% { opacity: 0; transform: scale(0.2); }
5% { opacity: 1; transform: scale(1.1); }
15% { opacity: 1; transform: scale(1.2) translateY(5px); }
50% { opacity: 0.8; transform: scale(1.25) translateY(30px); }
100% { opacity: 0; transform: scale(1.3) translateY(80px); }
}
.welcome-overlay {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.95);
z-index: 99999;
display: flex;
justify-content: center;
align-items: center;
backdrop-filter: blur(10px);
}
.welcome-modal {
background: rgba(10, 10, 10, 0.95);
border: 1px solid #333;
padding: 3rem 2.5rem;
border-radius: 8px;
max-width: 500px;
width: 90%;
text-align: center;
box-shadow: 0 0 40px rgba(139, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.8);
animation: modalAppear 0.5s cubic-bezier(0.1, 0.9, 0.2, 1);
}
@keyframes modalAppear {
from { opacity: 0; transform: scale(0.9) translateY(30px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}
.welcome-modal h2 {
font-family: 'Cinzel', serif;
color: var(--error);
margin-bottom: 1.5rem;
letter-spacing: 2px;
}
.welcome-modal p {
font-family: 'Work Sans', sans-serif;
color: #bbb;
line-height: 1.7;
margin-bottom: 1.5rem;
font-size: 0.95rem;
}
.welcome-modal .highlight-safe {
color: #4CAF50;
font-weight: bold;
text-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
}
.welcome-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 2rem;
}
.btn-wa {
background-color: #075E54;
background-image: none;
color: white;
border: 1px solid #128C7E;
}
.btn-wa:hover {
background-color: #128C7E;
border-color: #25D366;
box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
color: white;
}
.btn-ok {
background-color: #222;
background-image: none;
border: 1px solid #555;
}
.btn-ok:hover {
background-color: #333;
border-color: #888;
}
header {
background-color: rgba(0, 0, 0, 0.9);
border-bottom: 1px solid var(--border);
padding: 1.2rem 2rem;
position: sticky;
top: 0;
z-index: 100;
}
.nav-container {
max-width: 1100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 15px;
font-family: 'Cinzel', serif;
font-size: 1.5rem;
font-weight: 900;
letter-spacing: 2px;
color: var(--text-main);
text-decoration: none;
text-transform: uppercase;
}
.logo span {
color: var(--text-muted);
}
.logo-skull {
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid var(--border);
object-fit: cover;
filter: grayscale(1) contrast(1.1);
}
.nav-links {
display: flex;
gap: 1rem;
align-items: center;
}
.nav-btn {
font-family: 'Cinzel', serif;
text-decoration: none;
color: var(--text-muted);
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 1px;
transition: all 0.3s ease;
padding: 0.5rem 1rem;
}
.nav-btn:hover, .nav-btn.active {
color: var(--accent);
text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.container {
max-width: 1100px;
margin: 3rem auto;
padding: 0 1.5rem;
position: relative;
z-index: 20;
}
.gothic-hero {
text-align: center;
margin-bottom: 2rem;
position: relative;
}
.hero-ghost-frame {
display: inline-block;
position: relative;
width: 180px;
height: 180px;
margin: 0 auto 1.5rem auto;
border-radius: 50%;
border: 3px solid #222222;
box-shadow: 
0 0 0 1px #000, 
0 0 30px rgba(0, 0, 0, 0.9), 
inset 0 0 20px rgba(0, 0, 0, 0.9);
padding: 5px;
background: linear-gradient(135deg, #1c1c1c, #0a0a0a);
overflow: hidden;
}
.hero-ghost-img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
filter: grayscale(1) brightness(0.9) contrast(1.2);
}
.creepy-quote {
font-family: 'Playfair Display', serif;
font-size: 1rem;
color: #bb0000;
margin: 1rem auto 2rem auto;
height: 24px;
opacity: 0;
filter: blur(6px);
letter-spacing: 10px;
transform: translateY(-10px) scale(0.95);
transition: all 1.5s cubic-bezier(0.5, 0, 0.5, 1);
font-style: italic;
text-shadow: 0 0 8px rgba(180, 0, 0, 0.5);
font-weight: bold;
}
.creepy-quote.show {
opacity: 1;
filter: blur(0px);
letter-spacing: 1.5px;
transform: translateY(0) scale(1);
transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-title {
font-family: 'Cinzel', serif;
font-size: 2.2rem;
font-weight: 900;
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 1rem;
color: var(--text-main);
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.hero-desc {
max-width: 600px;
margin: 0 auto;
font-family: 'Playfair Display', serif;
font-size: 1.15rem;
font-style: italic;
color: var(--text-muted);
line-height: 1.7;
}
.search-filter-bar {
display: flex;
flex-direction: column;
gap: 1.5rem;
margin-bottom: 3rem;
background-color: var(--bg-surface);
border: 1px solid var(--border);
padding: 1.8rem;
border-radius: 4px;
}
.search-input-wrapper {
width: 100%;
}
.search-control {
width: 100%;
background-color: var(--bg-base);
border: 1px solid var(--border);
padding: 0.9rem 1.2rem;
color: var(--text-main);
font-size: 1.05rem;
border-radius: 3px;
font-family: 'Playfair Display', serif;
transition: all 0.3s ease;
}
.search-control:focus {
outline: none;
border-color: var(--border-hover);
}
.filter-tags {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}
.filter-tag {
font-family: 'Cinzel', serif;
background-color: var(--bg-base);
border: 1px solid var(--border);
padding: 0.6rem 1.4rem;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
text-transform: uppercase;
transition: all 0.3s ease;
color: var(--text-muted);
border-radius: 2px;
}
.filter-tag.active, .filter-tag:hover {
background-color: #1a1a1a;
border-color: #555555;
color: var(--text-main);
box-shadow: inset 0 0 5px rgba(0,0,0,0.8);
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 2rem;
}
.tool-card {
background-color: var(--bg-surface);
border: 1px solid var(--border);
border-radius: 4px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
display: flex;
flex-direction: column;
}
.tool-card:hover {
transform: translateY(-4px);
border-color: #444444;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.tool-img-container {
width: 100%;
height: 190px;
overflow: hidden;
position: relative;
border-bottom: 1px solid var(--border);
background-color: var(--bg-base);
}
.tool-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(1) brightness(0.85);
transition: transform 0.6s ease, filter 0.6s ease;
}
.tool-card:hover .tool-img {
transform: scale(1.02);
filter: grayscale(0.8) brightness(0.95);
}
.tool-badge {
position: absolute;
top: 12px;
right: 12px;
background-color: rgba(0, 0, 0, 0.95);
border: 1px solid var(--border);
color: var(--text-main);
padding: 0.3rem 0.8rem;
font-size: 0.75rem;
font-family: 'Cinzel', serif;
font-weight: 700;
text-transform: uppercase;
}
.tool-info {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.tool-title {
font-family: 'Cinzel', serif;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 0.8rem;
color: var(--text-main);
}
.tool-desc {
font-family: 'Work Sans', sans-serif;
font-size: 0.88rem;
color: #b8b8b8;
line-height: 1.55;
margin-bottom: 1.8rem;
flex-grow: 1;
}
.card-meta-row {
display: flex;
gap: 0.5rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.meta-badge {
background-color: var(--bg-base);
border: 1px solid var(--border);
padding: 0.25rem 0.6rem;
font-size: 0.75rem;
font-family: 'Cinzel', serif;
color: var(--text-muted);
}
.btn {
display: inline-flex;
justify-content: center;
align-items: center;
width: 100%;
padding: 0.85rem 1.5rem;
background-color: #2c2c2c;
background-image: 
radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.4) 1px, transparent 1px),
radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.5) 2px, transparent 2px),
linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03)),
linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, #1a1a1a 40%, #0d0d0d 100%);
background-size: 8px 8px, 12px 12px, 4px 4px, 100% 100%;
border-top: 2px solid #5d5d5d;
border-left: 2px solid #4a4a4a;
border-right: 2px solid #111111;
border-bottom: 2px solid #000000;
border-radius: 2px;
color: #c0c0c0; 
font-family: 'Cinzel', serif;
font-size: 0.85rem;
font-weight: 900;
letter-spacing: 2px;
text-transform: uppercase;
cursor: pointer;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), -1px -1px 1px rgba(255, 255, 255, 0.1);
box-shadow: 
inset 0 1px 4px rgba(255, 255, 255, 0.2),
inset 0 -2px 6px rgba(0, 0, 0, 0.8),
0 4px 12px rgba(0, 0, 0, 0.8);
transition: all 0.2s ease;
text-decoration: none;
position: relative;
overflow: hidden;
}
.btn::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M 20,0 L 25,20 L 15,35 L 30,50 L 25,70 L 40,80 L 35,100" fill="none" stroke="rgba(0,0,0,0.4)" stroke-width="1.5"/><path d="M 70,0 L 65,30 L 80,45 L 75,60 L 90,80 L 85,100" fill="none" stroke="rgba(0,0,0,0.3)" stroke-width="1"/></svg>') no-repeat center center;
background-size: cover;
opacity: 0.7;
pointer-events: none;
}
.btn:hover {
background-color: #383838;
color: #ffffff;
border-top: 2px solid #7a7a7a;
border-left: 2px solid #666666;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
box-shadow: 
inset 0 2px 5px rgba(255, 255, 255, 0.3),
inset 0 -2px 8px rgba(0, 0, 0, 0.9),
0 6px 16px rgba(0, 0, 0, 0.9);
transform: translateY(-2px);
}
.btn:active {
background-color: #1a1a1a;
border-top: 2px solid #000000;
border-left: 2px solid #000000;
border-bottom: 2px solid #333333;
border-right: 2px solid #333333;
box-shadow: 
inset 0 4px 8px rgba(0, 0, 0, 0.9),
0 1px 2px rgba(0, 0, 0, 0.4);
transform: translateY(1px);
}
.btn-secondary {
background: linear-gradient(180deg, #1c1c1c 0%, #0d0d0d 100%);
border-top: 1px solid #333333;
color: var(--text-muted);
}
.btn-secondary:hover {
background: linear-gradient(180deg, #2a2a2a 0%, #121212 100%);
color: var(--text-main);
border-top: 1px solid #444444;
}
.form-card {
background-color: var(--bg-surface);
border: 1px solid var(--border);
border-radius: 6px;
padding: 3.5rem 4rem;
max-width: 850px;
margin: 0 auto;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}
.form-group {
margin-bottom: 2rem;
}
.form-group label {
font-family: 'Cinzel', serif;
display: block;
font-size: 0.9rem;
font-weight: 700;
color: var(--text-main);
margin-bottom: 0.8rem;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.form-control {
width: 100%;
background-color: var(--bg-base);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1.2rem 1.5rem;
color: var(--text-main);
font-size: 1rem;
transition: all 0.3s ease;
}
.form-control:focus {
outline: none;
border-color: #555;
box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}
textarea.form-control {
resize: vertical;
min-height: 150px;
}
@media (max-width: 768px) {
header {
padding: 1rem;
}
.nav-container {
flex-direction: column;
gap: 1.2rem;
align-items: stretch;
text-align: center;
}
.nav-links {
justify-content: center;
}
.container {
margin: 1.5rem auto;
}
.gothic-hero {
padding: 1rem 0;
}
.hero-ghost-frame {
width: 220px;
height: 220px;
}
.hero-title {
font-size: 1.8rem;
}
.search-filter-bar {
padding: 1.2rem;
}
.tools-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.tool-title {
font-size: 1rem;
}
.tool-desc {
font-size: 0.85rem;
}
.btn {
padding: 0.6rem 1rem;
font-size: 0.75rem;
}
.form-card {
padding: 1.5rem;
}
}
.notification {
position: fixed;
bottom: 25px;
right: 25px;
padding: 1.1rem 1.8rem;
border-radius: 3px;
background-color: var(--bg-surface);
border: 1px solid var(--border);
box-shadow: 0 10px 25px rgba(0,0,0,0.8);
z-index: 1000;
transform: translateY(150%);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
font-family: 'Cinzel', serif;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
}
.notification.show {
transform: translateY(0);
}
.notification.error {
border-color: var(--error);
color: var(--error);
}
}

/* Corner Brackets on Card */
.tool-card {
  position: relative;
}
.tool-card::before, .tool-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.tool-card::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid #222;
  border-left: 1.5px solid #222;
}
.tool-card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid #222;
  border-right: 1.5px solid #222;
}
.tool-card:hover::before {
  border-top-color: var(--error);
  border-left-color: var(--error);
  box-shadow: -2px -2px 5px rgba(139, 0, 0, 0.4);
}
.tool-card:hover::after {
  border-bottom-color: var(--error);
  border-right-color: var(--error);
  box-shadow: 2px 2px 5px rgba(139, 0, 0, 0.4);
}
.tool-card .tool-img-container::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.tool-card .tool-info::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 12px;
  height: 12px;
  border-bottom: 1.5px solid #222;
  border-left: 1.5px solid #222;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.tool-card:hover .tool-img-container::before {
  border-top-color: var(--error);
  border-right-color: var(--error);
  box-shadow: 2px -2px 5px rgba(139, 0, 0, 0.4);
}
.tool-card:hover .tool-info::after {
  border-bottom-color: var(--error);
  border-left-color: var(--error);
  box-shadow: -2px 2px 5px rgba(139, 0, 0, 0.4);
}

/* Mouse Glow Follower */
#mouseGlow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  margin-left: -300px;
  margin-top: -300px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  opacity: 0;
}
body:hover #mouseGlow {
  opacity: 1;
}

/* Details Modal Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background-color: #0d0d0d;
  border: 1.5px solid var(--error);
  border-radius: 8px;
  width: 90%;
  max-width: 480px;
  max-height: 82vh;
  box-shadow: 0 0 35px rgba(139, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}
.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
}
.modal-img-container {
  height: 180px;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
}
.modal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0,0,0,0.9);
  border: 1px solid var(--error);
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-transform: uppercase;
}
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}
.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.modal-meta-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.modal-meta-badge {
  background-color: #000;
  border: 1px solid #222;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-family: 'Cinzel', serif;
  color: var(--text-muted);
}
.modal-desc {
  font-family: 'Work Sans', sans-serif;
  color: #dcdcdc;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal-close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,0,0,0.6);
  border: 1px solid #333;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}
.modal-close-btn:hover {
  background: var(--error);
  border-color: #ff3333;
}

/* Audio visualizer visual indicators */
.visualizer-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  background-color: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
  height: 34px;
}
.visualizer-btn:hover {
  border-color: var(--border-hover);
  background-color: rgba(10, 10, 10, 0.8);
}
.visualizer-bar {
  width: 3px;
  height: 16px;
  background-color: var(--text-muted);
  border-radius: 1px;
  transition: height 0.15s ease, background-color 0.3s ease;
}
.visualizer-btn.playing .visualizer-bar {
  background-color: var(--error);
  animation: bounceVisualizer 1.2s infinite ease-in-out;
  box-shadow: 0 0 5px rgba(139, 0, 0, 0.4);
}
.visualizer-btn.playing .visualizer-bar:nth-child(1) { animation-delay: 0.1s; }
.visualizer-btn.playing .visualizer-bar:nth-child(2) { animation-delay: 0.4s; }
.visualizer-btn.playing .visualizer-bar:nth-child(3) { animation-delay: 0.2s; }
.visualizer-btn.playing .visualizer-bar:nth-child(4) { animation-delay: 0.5s; }

@keyframes bounceVisualizer {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}

@media (max-width: 600px) {
  /* Welcome Modal Mobile overrides */
  .welcome-modal {
    padding: 2rem 1.2rem !important;
    width: 92% !important;
  }
  .welcome-modal h2 {
    font-size: 1.15rem !important;
  }
  .welcome-modal p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
  
  /* Details Modal Mobile overrides */
  .modal-content {
    width: 92% !important;
    max-width: 350px !important;
  }
  .modal-img-container {
    height: 130px !important;
  }
  .modal-body {
    padding: 1rem !important;
  }
  .modal-title {
    font-size: 1.1rem !important;
  }
  .modal-desc {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.2rem !important;
  }
  
  /* Footer centering overrides */
  footer {
    text-align: center !important;
    padding: 2.5rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  footer p {
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

/* Custom scrollbar for scrollable modal description body */
.modal-body::-webkit-scrollbar {
  width: 5px;
}
.modal-body::-webkit-scrollbar-track {
  background: #0d0d0d;
}
.modal-body::-webkit-scrollbar-thumb {
  background: var(--error);
  border-radius: 2px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #a30000;
}

