/* ============================================
   HONEST AL'S TACTICAL TOYOTA EMPORIUM
   "Best Viewed in Netscape Navigator 4.0"
   ============================================ */

/* CSS RESET - But make it janky */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONTS - The classics */
@font-face {
    font-family: 'Comic Sans MS';
    src: local('Comic Sans MS');
}

/* BASE STYLES */
body {
    font-family: 'Comic Sans MS', 'Arial', cursive;
    background-color: #000080;
    background-image: url('../assets/images/camo-tile.svg');
    background-repeat: repeat;
    color: #ffff00;
    overflow-x: hidden;
    cursor: crosshair;
    min-height: 100vh;
}

/* BLINK ANIMATION */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.5s infinite;
}

/* RAINBOW TEXT */
@keyframes rainbow {
    0% { color: #ff0000; }
    15% { color: #ff8000; }
    30% { color: #ffff00; }
    45% { color: #00ff00; }
    60% { color: #0080ff; }
    75% { color: #8000ff; }
    90% { color: #ff0080; }
    100% { color: #ff0000; }
}

.rainbow-text {
    animation: rainbow 2s infinite;
    font-weight: bold;
    text-shadow: 2px 2px #000;
}

/* SPIN ANIMATION */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============ POPUP STYLES ============ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIRUS POPUP */
.virus-window {
    background: #c0c0c0;
    border: 3px outset #ffffff;
    box-shadow: 5px 5px 0 #000;
    width: 400px;
    font-family: 'MS Sans Serif', 'Tahoma', sans-serif;
}

.virus-titlebar {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
}

.virus-close {
    background: #c0c0c0;
    border: 2px outset #fff;
    font-size: 10px;
    padding: 0 4px;
    cursor: pointer;
    font-weight: bold;
}

.virus-close:active {
    border-style: inset;
}

.virus-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 14px;
}

.virus-icon {
    width: 48px;
    height: 48px;
}

.virus-name {
    color: #ff0000;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    background: #fff;
    padding: 5px 10px;
    border: 1px inset #808080;
}

.virus-btn {
    background: #c0c0c0;
    border: 2px outset #fff;
    padding: 5px 30px;
    font-family: 'MS Sans Serif', sans-serif;
    cursor: pointer;
    font-size: 12px;
}

.virus-btn:active {
    border-style: inset;
}

/* AD POPUP */
.ad-window {
    background: linear-gradient(135deg, #ff6600, #ffcc00, #ff6600);
    border: 5px solid #ff0000;
    box-shadow: 0 0 30px #ff0000;
    width: 450px;
    text-align: center;
}

.ad-titlebar {
    background: #ff0000;
    color: #ffff00;
    padding: 5px;
    font-size: 12px;
    position: relative;
}

.ad-titlebar marquee {
    font-weight: bold;
}

.ad-close {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffff00;
    font-size: 10px;
    cursor: pointer;
    opacity: 0.3;
}

.ad-content {
    padding: 20px;
    color: #000;
}

.ad-content h2 {
    font-size: 24px;
    color: #ff0000;
    text-shadow: 2px 2px #ffff00;
}

.ad-content h1 {
    font-size: 32px;
    margin: 10px 0;
}

.ad-btn {
    background: linear-gradient(to bottom, #00ff00, #008800);
    border: 3px outset #00ff00;
    color: #fff;
    font-size: 18px;
    padding: 10px 30px;
    margin: 10px;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px #000;
}

.ad-btn-small {
    background: transparent;
    border: none;
    color: #666;
    font-size: 10px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.fine-print {
    font-size: 10px;
    color: #666;
    margin-top: 10px;
}

/* MUSIC CONTROL */
.music-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ff0000;
    border: 3px outset #ff6666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9000;
    transition: all 0.1s;
}

.music-btn:hover {
    transform: translate(20px, -20px);
}

.music-btn.moved {
    bottom: 200px;
    right: 100px;
}

/* CURSOR TRAIL */
#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #000080 0%, #004400 50%, #880000 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/stars-bg.svg');
    opacity: 0.3;
}

.corner-gif {
    position: absolute;
    width: 100px;
    z-index: 10;
}

.corner-gif.top-left {
    top: 10px;
    left: 10px;
}

.corner-gif.top-right {
    top: 10px;
    right: 10px;
    transform: scaleX(-1);
}

.under-construction {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #ffff00;
    color: #000;
    padding: 10px 20px;
    transform: rotate(-2deg);
    border: 3px dashed #ff0000;
}

.under-construction img {
    width: 40px;
}

.under-construction span {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 5;
}

.starburst {
    width: 100px;
    animation: spin 3s linear infinite;
}

.main-logo {
    text-align: center;
}

.main-logo h1 {
    font-size: 72px;
    margin-bottom: 10px;
}

.main-logo h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 24px;
    color: #ffff00;
    background: #ff0000;
    padding: 10px 20px;
    display: inline-block;
}

.hero-marquee {
    width: 100%;
    background: #ff0000;
    color: #ffff00;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0;
    border-top: 3px solid #ffff00;
    border-bottom: 3px solid #ffff00;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.cta-btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    background: linear-gradient(to bottom, #ffff00 0%, #ff8800 100%);
    border: 4px outset #ffff00;
    text-shadow: none;
    transition: all 0.1s;
}

.cta-btn:hover {
    border-style: inset;
    transform: translate(2px, 2px);
}

.counter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    background: #000;
    padding: 10px 20px;
    border: 2px inset #808080;
}

.counter-container img {
    width: 30px;
}

.visitor-count {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #00ff00;
    padding: 5px 10px;
    font-size: 20px;
}

/* ============ DIVIDERS ============ */
.rainbow-divider {
    height: 20px;
    background: linear-gradient(to right,
        #ff0000, #ff8000, #ffff00, #00ff00,
        #0080ff, #8000ff, #ff0080, #ff0000);
}

.fire-divider {
    display: flex;
    justify-content: center;
    background: #000;
    padding: 10px 0;
}

.fire-divider img {
    width: 60px;
    height: 40px;
}

.stars-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #000080;
    padding: 20px;
    border-top: 3px ridge #c0c0c0;
    border-bottom: 3px ridge #c0c0c0;
}

.stars-divider img {
    width: 30px;
    animation: spin 2s linear infinite;
}

.divider-text {
    font-size: 14px;
    color: #c0c0c0;
}

.explosion-divider {
    display: flex;
    justify-content: space-around;
    background: #000;
    padding: 10px;
}

.explosion-divider img {
    width: 80px;
}

/* ============ WHY SECTION ============ */
.why-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #004400 0%, #002200 100%);
    text-align: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #006600 0%, #003300 100%);
    border: 3px outset #00ff00;
    padding: 30px 20px;
    text-align: center;
}

.benefit-card img {
    width: 50px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #00ff00;
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #ccffcc;
    font-size: 16px;
    line-height: 1.5;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #000;
    border: 5px ridge #ffff00;
}

.testimonials h3 {
    color: #ffff00;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-carousel {
    min-height: 150px;
}

.testimonial {
    padding: 20px;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    border: 2px inset #666;
    margin: 10px 0;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.testimonial-author {
    color: #ffff00;
    font-size: 14px;
}

.testimonial-location {
    color: #888;
    font-size: 12px;
}

/* ============ INVENTORY SECTION ============ */
.inventory-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #330000 0%, #660000 50%, #330000 100%);
    position: relative;
}

.new-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.new-badge img {
    width: 80px;
}

.inventory-subtitle {
    text-align: center;
    color: #ffcccc;
    font-size: 16px;
    margin-bottom: 20px;
}

.urgency-banner {
    text-align: center;
    background: #ff0000;
    color: #fff;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    border: 3px dashed #ffff00;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* THE LEGENDARY VEHICLE */
.vehicle-card.legendary {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    border: 5px solid #ffd700;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    animation: legendary-glow 2s ease-in-out infinite alternate;
}

@keyframes legendary-glow {
    0% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 215, 0, 0.5); }
}

.vehicle-card.legendary .vehicle-image {
    height: 350px;
    border-color: #ffd700;
}

.vehicle-card.legendary .vehicle-header {
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    color: #000;
    text-align: center;
    padding: 20px;
}

.vehicle-card.legendary .vehicle-nickname {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.vehicle-card.legendary .vehicle-price {
    color: #ffd700;
    font-size: 28px;
    text-align: center;
    text-shadow: 0 0 10px #ffd700;
}

.vehicle-card.legendary .vehicle-stat {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #ffd700;
}

.vehicle-card.legendary .vehicle-features li::before {
    content: "★";
    color: #ffd700;
}

.vehicle-card.legendary .vehicle-conflicts {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
}

.vehicle-card.legendary .vehicle-damage {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
    color: #ffcccc;
}

.vehicle-card.legendary .vehicle-salesman-note {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    color: #ccffcc;
    font-size: 14px;
}

.vehicle-card.legendary .vehicle-cta {
    background: linear-gradient(to bottom, #ffd700 0%, #b8860b 100%);
    color: #000;
    font-size: 24px;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vehicle-card {
    background: #fff;
    color: #000;
    border: 3px solid #000;
    overflow: hidden;
    transition: transform 0.2s;
    font-family: 'Arial', sans-serif;
}

.vehicle-card:hover {
    transform: scale(1.02);
}

/* Different card styles for jank effect */
.vehicle-card.style-craigslist {
    background: #f5f5f5;
    font-family: 'Times New Roman', serif;
}

.vehicle-card.style-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    border: 3px solid #gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.vehicle-card.style-glitch {
    background: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
}

.vehicle-card.style-word {
    background: #fff;
    border: 1px solid #000;
    font-family: 'Times New Roman', serif;
}

.vehicle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #000;
}

.vehicle-card.style-premium .vehicle-image {
    border-color: gold;
}

.vehicle-header {
    padding: 15px;
    background: #ff0000;
    color: #fff;
}

.vehicle-card.style-craigslist .vehicle-header {
    background: #660099;
}

.vehicle-card.style-premium .vehicle-header {
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    color: #000;
}

.vehicle-card.style-glitch .vehicle-header {
    background: #0f0;
    color: #000;
}

.vehicle-nickname {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.vehicle-year-model {
    font-size: 14px;
    opacity: 0.9;
}

.vehicle-body {
    padding: 15px;
}

.vehicle-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 10px;
}

.vehicle-card.style-premium .vehicle-price {
    color: #ffd700;
}

.vehicle-card.style-glitch .vehicle-price {
    color: #0f0;
}

.vehicle-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
}

.vehicle-stat {
    background: #f0f0f0;
    padding: 5px;
    text-align: center;
}

.vehicle-card.style-premium .vehicle-stat {
    background: rgba(255, 215, 0, 0.2);
}

.vehicle-card.style-glitch .vehicle-stat {
    background: #001100;
    border: 1px solid #0f0;
}

.vehicle-features {
    margin-bottom: 15px;
}

.vehicle-features h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.vehicle-card.style-glitch .vehicle-features h4 {
    color: #0f0;
}

.vehicle-features ul {
    list-style: none;
    font-size: 12px;
}

.vehicle-features li {
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.vehicle-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00aa00;
}

.vehicle-card.style-glitch .vehicle-features li::before {
    content: ">";
    color: #0f0;
}

.vehicle-conflicts {
    background: #fff3cd;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    border-left: 4px solid #ffc107;
}

.vehicle-card.style-glitch .vehicle-conflicts {
    background: #001100;
    border-color: #0f0;
}

.vehicle-damage {
    background: #f8d7da;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    border-left: 4px solid #dc3545;
}

.vehicle-card.style-glitch .vehicle-damage {
    background: #110000;
    border-color: #f00;
}

.vehicle-salesman-note {
    background: #d4edda;
    padding: 10px;
    font-size: 12px;
    font-style: italic;
    border-left: 4px solid #28a745;
    margin-bottom: 15px;
}

.vehicle-card.style-glitch .vehicle-salesman-note {
    background: #001100;
    border-color: #0f0;
}

.vehicle-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, #ff6600 0%, #cc3300 100%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-top: 3px solid #ff9900;
}

.vehicle-cta:hover {
    background: linear-gradient(to bottom, #ff9900 0%, #ff6600 100%);
}

.vehicle-cta.runaway {
    transition: all 0.1s;
}

.inventory-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #000;
    border: 3px double #ffff00;
}

.inventory-cta p {
    color: #fff;
    margin-bottom: 10px;
}

.inventory-cta .bigger {
    font-size: 36px;
    color: #ffff00;
    font-weight: bold;
}

.inventory-cta .smaller {
    font-size: 14px;
    color: #888;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #4a0080 0%, #1a0030 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.al-photo-container {
    text-align: center;
}

.al-photo {
    width: 100%;
    max-width: 280px;
    border: 5px solid #ffff00;
    box-shadow: 10px 10px 0 #000;
}

.photo-caption {
    color: #ffff00;
    font-size: 14px;
    margin-top: 15px;
}

.photo-caption-small {
    color: #aa88ff;
    font-size: 10px;
    margin-top: 5px;
}

.al-bio {
    background: linear-gradient(135deg, #f5f5dc 0%, #ddd 100%);
    padding: 30px;
    color: #000;
    font-family: 'Times New Roman', serif;
    border: 3px ridge #c0c0c0;
}

.al-bio .greeting {
    font-size: 28px;
    color: #4a0080;
    margin-bottom: 15px;
}

.al-bio p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.al-bio .fine-print {
    font-size: 10px;
    color: #666;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
}

.awards {
    background: linear-gradient(to bottom, #ffd700, #ffec8b);
    padding: 20px;
    margin-top: 20px;
    border: 3px outset #ffd700;
}

.awards h4 {
    text-align: center;
    margin-bottom: 15px;
    color: #000;
}

.awards ul {
    list-style: none;
}

.awards li {
    padding: 5px 0;
    font-size: 14px;
}

/* ============ FINANCING SECTION ============ */
.financing-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #001a00 0%, #003300 50%, #001a00 100%);
    text-align: center;
}

.financing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.financing-card {
    background: #fff;
    color: #000;
    padding: 30px 20px;
    border: 3px solid #000;
    position: relative;
}

.financing-card.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 50%, #ffd700 100%);
    border: 5px solid #ff0000;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: #fff;
    padding: 5px 20px;
    font-weight: bold;
    font-size: 12px;
}

.financing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.financing-card .rate {
    font-size: 48px;
    font-weight: bold;
    color: #00aa00;
    margin-bottom: 20px;
}

.financing-card.featured .rate {
    color: #ff0000;
}

.financing-card ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.financing-card li {
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 14px;
}

.financing-card .fine-print {
    font-size: 10px;
    color: #666;
}

.financing-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    background: #330000;
    padding: 20px;
    border: 2px solid #ff0000;
    color: #ffcccc;
    font-size: 12px;
    line-height: 1.6;
}

.inline-gif {
    width: 20px;
    vertical-align: middle;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #008080 0%, #004040 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 2px ridge #00ffff;
}

.contact-item h3 {
    color: #00ffff;
    margin-bottom: 10px;
}

.contact-item p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.contact-form-container {
    background: linear-gradient(135deg, #f0f0f0 0%, #c0c0c0 100%);
    padding: 30px;
    border: 3px outset #fff;
    color: #000;
    font-family: 'MS Sans Serif', 'Tahoma', sans-serif;
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #000080;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 2px inset #808080;
    font-family: 'MS Sans Serif', 'Tahoma', sans-serif;
    font-size: 14px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 10px;
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, #00aa00 0%, #006600 100%);
    color: #fff;
    border: 3px outset #00ff00;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'MS Sans Serif', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(to bottom, #00cc00 0%, #00aa00 100%);
}

.submit-btn:active {
    border-style: inset;
}

.form-disclaimer {
    font-size: 10px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* ============ FOOTER ============ */
.footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 5px ridge #808080;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-badges img {
    height: 40px;
}

.footer-links {
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    text-decoration: underline;
}

.footer-counter {
    margin-bottom: 20px;
}

.footer-counter p {
    color: #fff;
    font-size: 14px;
}

.guestbook-link a {
    color: #ffff00;
}

.copyright {
    color: #888;
    font-size: 12px;
    margin-bottom: 20px;
}

.copyright .fine-print {
    font-size: 10px;
    color: #555;
    max-width: 600px;
    margin: 10px auto 0;
}

.webring {
    background: #333;
    padding: 15px;
    display: inline-block;
    border: 2px ridge #666;
}

.webring p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.webring a {
    color: #00ff00;
    text-decoration: none;
    margin: 0 10px;
    font-family: 'Courier New', monospace;
}

/* ============ CHAT WIDGET ============ */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 8000;
    font-family: 'MS Sans Serif', 'Tahoma', sans-serif;
}

.chat-header {
    background: linear-gradient(to right, #000080, #1084d0);
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px outset #fff;
}

.chat-icon {
    font-size: 20px;
}

.chat-title {
    flex: 1;
    font-weight: bold;
    font-size: 12px;
}

.chat-status {
    font-size: 10px;
    color: #00ff00;
}

.chat-body {
    background: #c0c0c0;
    border: 2px inset #808080;
    border-top: none;
}

.chat-messages {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #000;
}

.chat-message p {
    background: #e0e0e0;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    max-width: 200px;
    color: #000;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-message.user p {
    background: #000080;
    color: #fff;
}

.chat-input-container {
    display: flex;
    padding: 10px;
    gap: 10px;
    background: #c0c0c0;
}

.chat-input-container input {
    flex: 1;
    padding: 5px;
    border: 2px inset #808080;
    font-size: 12px;
}

.chat-input-container button {
    padding: 5px 15px;
    background: #c0c0c0;
    border: 2px outset #fff;
    cursor: pointer;
    font-size: 12px;
}

.chat-input-container button:active {
    border-style: inset;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
    .main-logo h1 {
        font-size: 36px;
    }

    .main-logo h2 {
        font-size: 18px;
    }

    .starburst {
        width: 50px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .inventory-grid {
        grid-template-columns: 1fr;
    }
}
