* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: radial-gradient(ellipse at center, #1e3c72 0%, #2a5298 50%, #0f1419 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neon Gaming Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 31%, rgba(0, 255, 255, 0.1) 32%, transparent 33%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.1) 31%, rgba(255, 0, 255, 0.1) 32%, transparent 33%),
        linear-gradient(90deg, transparent 30%, rgba(0, 255, 128, 0.1) 31%, rgba(0, 255, 128, 0.1) 32%, transparent 33%);
    background-size: 150px 150px, 200px 200px, 100px 100px;
    animation: neonGrid 20s linear infinite;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><g stroke="rgba(0,255,255,0.3)" stroke-width="2" fill="none"><rect x="50" y="50" width="60" height="60" transform="rotate(45 80 80)"/><rect x="150" y="80" width="40" height="40" transform="rotate(30 170 100)"/><polygon points="250,60 280,90 250,120 220,90"/><rect x="320" y="70" width="50" height="50" transform="rotate(60 345 95)"/><polygon points="80,180 110,210 80,240 50,210"/><rect x="180" y="200" width="35" height="35" transform="rotate(15 197.5 217.5)"/><polygon points="280,190 310,220 280,250 250,220"/><rect x="60" y="320" width="45" height="45" transform="rotate(75 82.5 342.5)"/><polygon points="200,300 230,330 200,360 170,330"/><rect x="300" y="310" width="55" height="55" transform="rotate(90 327.5 337.5)"/></g></svg>') repeat;
    animation: floatShapes 25s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes neonGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-150px, -150px); }
}

@keyframes floatShapes {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, -20px) rotate(180deg); }
    75% { transform: translate(30px, -10px) rotate(270deg); }
}

/* Header - Neon Gaming Style */
header {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.9) 50%, rgba(15, 20, 25, 0.9) 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo-3d {
    position: relative;
    display: inline-block;
    perspective: 600px;
}

.header-logo-text {
    font-family: 'Impact', Arial Black, sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    display: block;
    line-height: 0.9;
    transform-style: preserve-3d;
}

.fort-smith-header {
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    transform: perspective(400px) rotateX(20deg) rotateY(-10deg);
    margin-bottom: 0.2rem;
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.8),
        2px 2px 0px #000,
        4px 4px 0px rgba(0, 255, 255, 0.6),
        6px 6px 0px rgba(255, 0, 255, 0.4);
}

.fort-smith-header::before {
    content: 'FORT SMITH';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #00BFFF 0%, #87CEEB 25%, #FF69B4 75%, #DDA0DD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}

.fort-smith-header::after {
    content: 'FORT SMITH';
    position: absolute;
    top: 3px;
    left: 3px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    opacity: 0.7;
}

.card-con-header {
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    transform: perspective(400px) rotateX(20deg) rotateY(10deg) translateZ(20px);
    margin-left: 1rem;
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 0.8),
        2px 2px 0px #000,
        4px 4px 0px rgba(255, 0, 255, 0.6),
        6px 6px 0px rgba(0, 255, 255, 0.4);
}

.card-con-header::before {
    content: 'CARD CON';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #FF69B4 0%, #9932CC 25%, #00BFFF 75%, #87CEEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}

.card-con-header::after {
    content: 'CARD CON';
    position: absolute;
    top: 3px;
    left: 3px;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    opacity: 0.7;
}

@keyframes neonGlow {
    0% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px #00ffff);
    }
    100% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px #ff00ff);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    padding: 10px 20px;
    border: 2px solid #00ffff;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a::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: all 0.5s;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.4));
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), inset 0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
    border-color: #ff00ff;
}

/* Hero Section - Banner Image */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.3) translateY(-15%);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(30, 60, 114, 1) 0%, 
        rgba(30, 60, 114, 0.9) 20%, 
        rgba(30, 60, 114, 0.7) 40%, 
        rgba(30, 60, 114, 0.3) 60%, 
        transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Categories Section - Neon Gaming Style */
.categories {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f1419 0%, #1e3c72 50%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><g fill="none" stroke="rgba(0,255,255,0.2)" stroke-width="2"><polygon points="100,50 150,80 120,130 70,100"/><polygon points="400,60 450,90 420,140 370,110"/><polygon points="200,200 250,230 220,280 170,250"/><polygon points="500,220 550,250 520,300 470,270"/></g><g fill="none" stroke="rgba(255,0,255,0.2)" stroke-width="2"><rect x="50" y="300" width="40" height="40" transform="rotate(45 70 320)"/><rect x="350" y="320" width="35" height="35" transform="rotate(30 367.5 337.5)"/></g></svg>') repeat;
    animation: categoryShapes 40s linear infinite;
    pointer-events: none;
}

@keyframes categoryShapes {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-200px, -100px) rotate(360deg); }
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Impact', Arial Black, sans-serif;
    letter-spacing: 3px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    animation: neonGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.category-item {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(255, 0, 255, 0.1) 50%, 
        rgba(0, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 200% 200%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 4s linear infinite;
    transition: opacity 0.3s ease;
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 80px rgba(255, 0, 255, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 255, 0.8);
}

.category-item h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    font-family: 'Impact', Arial Black, sans-serif;
    letter-spacing: 1px;
}

.category-item p {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Event Info Section - Neon Gaming Style */
.event-info {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #0f1419 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><g fill="none" stroke="rgba(255,255,0,0.3)" stroke-width="3"><path d="M200,100 L300,80 L320,180 L220,200 Z"/><path d="M500,120 L600,100 L620,200 L520,220 Z"/><path d="M150,350 L250,330 L270,430 L170,450 Z"/><path d="M600,370 L700,350 L720,450 L620,470 Z"/></g></svg>') repeat;
    animation: eventShapes 35s ease-in-out infinite;
    pointer-events: none;
}

@keyframes eventShapes {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-50px, -30px) rotate(180deg); opacity: 0.9; }
}

.event-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ffff00, #ff00ff, #00ffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Impact', Arial Black, sans-serif;
    letter-spacing: 3px;
    font-weight: 900;
    animation: neonGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.8);
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.15) 0%, 
        rgba(255, 0, 255, 0.15) 50%, 
        rgba(255, 255, 0, 0.15) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 80px rgba(255, 0, 255, 0.4);
    border-color: rgba(255, 0, 255, 0.8);
}

.info-card h3 {
    color: #ffff00;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    font-family: 'Impact', Arial Black, sans-serif;
    letter-spacing: 1px;
}

.highlight {
    color: #00ffff;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    font-family: 'Impact', Arial Black, sans-serif;
}

.info-card p {
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.info-section {
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 0, 255, 0.2) 0%, 
        rgba(0, 255, 255, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 0, 255, 0.6);
    padding: 2rem;
    border-radius: 25px;
    position: relative;
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.5),
        inset 0 0 40px rgba(0, 255, 255, 0.2);
    z-index: 2;
}

.info-section::before {
    content: 'STAY CONNECTED!';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffff00, #ff00ff);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.8);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.info-section p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Footer - Neon Gaming Style */
footer {
    background: linear-gradient(135deg, #0f1419 0%, #1e3c72 50%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid #00ffff;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><g fill="none" stroke="rgba(0,255,255,0.2)" stroke-width="2"><polygon points="50,30 100,50 80,100 30,80"/><polygon points="250,40 300,60 280,110 230,90"/><polygon points="150,120 200,140 180,190 130,170"/></g></svg>') repeat;
    animation: footerShapes 30s linear infinite;
    pointer-events: none;
}

@keyframes footerShapes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(255, 0, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border: 2px solid #00ffff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #ffff00;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    font-family: 'Impact', Arial Black, sans-serif;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: 2px solid #ffff00;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 900;
    font-family: 'Impact', Arial Black, sans-serif;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(45deg, #ff00ff, #ffff00);
    color: #000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    border-color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #ff00ff;
    color: #00ffff;
    font-weight: bold;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Responsive Design - Neon Gaming Style */
@media (max-width: 768px) {
    .fort-smith-header {
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.8),
            1px 1px 0px #000,
            2px 2px 0px rgba(0, 255, 255, 0.6);
    }
    
    .card-con-header {
        font-size: 1rem;
        margin-left: 0.5rem;
        text-shadow: 
            0 0 10px rgba(255, 0, 255, 0.8),
            1px 1px 0px #000,
            2px 2px 0px rgba(255, 0, 255, 0.6);
    }
    
    .fort-smith-header::after,
    .card-con-header::after {
        top: 2px;
        left: 2px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    main {
        margin-top: 0;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-banner-image {
        object-position: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories h2,
    .event-info h2 {
        font-size: 2.5rem;
    }
    
    .info-section {
        padding: 1.5rem;
    }
    
    .info-section::before {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .info-section p {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}