@import "tailwindcss";

/* ==========================================================================
   FC88 FOOTBALL UPCYCLING STUDIO & DIGITAL MARKETPLACE
   COMPREHENSIVE PURE VANILLA CSS DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Accent Colors */
  --fc-green: #00FF7F;
  --fc-green-glow: rgba(0, 255, 127, 0.35);
  --fc-green-dark: #00B359;
  --fc-mint: #E1F8EC;
  --fc-dark-teal: #084030;
  
  /* Neutral Dark Surfaces */
  --fc-bg-dark: #121415;
  --fc-bg-card: #15181a;
  --fc-bg-card-hover: #1c2022;
  --fc-bg-surface-elevated: #1e2225;
  --fc-bg-darker: #0e1011;
  --fc-bg-black-translucent: rgba(0, 0, 0, 0.75);
  
  /* Text & Border Colors */
  --fc-text-main: #f8fafc;
  --fc-text-secondary: #cbd5e1;
  --fc-text-muted: #94a3b8;
  --fc-border-subtle: rgba(255, 255, 255, 0.12);
  --fc-border-active: rgba(0, 255, 127, 0.5);
  
  /* Typography Stacks */
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-caveat: 'Caveat', cursive;
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-neon: 0 0 25px rgba(0, 255, 127, 0.35);
  --shadow-neon-lg: 0 0 50px rgba(0, 255, 127, 0.45);
}

/* --------------------------------------------------------------------------
   2. BASE RESETS & GLOBAL STYLES
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--fc-bg-dark);
  color: var(--fc-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--fc-green);
  color: #000000;
}
   .font-bebas { font-family: 'Bebas Neue', sans-serif; }
        .font-caveat { font-family: 'Caveat', cursive; }
        .font-mono { font-family: 'JetBrains Mono', monospace; }
/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
.font-bebas {
  font-family: var(--font-bebas);
}

.font-caveat {
  font-family: var(--font-caveat);
}

.font-marker {
  font-family: 'Permanent Marker', cursive;
}

.font-syne {
  font-family: 'Syne', sans-serif;
}

.font-mono {
  font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   4. BACKGROUND TEXTURES & PITCH PATTERNS
   -------------------------------------------------------------------------- */
.bg-grunge-pattern {
  background-color: var(--fc-bg-dark);
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(0, 255, 127, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 127, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, rgba(18, 20, 21, 0.95) 0%, rgba(10, 11, 12, 0.98) 100%);
  background-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%;
}

.pitch-lines-overlay {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* --------------------------------------------------------------------------
   5. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@keyframes subtle-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}



.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

.animate-marquee-fast {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.animate-marquee-reverse {
  display: flex;
  width: max-content;
  animation: marquee-reverse 35s linear infinite;
}

.animate-float {
  animation: subtle-float 4s ease-in-out infinite;
}

.animate-fadeIn {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   6. HEADER & TOP MARQUEE COMPONENTS
   -------------------------------------------------------------------------- */
.top-marquee-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--fc-bg-darker);
  border-bottom: 1px solid var(--fc-border-subtle);
  color: #ffffff;
  overflow: hidden;
  user-select: none;
}

.top-marquee-badge {
  flex-shrink: 0;
  background-color: var(--fc-bg-darker);
  border-right: 1px solid var(--fc-border-subtle);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--fc-green);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bebas);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

/* --------------------------------------------------------------------------
   7. BUTTONS & INTERACTIVE CONTROLS
   -------------------------------------------------------------------------- */
.fc-btn-primary {
  background-color: var(--fc-green);
  color: #000000;
  font-family: var(--font-bebas);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 255, 127, 0.25);
}

.fc-btn-primary:hover {
  background-color: var(--fc-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.fc-btn-secondary {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--fc-text-main);
  border: 1px solid var(--fc-border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-bebas);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.fc-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--fc-border-active);
  color: #ffffff;
}

.fc-btn-dark-pill {
  background-color: #000000;
  color: var(--fc-green);
  border: 1px solid rgba(0, 255, 127, 0.3);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-bebas);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fc-btn-dark-pill:hover {
  border-color: var(--fc-green);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.25);
}

/* --------------------------------------------------------------------------
   8. 3-TAB MARKETPLACE SWITCHER
   -------------------------------------------------------------------------- */
.main-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--fc-border-subtle);
  overflow-x: auto;
  max-width: 100%;
}

.main-tab-item {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-bebas);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  background: transparent;
  color: var(--fc-text-secondary);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-tab-item.active {
  background-color: var(--fc-green);
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 255, 127, 0.3);
}

.main-tab-item:not(.active):hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   9. PRODUCT & COURSE CARDS
   -------------------------------------------------------------------------- */
.fc-card {
  background-color: var(--fc-bg-card);
  border: 1px solid var(--fc-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-card:hover {
  background-color: var(--fc-bg-card-hover);
  border-color: var(--fc-border-active);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.fc-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  overflow: hidden;
}

.fc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fc-card:hover .fc-card-media img {
  transform: scale(1.05);
}

.fc-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   10. STENCIL NUMBERS & BADGES
   -------------------------------------------------------------------------- */
.stencil-digit {
  position: relative;
  display: inline-block;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.stencil-cutout {
  background: linear-gradient(135deg, #DEFFE7 0%, #B4F5C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(0, 255, 127, 0.2);
}

.status-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background-color: var(--fc-dark-teal);
  color: var(--fc-green);
  border: 1px solid rgba(0, 255, 127, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. AUTHENTICATION & LOGIN PAGE
   -------------------------------------------------------------------------- */
.auth-panel-container {
  background-color: var(--fc-bg-card);
  border: 2px solid var(--fc-border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.auth-panel-container:hover {
  border-color: var(--fc-border-active);
}

.btn-auth-google {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  color: #0f172a;
  font-family: var(--font-bebas);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-auth-google:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-auth-github {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  background-color: #0e1113;
  color: var(--fc-green);
  font-family: var(--font-bebas);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 900;
  border: 2px solid rgba(0, 255, 127, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-auth-github:hover {
  background-color: #000000;
  border-color: var(--fc-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

/* --------------------------------------------------------------------------
   12. MODALS & OVERLAYS
   -------------------------------------------------------------------------- */
.fc-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fc-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fc-modal-dialog {
  background-color: var(--fc-bg-card);
  border: 2px solid var(--fc-border-active);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

/* --------------------------------------------------------------------------
   13. CUSTOM SCROLLBAR
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: var(--fc-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #242b2e;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fc-green);
}



.logo {
  font-weight: 800;
  font-size: 31px;
  margin-bottom: -6px;
}

.logo img {
  width: 145px;
  text-align: center;
}

.btn span {
  font-family: Montserrat;
  font-size: 13px;
  letter-spacing: -0.3px;
}

.Active1{
  background: springgreen;
  color: black;
}





/*Image upload ==============*/

 * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #090b0c;
            color: #e8edf0;
            font-family: Arial, Helvetica, sans-serif;
        }

        .thumbnail-section {
            width: 100%;
            max-width: 1100px;
            margin: auto;
        }

        /* Header */
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .section-title-icon {
            color: #00ff88;
            font-size: 20px;
        }

        .slot-badge {
            background: rgba(0, 255, 136, 0.12);
            border: 1px solid rgba(0, 255, 136, 0.4);
            color: #00ff88;
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 700;
        }

        .section-description {
            color: #8d9db2;
            font-size: 13px;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
        }

        /* Main Layout */
        .thumbnail-wrapper {
            display: grid;
            grid-template-columns: 325px 1fr;
            gap: 18px;
        }

        /* Upload Box */
        .upload-box {
            min-height: 375px;
            border: 2px dashed #3a3e42;
            border-radius: 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            cursor: pointer;
            transition: 0.25s;
            background: #101314;
        }

        .upload-box:hover,
        .upload-box.dragover {
            border-color: #00ff88;
            background: rgba(0, 255, 136, 0.03);
        }

        .upload-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 136, 0.4);
            background: rgba(0, 255, 136, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ff88;
            font-size: 34px;
            margin-bottom: 20px;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.08);
        }

        .upload-title {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .upload-subtitle {
            color: #c0cad5;
            text-align: center;
            font-size: 14px;
            line-height: 1.6;
        }

        .upload-subtitle strong {
            color: #00ff88;
        }

        .upload-info {
            color: #71849c;
            font-size: 12px;
            margin-top: 8px;
            text-align: center;
            line-height: 1.6;
        }

        .browse-button {
            width: 100%;
            margin-top: 30px;
            padding: 13px 20px;
            border-radius: 30px;
            border: none;
            background: #00f884;
            color: #00170d;
            font-weight: 800;
            font-size: 13px;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: 0.2s;
        }

        .browse-button:hover {
            background: #18ff98;
            transform: translateY(-1px);
        }

        #thumbnailInput {
            display: none;
        }

        /* Preview Area */
        .preview-box {
            border: 1px solid #303438;
            border-radius: 22px;
            background: #101314;
            padding: 20px;
            min-height: 375px;
        }

        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #303438;
            padding-bottom: 14px;
            margin-bottom: 22px;
        }

        .preview-heading {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .preview-heading-icon {
            color: #00ff88;
            font-size: 18px;
        }

        .preview-title {
            font-size: 14px;
            font-weight: 800;
            line-height: 1.4;
        }

        .active-cover {
            color: #00ff88;
            font-size: 12px;
            font-weight: 800;
        }

        .active-cover span {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            margin-right: 7px;
            box-shadow: 0 0 10px #00ff88;
        }

        /* Thumbnail List */
        .thumbnail-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .thumbnail-item {
            position: relative;
            background: #080a0b;
            border: 1px solid #282c30;
            border-radius: 20px;
            padding: 8px;
            cursor: pointer;
            transition: 0.25s;
        }

        .thumbnail-item:hover {
            border-color: #555b60;
            transform: translateY(-2px);
        }

        .thumbnail-item.active {
            border: 2px solid #00ff88;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.12);
        }

        .thumbnail-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 14px;
            background: #171a1c;
        }

        .thumbnail-image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        /* Active Badge */
        .active-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #00f884;
            color: #00170d;
            padding: 6px 9px;
            border-radius: 5px;
            font-size: 10px;
            font-weight: 900;
            display: none;
            z-index: 2;
        }

        .thumbnail-item.active .active-badge {
            display: block;
        }

        .number-badge {
            position: absolute;
            right: 6px;
            bottom: 6px;
            background: rgba(0, 0, 0, 0.85);
            color: white;
            font-size: 10px;
            padding: 4px 6px;
            border-radius: 4px;
        }

        .thumbnail-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 4px 3px;
        }

        .thumbnail-name {
            font-size: 13px;
            color: #d7dce1;
            font-weight: 600;
        }

        .delete-button {
            width: 28px;
            height: 28px;
            border: 1px solid rgba(255, 50, 70, 0.25);
            background: rgba(255, 50, 70, 0.08);
            color: #ff5365;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: 0.2s;
        }

        .delete-button:hover {
            background: #ff3d52;
            color: white;
        }

        /* Empty State */
        .empty-state {
            grid-column: 1 / -1;
            min-height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #697786;
            text-align: center;
            font-size: 13px;
        }

        /* Footer */
        .preview-footer {
            border-top: 1px solid #303438;
            margin-top: 20px;
            padding-top: 14px;
            color: #c0c7ce;
            font-size: 12px;
        }

        .preview-footer strong {
            color: #ffd84d;
            font-size: 16px;
            margin-right: 5px;
        }

        /* Responsive */
        @media (max-width: 850px) {
            .thumbnail-wrapper {
                grid-template-columns: 1fr;
            }

            .thumbnail-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            body {
                padding: 15px;
            }

            .thumbnail-list {
                grid-template-columns: 1fr;
            }

            .preview-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        } 