/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --bg: #0b0f14;
  --panel: #0f1620;
  --text: #e9eef5;
  --muted: #9aa8b7;
  --line: #1f2b3a;
  --red: #ff2d2d;
  --shadow: 0 20px 60px #00000073;
  --r: 16px;
}

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

body {
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, #ff2d2d1f, transparent 60%), radial-gradient(1000px 600px at 110% 10%, #ff2d2d14, transparent 55%), var(--bg);
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* [project]/apps/web/src/components/Header.module.css [app-client] (css) */
.Header-module__MytmHG__header {
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  background: #0b0f14bf;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  display: flex;
  position: sticky;
  top: 0;
}

.Header-module__MytmHG__brand {
  cursor: pointer;
  align-items: center;
  gap: 10px;
  display: flex;
}

.Header-module__MytmHG__logo {
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  box-shadow: var(--shadow);
  background: #0a0f15;
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.Header-module__MytmHG__play {
  border-left: 12px solid var(--red);
  border-top: 8px solid #0000;
  border-bottom: 8px solid #0000;
  width: 0;
  height: 0;
  transform: translateX(1px);
}

.Header-module__MytmHG__wordmark {
  letter-spacing: -.02em;
  align-items: baseline;
  gap: 0;
  font-size: 18px;
  font-weight: 900;
  display: flex;
}

.Header-module__MytmHG__stream {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.Header-module__MytmHG__dot {
  background: var(--red);
  border-radius: 999px;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  display: inline-block;
}

.Header-module__MytmHG__searchBox {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.Header-module__MytmHG__searchInput {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--text);
  background: #0f162099;
  border-radius: 999px;
  outline: none;
  padding: 10px 14px 10px 38px;
}

.Header-module__MytmHG__searchInput:focus {
  border-color: #ff2d2d66;
}

.Header-module__MytmHG__searchIcon {
  color: var(--muted);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.Header-module__MytmHG__actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.Header-module__MytmHG__btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: #0f1620a6;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
}

.Header-module__MytmHG__btn:hover {
  background: #192332cc;
}

.Header-module__MytmHG__uploadBtn {
  color: var(--text);
  background: #ff2d2d1f;
  border: 1px solid #ff2d2d59;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
}

.Header-module__MytmHG__uploadBtn:hover {
  background: #ff2d2d33;
}

.Header-module__MytmHG__profileMenu {
  position: relative;
}

.Header-module__MytmHG__profileBtn {
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
}

.Header-module__MytmHG__dropdown {
  background: var(--panel);
  border: 1px solid var(--line);
  min-width: 150px;
  box-shadow: var(--shadow);
  border-radius: 12px;
  margin-top: 8px;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
}

.Header-module__MytmHG__profileMenu:hover .Header-module__MytmHG__dropdown {
  display: block;
}

.Header-module__MytmHG__dropdownItem {
  text-align: left;
  width: 100%;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  display: block;
}

.Header-module__MytmHG__dropdownItem:hover {
  background: #ffffff0d;
}

.Header-module__MytmHG__placeholder {
  width: 120px;
  height: 36px;
}

@media (max-width: 768px) {
  .Header-module__MytmHG__searchBox {
    display: none;
  }
}

/*# sourceMappingURL=apps_web_src_caa08c7e._.css.map*/