/* ================================================
   TEAM GREM - Early 2000s Style CSS
   ================================================ */

/* === PARALLAX GRID PATTERN === */
/* Container sits behind the wave canvas (z-index: -1) */
.parallax-grid-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.parallax-grid-layer-1,
.parallax-grid-layer-2,
.parallax-grid-layer-3 {
    position: absolute;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    transform: translateZ(0);
    will-change: transform;
    pointer-events: none;
}

.parallax-grid-layer-1 {
    background-image:
        repeating-linear-gradient(0deg, transparent 0px, transparent 99px, rgba(128, 128, 128, 0.2) 99px, rgba(128, 128, 128, 0.2) 100px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 99px, rgba(128, 128, 128, 0.2) 99px, rgba(128, 128, 128, 0.2) 100px);
    background-size: 100px 100px;
}

.parallax-grid-layer-2 {
    background-image:
        repeating-linear-gradient(0deg, transparent 0px, transparent 49px, rgba(128, 128, 128, 0.12) 49px, rgba(128, 128, 128, 0.12) 50px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 49px, rgba(128, 128, 128, 0.12) 49px, rgba(128, 128, 128, 0.12) 50px);
    background-size: 50px 50px;
}

.parallax-grid-layer-3 {
    background-image:
        repeating-linear-gradient(0deg, transparent 0px, transparent 24px, rgba(128, 128, 128, 0.08) 24px, rgba(128, 128, 128, 0.08) 25px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 24px, rgba(128, 128, 128, 0.08) 24px, rgba(128, 128, 128, 0.08) 25px);
    background-size: 25px 25px;
}

/* === NAV DROPDOWN === */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 14, 0.98);
    border: 1px solid #00ffff;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 140px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(0, 255, 255, 0.15);
    color: #ff00ff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Verdana', 'Arial', sans-serif;
    font-size: 12px;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.6;
}

#container {
    max-width: 1024px;
    margin: 0 auto;
    background-color: rgba(26, 26, 26, 0.85);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: 3px solid #00ff00;
    border-radius: 0;
}

a {
    color: #00ffff;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: #ff00ff;
    text-decoration: none;
}

a:visited {
    color: #ff66ff;
}

/* === NAVIGATION === */
#main-nav {
    background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
    border-bottom: 3px solid #00ff00;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.5);
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    display: block;
    padding: 12px 18px;
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border-right: 1px solid #444;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.nav-list li:last-child a {
    border-right: none;
}

.nav-list li a:hover,
.nav-list li.active a {
    background-color: #00ff00;
    color: #000;
    text-shadow: none;
}

/* === HEADER === */
#main-header {
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(3, 5, 7, 0.85) 50%, rgba(0, 26, 77, 0.85) 100%);
    border-bottom: 5px double #c300ff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 255, 0.03) 2px,
        rgba(255, 0, 255, 0.03) 4px
    );
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 1;
}

#main-header h1 {
    font-size: 36px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    color: #c300ff;
    text-shadow: 
        0 0 10px #8b008b,
        0 0 20px #6f00ff,
        0 0 30px #9400d3,
        0 0 40px #8b008b,
        2px 2px 0 #000,
        -2px -2px 0 #000;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 0, 255, 0.8),
            0 0 20px rgba(255, 0, 255, 0.6),
            0 0 30px rgba(199, 21, 133, 0.4),
            2px 2px 0 #000;
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 0, 255, 0.9),
            0 0 30px rgba(255, 0, 255, 0.7),
            0 0 40px rgba(199, 21, 133, 0.5),
            0 0 50px rgba(139, 0, 139, 0.3),
            2px 2px 0 #000;
    }
}

.tagline {
    font-size: 14px;
    color: #ffff00;
    font-style: italic;
    text-shadow: 1px 1px 2px #000;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === MAIN CONTENT === */
main {
    padding: 20px;
    min-height: 500px;
}

.welcome-box,
.section-box {
    background-color: rgba(37, 37, 37, 0.75);
    border: 2px solid #12081b;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(81, 4, 97, 0.3);
}

.welcome-box h2,
.section-box h2 {
    color: #00ffff;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px dotted #00ff00;
    padding-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.welcome-box h3,
.section-box h3 {
    color: #ff00ff;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.center-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border: 3px solid #00ff00;
}

.info-section ul,
.project-list {
    list-style-type: square;
    margin-left: 20px;
    color: #cccccc;
}

.info-section li,
.project-list li {
    margin-bottom: 8px;
}

.stats-counter {
    background-color: #1a1a1a;
    border: 2px dashed #ffff00;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
}

.stats-counter strong {
    color: #ffff00;
    font-size: 16px;
}

/* === CONTENT GRID === */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}
.content-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 2px solid #ff00ff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.content-box h3 {
    color: #ff00ff;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.content-box ul {
    list-style: none;
    margin-left: 0;
}

.content-box ul li::before {
    content: "▸ ";
    color: #00ff00;
    font-weight: bold;
}

/* === MARQUEE === */
.announcement-marquee {
    background-color: #000;
    border: 2px solid #ffff00;
    padding: 10px;
    margin: 20px 0 0 0;
    color: #ffff00;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* Performance optimizations for smooth scrolling */
    contain: content;
    will-change: contents;
}

.announcement-marquee marquee {
    transform: translateZ(0);
    backface-visibility: hidden;
    text-rendering: optimizeSpeed;
}

/* === AUTHOR LAYOUT === */
.author-layout {
    width: 100%;
    border-collapse: collapse;
}

.sidebar-cell {
    width: 250px;
    vertical-align: top;
    padding-right: 20px;
}

.content-cell {
    vertical-align: top;
}

.sidebar {
    background-color: rgba(37, 37, 37, 0.8);
    border: 2px solid #00ffff;
    padding: 15px;
    position: sticky;
    top: 60px;
}

.sidebar h3 {
    color: #00ffff;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 2px solid #00ffff;
    padding-bottom: 8px;
}

.author-nav ul {
    list-style: none;
}

.author-nav li {
    margin-bottom: 10px;
}

.author-nav li a {
    display: block;
    padding: 8px 12px;
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    text-decoration: none;
    color: #00ff00;
    transition: all 0.3s;
}

.author-nav li a:hover,
.author-nav li.active a {
    background-color: #00ff00;
    color: #000;
}

.sidebar-widget {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #666;
}

.sidebar-widget h4 {
    color: #ff00ff;
    font-size: 14px;
    margin-bottom: 10px;
}

.stats-list {
    list-style: none;
    font-size: 11px;
}

.stats-list li {
    margin-bottom: 5px;
}

.status-online {
    color: #00ff00;
    font-weight: bold;
}

.status-message {
    font-style: italic;
    font-size: 11px;
    color: #999;
}

/* === PROFILE SECTIONS === */
.profile-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.profile-image-placeholder {
    flex-shrink: 0;
}

.profile-image-placeholder img,
.avatar-placeholder {
    width: 150px;
    height: 150px;
    border: 3px solid #00ff00;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003300 0%, #006600 100%);
    color: #00ff00;
    font-size: 48px;
    font-weight: bold;
}

.profile-bio h2 {
    color: #00ffff;
    margin-bottom: 15px;
}

/* === SKILLS === */
.skills-grid {
    margin-top: 15px;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-item strong {
    display: block;
    color: #00ff00;
    margin-bottom: 5px;
}

.skill-bar {
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    height: 20px;
    position: relative;
}

.skill-fill {
    background: linear-gradient(90deg, #00ff00 0%, #00cc00 100%);
    height: 100%;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* === SOCIAL LINKS TABLE === */
.social-links {
    width: 100%;
    border-collapse: collapse;
}

.social-links tr {
    border-bottom: 1px solid #333;
}

.social-links td {
    padding: 12px 8px;
}

.social-icon {
    width: 60px;
    text-align: center;
}

.social-icon img {
    width: 40px;
    height: 40px;
    border: 2px solid #00ff00;
    transition: all 0.3s;
}

.social-icon img:hover {
    border-color: #ff00ff;
    transform: scale(1.1);
}

.social-label a {
    color: #00ffff;
    text-decoration: none;
    font-size: 14px;
}

.social-label a:hover {
    color: #ff00ff;
    text-decoration: underline;
}

/* === AUTHOR 2 SPECIAL LAYOUT === */
.vertical-name-layout {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.vertical-name {
    flex-shrink: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.vertical-name h2 {
    color: #ff00ff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.vertical-name span {
    display: inline-block;
}

.bio-with-image {
    display: flex;
    gap: 20px;
    flex: 1;
}

.bio-text {
    flex: 1;
}

.bio-text h3 {
    color: #00ffff;
    margin-bottom: 10px;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-item {
    background-color: #1a1a1a;
    border: 2px solid #00ff00;
    padding: 15px;
    text-align: center;
}

.placeholder-art {
    background: linear-gradient(135deg, #003300 0%, #006600 100%);
    border: 2px dashed #00ff00;
    padding: 40px 20px;
    margin-bottom: 10px;
    font-size: 24px;
}

.gallery-item p {
    font-size: 11px;
    color: #999;
}

/* === TABLES === */
.facts-table,
.tools-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.facts-table td,
.tools-table td,
.tools-table th {
    padding: 10px;
    border: 1px solid #333;
}

.tools-table th {
    background-color: #1a1a1a;
    color: #00ff00;
    text-align: left;
}

.facts-table tr:nth-child(even),
.tools-table tr:nth-child(even) {
    background-color: #1f1f1f;
}

/* === BLOCKQUOTES === */
blockquote {
    background-color: #1a1a1a;
    border-left: 5px solid #ff00ff;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #cccccc;
}

.artist-quote {
    border-left-color: #00ffff;
}

/* === TEAM GRID === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.team-member {
    background-color: #1a1a1a;
    border: 2px solid #00ffff;
    padding: 20px;
}

.team-member h3 {
    color: #00ff00;
    margin-bottom: 5px;
}

.role {
    color: #ff00ff;
    font-style: italic;
    font-size: 12px;
    margin-bottom: 15px;
}

.profile-link {
    display: inline-block;
    margin-top: 10px;
    color: #ffff00;
}

/* === GUESTBOOK === */
.guestbook-form {
    background-color: #252525;
    border: 2px solid #00ff00;
    padding: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #00ff00;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    background-color: #1a1a1a;
    border: 2px solid #00ff00;
    color: #e0e0e0;
    font-family: 'Verdana', sans-serif;
    font-size: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 100%);
    border: 2px solid #00ff00;
    color: #000;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(180deg, #00ffff 0%, #00cccc 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.guestbook-entries {
    margin-top: 30px;
}

.entry {
    background-color: #252525;
    border: 2px solid #ff00ff;
    padding: 15px;
    margin-bottom: 15px;
}

.entry-header {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.entry-author {
    color: #00ffff;
    font-weight: bold;
    font-size: 14px;
}

.entry-date {
    color: #999;
    font-size: 11px;
    font-style: italic;
}

.entry-message {
    color: #cccccc;
    line-height: 1.6;
}

/* === FOOTER === */
footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    border-top: 3px solid #00ff00;
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 11px;
}

footer a {
    color: #00ff00;
}

.footer-note {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list li a {
        border-right: none;
        border-bottom: 1px solid #444;
    }
    
    .author-layout {
        display: block;
    }
    
    .sidebar-cell,
    .content-cell {
        display: block;
        width: 100%;
        padding: 0;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .profile-header {
        flex-direction: column;
    }
    
    .vertical-name-layout {
        flex-direction: column;
    }
    
    .vertical-name {
        writing-mode: horizontal-tb;
    }
    
    .vertical-name h2 {
        letter-spacing: 5px;
    }
    
    .bio-with-image {
        flex-direction: column;
    }
}

/* === BUTTONS === */
.contact-button {
    display: inline-block;
    background: linear-gradient(180deg, #ff00ff 0%, #cc00cc 100%);
    border: 2px solid #ff00ff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.contact-button:hover {
    background: linear-gradient(180deg, #00ffff 0%, #00cccc 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* === FUN EFFECTS === */
.team-name {
    background: linear-gradient(90deg, #00ff00, #00ffff, #ff00ff, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s ease infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Instagram */
/* === SOCIAL BADGES === */
.social-badges-container {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  width: 100%;
}

.social-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 120px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.social-badge i {
  transition: transform 0.3s ease;
}

.social-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-badge:hover i {
  transform: scale(1.2);
}

/* Placeholder badges */
.social-badge.placeholder {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #666;
  border-color: rgba(255, 255, 255, 0.1);
  cursor: default;
}

.social-badge.placeholder:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-badge.placeholder:hover i {
  transform: none;
}

/* YouTube badge */
.social-badge.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.social-badge.youtube:hover {
  background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Discord badge */
.social-badge.discord {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.social-badge.discord:hover {
  background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

/* Instagram badge */
.social-badge.instagram {
  background: linear-gradient(135deg, #833ab4 0%, #e1306c 50%, #fd1d1d 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.social-badge.instagram:hover {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f87171 100%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}


/* Youtube */
.fa-youtube {
  background: #dd4b39;
  color: white;
}


/* Purple Word Art Style */
h1.style-nine {
    font-family: Impact, sans-serif;
    font-weight: 700;
    font-size: 3.5em;
    color: transparent;
    background: linear-gradient(45deg, #6900cc, #cb00cc, #9d00ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #d2a2fe;
    text-stroke: 2px #d2a2fe;
    text-shadow: 
        3px 3px 0px #adadff,
        6px 6px 8px rgba(109, 0, 204, 0.6);
    transform: scale(0.9, 1.65) rotate(-2deg) skew(-2deg);
    margin: 20px 0;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
}

h1.style-nine::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #9d00ff;
    text-shadow: 2px 2px 4px rgba(157, 0, 255, 0.8);
    -webkit-text-stroke: transparent;
    text-stroke: transparent;
}

/* Grungy Text Style */
.grungy-text {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 2.2em;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px #333,
        6px 6px 8px rgba(255, 68, 68, 0.6),
        -1px -1px 0px #666,
        0px 0px 15px rgba(255, 0, 0, 0.8);
    transform: rotate(-1deg) skew(-2deg);
    margin: 15px 0;
    filter: contrast(1.4) brightness(1.1);
}

.grungy-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    z-index: 1;
    pointer-events: none;
}

.grungy-text::after {
    content: attr(data-text);
    position: absolute;
    top: 1px;
    left: 1px;
    color: #990000;
    z-index: -1;
    text-shadow: none;
    opacity: 0.7;
}

/* === LIVE TEXT STYLING === */
.live-text {
    display: inline-block;
    color: #00ff00;
    font-weight: bold;
    font-size: 1.1em;
    animation: wave 0.6s ease-in-out infinite, glow 2s ease-in-out infinite;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    }
    50% {
        text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00, 0 0 50px #00ff00;
    }
}