:root {
  --primary-color: #9146FF;
  --accent-color: #00ff88;
  --dark-bg: #0a0a0a;
  --medium-bg: #151515;
  --card-bg: #1a1a1a;
  --light-text: #ffffff;
  --medium-text: #bbbbbb;
  --neon-glow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Стилизация скроллбара */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(21, 21, 21, 0.8);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
  border: 2px solid rgba(21, 21, 21, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3dcf, #00cc77);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--dark-bg);
}

body, p, a, span, div, input, button, .nav-link, .footer-link, .btn, .control-btn, .dj-role, .stat-text, .twitch-info, .about-text p, .current-track-label, .track-title, .track-time, .modal-title, .current-track-title {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, .navbar-caption, .hero-title, .section-title, .stat-number, .dj-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-color: rgba(10, 10, 10, 0.6);
  background-blend-mode: overlay;
}

.layer-1 {
  background-image: url('../assets/images/g3b4c4742e21763e27539e79051dc-h_m3zmemhk.jpg');
  opacity: 1;
}

.layer-2 {
  background-image: url('../assets/images/g82089da61e900a5c7b1c16ad51af-h_m3zlx1ya.jpg');
}

.layer-3 {
  background-image: url('../assets/images/gad53e173fca5c8a7ea2cfbdd51a5-h_m3zm60im.jpg');
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.3);
  z-index: 0;
  pointer-events: none;
}
/* Стили для информации о синхронизации */
.sync-info {
  position: fixed;
  bottom: 80px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent-color);
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-family: 'Roboto Mono', monospace;
  z-index: 10000;
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sync-info.hidden {
  display: none;
}

.sync-icon {
  color: var(--accent-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
/* HEADER */
header {
  background-color: rgba(21, 21, 21, 0.9);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(145, 70, 255, 0.3);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 50px;
  width: auto;
  margin-right: 10px;
  border-radius: 5px;
}

.navbar-caption {
  font-size: 1.3rem;
  color: var(--light-text);
  text-decoration: none;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  color: var(--accent-color);
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.icons-menu {
  display: flex;
  margin-left: 20px;
}

.iconfont-wrapper {
  margin: 0 10px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: var(--light-text);
}

.iconfont-wrapper:hover {
  transform: translateY(-3px);
  color: var(--accent-color);
}

/* HERO SECTION */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

/* RADIO PLAYER */
.radio-player {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Фрактальный визуализатор */
.fractal-visualizer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.fractal-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.visualizer-paused {
  opacity: 0.3;
  filter: grayscale(0.7) blur(1px);
}

.fractal-visualizer.visualizer-hidden .fractal-canvas {
  display: none;
}

.fractal-visualizer.visualizer-paused .fractal-canvas {
  opacity: 0.3;
  filter: grayscale(0.7) blur(1px);
}

.visualizer-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(145, 70, 255, 0.5);
  color: var(--light-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  pointer-events: auto;
}

.visualizer-toggle:hover {
  background: rgba(145, 70, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

.radio-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 15px 15px 0 0;
  z-index: 2;
}

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.compact-controls {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(145, 70, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.compact-btn {
  background: linear-gradient(135deg, var(--primary-color), #6a3093);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.compact-btn::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 ease;
}

.compact-btn:hover::before {
  left: 100%;
}

.compact-btn:hover {
  background: linear-gradient(135deg, #7c3dcf, #5a2a7a);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.compact-btn:active {
  transform: translateY(1px);
}

.compact-btn.play-pause {
  border-radius: 50px 0 0 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-btn.stop {
  border-radius: 0 50px 50px 0;
  background: linear-gradient(135deg, #ff6b6b, #c44569);
}

.compact-btn.stop:hover {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.compact-btn.playing {
  background: linear-gradient(135deg, #00b894, #00a085);
}

.compact-btn.playing:hover {
  background: linear-gradient(135deg, #00a085, #008c75);
}

.stream-selector {
  display: flex;
  gap: 10px;
  align-items: center;
}

.stream-btn {
  background: rgba(0, 0, 0, 0.5);
  color: var(--light-text);
  border: 1px solid rgba(145, 70, 255, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.stream-btn:hover {
  background: rgba(145, 70, 255, 0.2);
  border-color: var(--primary-color);
}

.stream-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.stream-btn.live-available {
  animation: pulse-red 2s infinite;
  border-color: #ff0000;
}

.volume-side-container {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  border: 1px solid rgba(145, 70, 255, 0.3);
}

.volume-side-container i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.volume-slider {
  width: 120px;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-color);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-color);
  transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px var(--accent-color);
}

.listening-time-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  border: 1px solid rgba(145, 70, 255, 0.3);
  justify-content: center;
  gap: 10px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.listening-time-container i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.listening-time {
  font-size: 1rem;
  color: var(--light-text);
  font-weight: 500;
}

/* CURRENT TRACK DISPLAY */
.current-track-display {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(145, 70, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.current-track-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.current-track-display:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(145, 70, 255, 0.3);
  border-color: var(--accent-color);
}

.current-track-art {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(145, 70, 255, 0.3);
  box-shadow: 0 0 10px rgba(145, 70, 255, 0.2);
}

.current-track-info {
  flex: 1;
}

.current-track-label-small {
  font-size: 1rem;
  color: var(--medium-text);
  margin-bottom: 8px;
}

.current-track-name {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.current-track-art-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: rgba(145, 70, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(145, 70, 255, 0.3);
}

.current-track-art-placeholder i {
  font-size: 2rem;
  color: var(--medium-text);
}

/* STATISTICS */
.stats-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.stats-icons {
  display: flex;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 15px;
  padding: 20px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(145, 70, 255, 0.4);
  gap: 40px;
  box-shadow: var(--card-shadow);
}

.stat-item-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light-text);
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--medium-text);
  text-align: center;
}

/* TWITCH SECTION */
.twitch-section {
  padding: 40px 0;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

.twitch-container {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.twitch-stream-container {
  position: relative;
  width: 70%;
  padding-bottom: 39.375%; /* 16:9 Aspect Ratio for 70% width */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  background: #000;
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: var(--card-shadow);
}

.twitch-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.twitch-chat-container {
  width: 30%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: var(--card-shadow);
}

.twitch-chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.twitch-info {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  font-size: 0.95rem;
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: var(--card-shadow);
}

.twitch-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.twitch-info i {
  margin-right: 10px;
  color: var(--accent-color);
}

/* DJS SECTION */
.djs-section {
  padding: 50px 0;
  background-color: var(--medium-bg);
  position: relative;
}

.djs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.dj-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(145, 70, 255, 0.3);
  box-shadow: var(--card-shadow);
  position: relative;
}

.dj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(145, 70, 255, 0.1) 100%);
  z-index: 0;
}

.dj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(145, 70, 255, 0.3);
}

.dj-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.dj-card:hover .dj-img {
  transform: scale(1.05);
}

.dj-info {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.dj-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.dj-role {
  color: var(--medium-text);
  font-size: 1rem;
}

/* ABOUT SECTION */
.about-section {
  padding: 50px 0;
  position: relative;
}

.about-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-text {
  width: 100%;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: var(--card-shadow);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* STATS SECTION */
.stats-section {
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.1), rgba(0, 255, 136, 0.1));
  text-align: center;
  position: relative;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--light-text);
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

/* SOCIAL SECTION */
.social-section {
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--card-bg);
  color: var(--light-text);
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(145, 70, 255, 0.3);
}

.social-link:hover {
  transform: translateY(-8px);
  background: var(--primary-color);
  box-shadow: 0 8px 20px rgba(145, 70, 255, 0.5);
  color: white;
}

/* FOOTER */
footer {
  background-color: var(--medium-bg);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(145, 70, 255, 0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.footer-link {
  color: var(--medium-text);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-color);
}

.copyright {
  color: var(--medium-text);
  font-size: 1rem;
  margin-top: 25px;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.live-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--accent-color);
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(145, 70, 255, 0.3);
  padding-bottom: 20px;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.close-modal {
  background: none;
  border: none;
  color: var(--medium-text);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--accent-color);
}

.tracks-list {
  max-height: 500px;
  overflow-y: auto;
}

.track-item {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
}

.track-item:hover {
  background: rgba(145, 70, 255, 0.1);
}

.track-item:last-child {
  border-bottom: none;
}

.track-time {
  color: var(--accent-color);
  font-size: 1rem;
  min-width: 100px;
  font-weight: 600;
}

.track-title {
  flex-grow: 1;
  font-size: 1.05rem;
}

.loading {
  text-align: center;
  padding: 30px;
  color: var(--medium-text);
  font-size: 1.1rem;
}

.no-artwork {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--medium-text);
}

.crypto-info {
  padding: 15px 0;
}

.crypto-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.crypto-item h4 {
  margin-bottom: 15px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.crypto-address {
  font-family: 'Roboto Mono', monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 5px;
  word-break: break-all;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
  .djs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
  }
  
  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(21, 21, 21, 0.95);
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(145, 70, 255, 0.2);
    border-top: none;
  }
  
  .navbar-nav.active {
    display: flex;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .icons-menu {
    margin-left: 0;
    margin-top: 15px;
    justify-content: center;
  }
  
  .twitch-container {
    flex-direction: column;
  }
  
  .twitch-stream-container {
    width: 100%;
    padding-bottom: 56.25%;
  }
  
  .twitch-chat-container {
    width: 100%;
    height: 400px;
  }
  
  .player-controls {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .compact-controls {
    order: 1;
  }
  
  .stream-selector {
    order: 2;
  }
  
  .volume-side-container {
    order: 3;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stats-icons {
    gap: 20px;
    padding: 15px 20px;
  }
  
  .stat-item-compact {
    min-width: 60px;
  }
  
  .stat-icon {
    font-size: 1.4rem;
  }
  
  .stat-value {
    font-size: 1rem;
  }
  
  .djs-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .radio-player {
    padding: 20px;
  }
  
  .compact-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .stream-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .volume-slider {
    width: 100px;
  }
  
  .current-track-display {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .stats-icons {
    gap: 15px;
    padding: 12px 15px;
  }
  
  .stat-item-compact {
    min-width: 50px;
  }
  
  .stat-icon {
    font-size: 1.2rem;
  }
  
  .stat-value {
    font-size: 0.9rem;
  }
}