:root {
  --primary-blue: #00aaff;
  --primary-green: #44cc00;
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.6);
  --text-color: #333;
  --heading-color: #005588;
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
    linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #6dd5ed 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/glass-pass.png');
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* Bubbles */
.bubble {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
  box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: -1;
  animation: float 20s infinite ease-in-out;
}

.bubble-1 { width: 100px; height: 100px; top: 10%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 150px; height: 150px; top: 60%; left: 80%; animation-delay: -5s; }
.bubble-3 { width: 80px; height: 80px; top: 40%; left: 50%; animation-delay: -10s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-40px) translateX(-10px); }
  75% { transform: translateY(-20px) translateX(10px); }
}

/* Container */
#container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Header & Nav */
#header {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 20px 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--heading-color);
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-nav-link {
  margin-left: 20px;
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-nav-link:hover {
  color: var(--primary-blue);
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

/* Main Content Area */
#main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.archive-year-wrap {
  margin-bottom: 15px;
}

article {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

article:hover {
  transform: translateY(-5px);
}

.archive-article-title, .post-title {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.archive-article-date, .post-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.post-content {
  line-height: 1.6;
  font-size: 17px;
  margin-bottom: 40px;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.post-content img,
.post-content video,
.post-content iframe,
.post-content embed,
.post-content object,
.post-content table,
.post-content pre {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.post-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}

.post-content pre {
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.post-content a {
  color: var(--primary-blue);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease;
  padding: 0 2px;
}

.post-content a:hover {
  color: #0088cc;
  border-bottom: 1px solid var(--primary-blue);
  background: rgba(0, 170, 255, 0.05);
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.3);
}

/* Post Footer & Tags */
.post-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed var(--glass-border);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.post-tag {
  background: var(--glass-bg);
  backdrop-filter: blur(4px);
  border: 1px solid var(--glass-border);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.post-tag:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

/* Post Navigation Buttons */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.post-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.post-nav-link:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.post-nav-link.next {
  text-align: right;
  justify-content: flex-end;
}

.nav-arrow {
  font-size: 24px;
  color: var(--primary-blue);
  font-weight: bold;
}

.prev .nav-arrow { margin-right: 15px; }
.next .nav-arrow { margin-left: 15px; }

.nav-info {
  display: flex;
  flex-direction: column;
}

.nav-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Glossy Button Style */(for pagination etc) */
#page-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.page-number, .extend {
  padding: 8px 16px;
  background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
  border: 1px solid #ccc;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.page-number:hover, .extend:hover {
  background: linear-gradient(to bottom, #f0f0f0 0%, #d0d0d0 100%);
}

.page-number.current {
  background: linear-gradient(to bottom, #00ccff 0%, #0088cc 100%);
  color: white;
  border-color: #0077aa;
}

/* Timeline Archive Page */
.timeline-container {
  position: relative;
  padding: 20px 0;
  margin-left: 20px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-left: 1px dashed rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.timeline-year-item {
  position: relative;
  margin: 40px 0 20px;
  z-index: 1;
}

.timeline-year-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timeline-year-dot {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.5), inset 0 2px 4px rgba(0,0,0,0.2);
}

.timeline-year-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--heading-color);
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-year-count {
  font-size: 14px;
  color: #666;
  background: var(--glass-bg);
  padding: 2px 10px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.timeline-post-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 0;
  margin-left: 2px;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-post-item:hover {
  transform: translateX(10px);
}

.timeline-post-dot {
  width: 8px;
  height: 8px;
  background: #aaa;
  border-radius: 50%;
  margin-right: 25px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.timeline-post-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
}

.timeline-post-date {
  font-size: 14px;
  color: #777;
  min-width: 50px;
}

.timeline-post-title {
  font-size: 17px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  flex: 1;
}

.timeline-post-title:hover {
  color: var(--primary-blue);
}

.sticky-tag {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: #fff;
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 4px;
  margin-right: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-post-tags {
  display: flex;
  gap: 8px;
  opacity: 0.6;
}

.tag-item {
  font-size: 12px;
  color: #666;
}

/* About Page */
.about-content {
  text-align: center;
  padding: 20px 0;
}

.about-avatar-wrap {
  display: inline-block;
  margin-bottom: 30px;
}

.about-avatar {
  width: 120px;
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid var(--glass-border);
  box-shadow: var(--shadow);
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  padding: 5px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-content .about-avatar {
  width: 120px;
  max-width: 120px;
}

.about-avatar:hover {
  transform: rotate(360deg) scale(1.1);
}

.about-section {
  margin-bottom: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.about-section h2, .about-section h3 {
  color: var(--heading-color);
  margin-top: 0;
}

.about-hobbies {
  list-style: none;
  padding: 0;
}

.about-hobbies li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.about-hobbies li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 0;
}

.about-content .social-link {
  padding: 16px 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(230, 245, 255, 0.85));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 50%;
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(0, 170, 255, 0.2),
    0 4px 15px rgba(58, 123, 213, 0.15),
    inset 0 2px 10px rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
}

.about-content .social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.5), 
    transparent);
  transition: left 0.5s ease;
}

.about-content .social-link:hover::before {
  left: 100%;
}

.about-content .social-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  min-width: 28px;
}

.about-content .social-link:hover {
  background: linear-gradient(145deg, #00d2ff, #3a7bd5);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(0, 210, 255, 0.4),
    0 6px 20px rgba(58, 123, 213, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.6);
}

/* Footer */
#footer {
  margin-top: 50px;
  text-align: center;
  padding: 20px;
  color: #555;
  font-size: 14px;
}

/* Anime Page */
.anime-container {
  padding: 20px 0;
}

.anime-header h1 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 5px;
}

.anime-header p {
  color: #666;
  margin-bottom: 30px;
}

.anime-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
}

.stat-icon {
  font-size: 24px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.stat-total .stat-icon { background: rgba(0, 170, 255, 0.1); }
.stat-watching .stat-icon { background: rgba(68, 204, 0, 0.1); }
.stat-completed .stat-icon { background: rgba(153, 51, 255, 0.1); }
.stat-score .stat-icon { background: rgba(255, 153, 0, 0.1); }

.stat-value {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: var(--heading-color);
}

.stat-label {
  font-size: 13px;
  color: #666;
}

.list-title {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 24px;
}

.anime-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 25px;
}

.anime-card {
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

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

.anime-cover-wrap {
  position: relative;
  aspect-ratio: 2/3;
}

.anime-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.anime-status-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  color: white;
  font-weight: bold;
  backdrop-filter: blur(4px);
}

.status-3 { background: rgba(68, 204, 0, 0.8); } /* 在看 */
.status-2 { background: rgba(0, 170, 255, 0.8); } /* 看过 */
.status-1 { background: rgba(153, 51, 255, 0.8); } /* 想看 */

.anime-score-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffcc00;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
}

.anime-progress-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 10px 8px 5px;
  font-size: 11px;
}

.anime-info {
  padding: 10px;
}

.anime-title {
  font-size: 14px;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--heading-color);
}

.anime-desc {
  font-size: 12px;
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin: 0;
}

.anime-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.anime-tag {
  font-size: 10px;
  padding: 2px 8px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.15) 0%, rgba(58, 123, 213, 0.15) 100%);
  color: var(--primary-blue);
  border-radius: 12px;
  border: 1px solid rgba(0, 170, 255, 0.25);
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.2s ease;
}

.anime-tag:hover {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.25) 0%, rgba(58, 123, 213, 0.25) 100%);
  transform: translateY(-1px);
}

.loading-status, .error-status {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  color: #666;
}

#footer a {
  color: var(--primary-blue);
  text-decoration: none;
}

/* Projects Page */
.projects-container {
  padding: 20px 0;
}

.projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-header h1 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 10px;
}

.projects-header p {
  color: #666;
  font-size: 18px;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.project-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.3);
}

.project-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(58, 123, 213, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.project-icon svg {
  width: 28px;
  height: 28px;
}

.project-content {
  flex: 1;
  min-width: 0;
}

.project-title {
  color: var(--heading-color);
  font-size: 20px;
  margin: 0 0 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #888;
  font-size: 13px;
}

.project-meta-item svg {
  width: 16px;
  height: 16px;
}

.lang-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  
  #container {
    padding: 15px;
    width: 100%;
    overflow-x: hidden;
  }

  #header {
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
    border-radius: 16px;
  }

  #logo {
    font-size: 20px;
  }

  .main-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav-link {
    margin-left: 0;
    padding: 8px 14px;
    background: linear-gradient(145deg, rgba(0, 170, 255, 0.1), rgba(58, 123, 213, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(0, 170, 255, 0.2);
    font-size: 13px;
  }

  article {
    padding: 20px;
  }

  .archive-article-title, .post-title {
    font-size: 22px;
  }

  .post-content {
    font-size: 16px;
    line-height: 1.7;
  }

  .post-nav {
    flex-direction: column;
    gap: 15px;
  }

  .post-nav-link {
    padding: 12px 16px;
  }

  .post-nav-link.prev,
  .post-nav-link.next {
    justify-content: flex-start;
    text-align: left;
  }

  .post-nav-link.next {
    flex-direction: row-reverse;
  }

  .post-nav-link.next .nav-arrow {
    margin-left: 0;
    margin-right: 15px;
  }

  .nav-title {
    max-width: 100%;
  }

  .timeline-container {
    margin-left: 10px;
  }

  .timeline-year-title {
    font-size: 24px;
  }

  .timeline-post-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-section {
    padding: 20px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .social-link {
    padding: 12px 22px;
    font-size: 14px;
    gap: 10px;
  }

  .social-link svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .anime-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .stat-card {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .bubble-1 { width: 60px; height: 60px; }
  .bubble-2 { width: 80px; height: 80px; }
  .bubble-3 { width: 50px; height: 50px; }

  #header {
    padding: 10px 14px;
    gap: 10px;
  }

  #logo {
    font-size: 18px;
  }

  .main-nav {
    gap: 6px;
  }

  .main-nav-link {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 18px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 25px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .about-section {
    padding: 15px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .social-links {
    gap: 6px;
  }

  .social-link {
    padding: 8px 10px;
    font-size: 10px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }

  article {
    padding: 15px;
    border-radius: 15px;
  }

  .archive-article-title, .post-title {
    font-size: 20px;
  }

  .post-content {
    font-size: 15px;
  }

  .post-tag {
    font-size: 12px;
    padding: 3px 10px;
  }

  .post-nav-link {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .nav-label {
    font-size: 11px;
  }

  .nav-title {
    font-size: 14px;
  }

  .timeline-year-title {
    font-size: 22px;
  }

  .timeline-post-title {
    font-size: 15px;
  }

  .about-avatar {
    width: 120px;
    max-width: 120px;
    height: 120px;
  }

  .anime-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .anime-tag {
    font-size: 9px;
    padding: 1px 6px;
  }

  .projects-header h1 {
    font-size: 28px;
  }

  .projects-header p {
    font-size: 16px;
  }

  .projects-list {
    grid-template-columns: 1fr;
  }

  .project-card {
    padding: 20px;
    gap: 15px;
  }

  .project-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .project-icon svg {
    width: 22px;
    height: 22px;
  }

  .project-title {
    font-size: 18px;
  }

  .project-desc {
    font-size: 13px;
  }

  .project-meta {
    gap: 10px;
  }

  .project-meta-item {
    font-size: 12px;
  }
}

/* Sidebar Layout */
.main-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.content-wrapper {
  flex: 1;
  min-width: 0;
}

#sidebar {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* User Profile Card */
.user-profile {
  text-align: center;
}

.user-avatar-frame {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(58, 123, 213, 0.2));
  border-radius: 50%;
  padding: 8px;
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 8px 25px rgba(31, 38, 135, 0.2);
}

.user-avatar-frame::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #00aaff, #3a7bd5, #6dd5ed, #00aaff);
  border-radius: 50%;
  z-index: -1;
  animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-name {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--heading-color);
  font-weight: 700;
}

.user-bio {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.user-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(58, 123, 213, 0.15));
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 12px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.3), rgba(58, 123, 213, 0.3));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* Photo Frame */
.photo-frame-card {
  padding: 15px;
}

.photo-frame {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  padding: 12px;
  border-radius: 16px;
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 8px 25px rgba(31, 38, 135, 0.15);
  position: relative;
}

.photo-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid rgba(0, 170, 255, 0.3);
  border-radius: 12px;
  pointer-events: none;
}

.photo-inner {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.photo-inner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Sidebar Title */
.sidebar-title {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 170, 255, 0.2);
}

/* Stats Card */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 10px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(58, 123, 213, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(0, 170, 255, 0.2);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud-item {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(58, 123, 213, 0.15));
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 20px;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag-cloud-item:hover {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.3), rgba(58, 123, 213, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.2);
}

/* Container Adjustment for Sidebar */
#container {
  max-width: 1280px;
}

/* Responsive for Sidebar */
@media (max-width: 1024px) {
  .main-wrapper {
    flex-direction: column;
  }
  
  #sidebar {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  #container {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .main-wrapper {
    gap: 20px;
  }
  
  .sidebar-card {
    padding: 20px;
  }
  
  .user-avatar-frame {
    width: 120px;
    height: 120px;
  }
  
  .user-name {
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sidebar-card {
    padding: 18px;
  }
  
  .user-avatar-frame {
    width: 100px;
    height: 100px;
  }
  
  .avatar-placeholder {
    font-size: 36px;
  }
  
  .stats-grid {
    gap: 10px;
  }
  
  .stat-item {
    padding: 12px 8px;
  }
  
  .tags-cloud {
    gap: 8px;
  }
  
  .tag-cloud-item {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* =========================================
   Frutiger Aero Music Player
   ========================================= */

.music-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.cd-player {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.cd-player:focus-visible {
  outline: 2px solid rgba(0, 210, 255, 0.8);
  outline-offset: 4px;
}

.player-window {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.98), 
    rgba(230, 245, 255, 0.92), 
    rgba(200, 235, 255, 0.88));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 4px solid transparent;
  background-clip: padding-box;
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 170, 255, 0.35),
    0 8px 25px rgba(58, 123, 213, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(0, 170, 255, 0.1),
    0 0 100px rgba(109, 213, 237, 0.25);
  overflow: hidden;
  width: 340px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.player-window::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, 
    #00d2ff, 
    #3a7bd5, 
    #6dd5ed, 
    #00d2ff, 
    #3a7bd5);
  border-radius: 26px;
  z-index: -1;
  background-size: 300% 300%;
  animation: gradient-border 8s ease infinite;
}

@keyframes gradient-border {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.player-header {
  background: linear-gradient(180deg, 
    rgba(0, 210, 255, 0.2), 
    rgba(58, 123, 213, 0.1),
    rgba(255, 255, 255, 0.05));
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid rgba(0, 170, 255, 0.25);
  position: relative;
}

.player-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 210, 255, 0.6), 
    rgba(58, 123, 213, 0.6), 
    transparent);
}

.window-title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 170, 255, 0.2);
}

.window-controls {
  display: flex;
  gap: 10px;
}

.window-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.window-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.window-btn.minimize {
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  box-shadow: 
    0 2px 8px rgba(255, 193, 7, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.window-btn.close {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  box-shadow: 
    0 2px 8px rgba(255, 71, 87, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.window-btn:hover {
  transform: scale(1.3);
  box-shadow: 
    0 4px 12px rgba(255, 71, 87, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.player-content {
  padding: 24px 22px 22px;
}

.album-art {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.cd-spinner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #00d2ff,
    #6dd5ed,
    #3a7bd5,
    #00d2ff,
    #6dd5ed,
    #3a7bd5
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 24px rgba(0, 210, 255, 0.45),
    0 0 48px rgba(109, 213, 237, 0.25),
    inset 0 0 20px rgba(255, 255, 255, 0.35),
    inset 0 0 36px rgba(0, 170, 255, 0.2);
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.cd-spinner::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
}

.cd-spinner.playing {
  animation: spin 2.5s linear infinite, glow 2s ease-in-out infinite alternate;
}

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

@keyframes glow {
  from { box-shadow: 
    0 0 40px rgba(0, 210, 255, 0.5),
    0 0 80px rgba(109, 213, 237, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.4),
    inset 0 0 60px rgba(0, 170, 255, 0.2); }
  to { box-shadow: 
    0 0 60px rgba(0, 210, 255, 0.7),
    0 0 120px rgba(109, 213, 237, 0.5),
    inset 0 0 40px rgba(255, 255, 255, 0.6),
    inset 0 0 80px rgba(0, 170, 255, 0.3); }
}

.cd-center {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 1),
    rgba(230, 245, 255, 0.9),
    rgba(200, 235, 255, 0.7));
  box-shadow: 
    inset 0 0 20px rgba(0, 0, 0, 0.15),
    0 0 25px rgba(255, 255, 255, 0.7),
    0 0 50px rgba(0, 210, 255, 0.3);
  border: 3px solid rgba(0, 170, 255, 0.3);
}

.track-info {
  text-align: center;
  margin-bottom: 24px;
}

.track-title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  background: linear-gradient(135deg, #00d2ff, #3a7bd5, #6dd5ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
  letter-spacing: 1px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.control-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #00d2ff, #3a7bd5);
  border: 3px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 
    0 8px 25px rgba(0, 210, 255, 0.5),
    0 4px 15px rgba(58, 123, 213, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.control-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent);
  transition: left 0.5s;
}

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

.control-btn:hover {
  transform: scale(1.15);
  box-shadow: 
    0 12px 35px rgba(0, 210, 255, 0.7),
    0 6px 20px rgba(58, 123, 213, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.7);
}

.control-btn:active {
  transform: scale(0.95);
}

.control-btn svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(145deg, 
    rgba(0, 170, 255, 0.15), 
    rgba(58, 123, 213, 0.1));
  padding: 10px 16px;
  border-radius: 25px;
  border: 2px solid rgba(0, 170, 255, 0.25);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 2px 8px rgba(0, 170, 255, 0.15);
}

.volume-control svg {
  width: 22px;
  height: 22px;
  color: var(--primary-blue);
  filter: drop-shadow(0 1px 2px rgba(0, 170, 255, 0.3));
}

.volume-slider {
  width: 85px;
  height: 8px;
  -webkit-appearance: none;
  background: linear-gradient(90deg, 
    rgba(0, 170, 255, 0.3), 
    rgba(58, 123, 213, 0.4), 
    rgba(0, 170, 255, 0.3));
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.5);
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #00d2ff, #3a7bd5);
  box-shadow: 
    0 4px 12px rgba(0, 170, 255, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 
    0 6px 16px rgba(0, 170, 255, 0.7),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.progress-container {
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, 
    rgba(0, 170, 255, 0.12), 
    rgba(58, 123, 213, 0.12), 
    rgba(0, 170, 255, 0.12));
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.5);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d2ff, #6dd5ed, #3a7bd5, #00d2ff);
  background-size: 200% 100%;
  animation: progress-gradient 3s linear infinite;
  border-radius: 5px;
  width: 0%;
  box-shadow: 
    0 0 15px rgba(0, 210, 255, 0.6),
    0 0 30px rgba(109, 213, 237, 0.4);
  position: relative;
  pointer-events: none;
}

@keyframes progress-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2px;
  width: 4px;
  height: 100%;
  background: white;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

.player-minimized {
  display: flex;
  justify-content: center;
}

.minimized-cd-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.minimized-cd-btn:hover {
  transform: translateY(-4px) scale(1.1);
}

.minimized-cd {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #00d2ff,
    #6dd5ed,
    #3a7bd5,
    #00d2ff,
    #6dd5ed,
    #3a7bd5
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(0, 210, 255, 0.5),
    0 0 60px rgba(109, 213, 237, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.4),
    inset 0 0 40px rgba(0, 170, 255, 0.2);
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.minimized-cd::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
}

.minimized-cd.playing {
  animation: spin-mini 2.5s linear infinite, glow-mini 2s ease-in-out infinite alternate;
}

@keyframes spin-mini {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow-mini {
  from { box-shadow: 
    0 0 30px rgba(0, 210, 255, 0.5),
    0 0 60px rgba(109, 213, 237, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.4),
    inset 0 0 40px rgba(0, 170, 255, 0.2); }
  to { box-shadow: 
    0 0 50px rgba(0, 210, 255, 0.7),
    0 0 90px rgba(109, 213, 237, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.6),
    inset 0 0 60px rgba(0, 170, 255, 0.3); }
}

.minimized-cd-center {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 1),
    rgba(230, 245, 255, 0.9),
    rgba(200, 235, 255, 0.7));
  box-shadow: 
    inset 0 0 15px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(255, 255, 255, 0.7),
    0 0 40px rgba(0, 210, 255, 0.3);
  border: 2px solid rgba(0, 170, 255, 0.3);
}

/* Responsive for Music Player */
@media (max-width: 768px) {
  .music-player {
    bottom: 20px;
    right: 20px;
  }
  
  .player-window {
    width: 300px;
  }
  
  .cd-player {
    width: 80px;
    height: 80px;
  }
  
  .cd-spinner {
    width: 80px;
    height: 80px;
  }
  
  .control-btn {
    width: 56px;
    height: 56px;
  }
  
  .volume-slider {
    width: 70px;
  }
  
  .minimized-cd {
    width: 60px;
    height: 60px;
  }
  
  .minimized-cd-center {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .music-player {
    bottom: 15px;
    right: 15px;
  }
  
  .player-window {
    width: 280px;
  }
  
  .player-content {
    padding: 20px 18px 18px;
  }
  
  .cd-player {
    width: 80px;
    height: 80px;
  }
  
  .cd-spinner {
    width: 80px;
    height: 80px;
  }
  
  .control-btn {
    width: 52px;
    height: 52px;
  }
  
  .minimized-cd {
    width: 50px;
    height: 50px;
  }
  
  .minimized-cd-center {
    width: 18px;
    height: 18px;
  }
}
