File size: 3,182 Bytes
53c9876
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://unpkg.com/leaflet@1.9.4/dist/leaflet.css');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

/* === ALL the rest of Visionary's index.css content verbatim === */

:root {
  --font-sans: 'Space Grotesk', sans-serif;
  --font-display: 'Rajdhani', sans-serif;

  /* Deep space futuristic dark mode */
  --background: 240 10% 3%;
  --foreground: 210 40% 98%;
  
  --card: 240 10% 6%;
  --card-foreground: 210 40% 98%;
  
  --popover: 240 10% 5%;
  --popover-foreground: 210 40% 98%;
  
  /* Cyber Cyan Primary */
  --primary: 190 100% 50%;
  --primary-foreground: 240 10% 4%;
  
  /* Electric Green Secondary */
  --secondary: 150 100% 50%;
  --secondary-foreground: 240 10% 4%;
  
  --muted: 240 10% 12%;
  --muted-foreground: 240 10% 60%;
  
  --accent: 190 100% 20%;
  --accent-foreground: 190 100% 90%;
  
  --destructive: 350 100% 60%;
  --destructive-foreground: 0 0% 100%;
  
  --border: 240 10% 15%;
  --input: 240 10% 12%;
  --ring: 190 100% 50%;
  
  --radius: 0.5rem;
}

@layer base {
  body {
    @apply bg-background text-foreground antialiased selection:bg-cyan-500/30 selection:text-cyan-200;
    font-family: var(--font-sans);
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    @apply tracking-wide;
  }
}

@layer utilities {
  .font-display {
    font-family: var(--font-display);
  }
  
  .font-body {
    font-family: var(--font-sans);
  }

  .neon-border {
    @apply border border-cyan-500 shadow-[0_0_15px_rgba(0,243,255,0.2),inset_0_0_10px_rgba(0,243,255,0.1)];
  }
  
  .neon-border-green {
    @apply border border-green-500 shadow-[0_0_15px_rgba(74,222,128,0.2),inset_0_0_10px_rgba(74,222,128,0.1)];
  }

  .neon-text {
    @apply text-cyan-400 drop-shadow-[0_0_8px_rgba(0,243,255,0.6)];
  }

  .glass-panel {
    @apply bg-[#0A0A0F]/80 backdrop-blur-xl border border-slate-800 shadow-2xl;
  }
}

/* === LEAFLET CUSTOMIZATIONS === */
.leaflet-container {
  background: #000000 !important;
  font-family: var(--font-sans) !important;
}

/* Hide Leaflet attribution for cleaner look */
.leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.6) !important;
  color: #4b5563 !important;
  font-size: 9px !important;
}
.leaflet-control-attribution a {
  color: #06b6d4 !important;
}

.leaflet-popup-content-wrapper {
  background: rgba(10, 10, 15, 0.95) !important;
  border: 1px solid #00f3ff !important;
  color: #fff !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.2) !important;
  border-radius: 0.5rem !important;
}

.leaflet-popup-tip {
  background: rgba(10, 10, 15, 0.95) !important;
  border: 1px solid #00f3ff !important;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2) !important;
}

.leaflet-popup-close-button {
  color: #00f3ff !important;
  text-shadow: 0 0 5px rgba(0,243,255,0.8);
}
.leaflet-popup-close-button:hover {
  color: #fff !important;
}