/* Purchase Modal */
.purchase-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.purchase-modal.show {
  opacity: 1;
  visibility: visible;
}

.purchase-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.purchase-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  background-color: #0e0e0e;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.purchase-modal.show .purchase-modal-content {
  transform: translateY(0);
}

.purchase-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #ffffff80;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.purchase-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.purchase-modal-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.purchase-modal-header {
  margin-bottom: 20px;
}

.purchase-modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.purchase-modal-header p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
}

.purchase-modal-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.purchase-modal-author span:last-child {
  color: var(--accent-color);
  font-weight: 500;
}

.purchase-modal-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.purchase-price-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #55eaae;
}

.purchase-price-value .robux-icon {
  width: 24px;
  height: 24px;
}

.purchase-modal-features {
  margin-bottom: 20px;
}

.purchase-modal-features h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.purchase-modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.purchase-modal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.purchase-modal-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.purchase-modal-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
}

.purchase-modal-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.purchase-modal-btn.primary {
  background-color: var(--accent-color);
  color: var(--accent-text);
}

.purchase-modal-btn.primary:hover {
  background-color: var(--accent-hover);
}

.purchase-modal-btn.secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.purchase-modal-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.purchase-modal-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .purchase-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .purchase-modal-body {
    padding: 20px;
  }

  .purchase-modal-header h2 {
    font-size: 20px;
  }

  .purchase-modal-footer {
    padding: 16px 20px;
    flex-direction: column;
  }

  .purchase-modal-btn {
    width: 100%;
  }
}

/* Event Modal Styles */
.event-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.event-modal.show {
  opacity: 1;
  visibility: visible;
}

.event-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.event-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background-color: #0e0e0e;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-modal.show .event-modal-content {
  transform: translateY(0);
}

.event-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #ffffff80;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.event-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.event-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #ffffff08;
}

.event-modal-type {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.event-modal-type.jam {
  background-color: rgba(85, 97, 234, 0.15);
  color: #5561ea;
}

.event-modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.event-modal-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ffffff60;
}

.event-modal-body {
  padding: 24px 30px;
  max-height: 60vh;
  overflow-y: auto;
}

.event-modal-section {
  margin-bottom: 24px;
}

.event-modal-section:last-child {
  margin-bottom: 0;
}

.event-modal-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.event-modal-section p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffffa0;
}

.event-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-modal-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffffa0;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.event-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.event-modal-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
}

.event-modal-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.event-modal-btn.primary {
  background-color: var(--accent-color);
  color: var(--accent-text);
}

.event-modal-btn.primary:hover {
  background-color: var(--accent-hover);
}

.event-modal-btn.secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.event-modal-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 480px) {
  .event-modal-content {
    width: 95%;
  }
  
  .event-modal-header, .event-modal-body, .event-modal-footer {
    padding: 20px;
  }
}

/* Dev card styles loaded via separate link tag in HTML */

/* Accent Color Variables */
:root {
  --accent-color: #5561ea;
  --accent-hover: #4450d0;
  --accent-15: rgba(85, 97, 234, 0.15);
  --accent-text: #ffffff;
}

/* Meyer Reset CSS */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* Globals CSS */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

/* Styleguide CSS */
:root {
  --blue-shadow: 0px 0px 50px 0px rgba(85, 98, 234, 0.44);
}

/* Main Styles */
body, html {
  margin: 0;
  padding: 0;
  background-color: #090909;
  color: #ffffff;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

.home-view .rectangle {
  display: none;
}

.home-view .logo {
  display: flex;
  width: 250px;
  height: 100px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid #ffffff14;
  transition: width 0.3s ease, gap 0.3s ease;
}

.home-view .img {
  position: relative;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.home-view .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: normal;
}

.home-view .ellipse {
  position: absolute;
  top: 90px;
  left: 240px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.3s ease;
}

.home-view .frame {
  position: absolute;
  top: 64px;
  left: 227px;
  width: 16px;
  height: 16px;
}

.home-view .vector {
  position: absolute;
  width: 25.00%;
  height: 50.00%;
  top: 20.83%;
  left: 8.33%;
}

.home-view .vector-2 {
  position: absolute;
  width: 58.33%;
  height: 0;
  top: 45.83%;
  left: 8.33%;
}

.home-view .vector-3 {
  position: absolute;
  width: 0;
  height: 58.33%;
  top: 16.67%;
  left: 83.33%;
}

.home-view .profile-button {
  display: flex;
  width: 250px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #090909;
  box-sizing: border-box;
  transition: width 0.3s ease, padding 0.3s ease;
}

.home-view .profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 9px;
  position: relative;
}

.home-view .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.home-view .user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.home-view .div {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
  color: #ffffff;
  line-height: normal;
}

.home-view .text-wrapper-2 {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff80;
  font-size: 11px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home-view .theme-switcher {
  position: relative;
  width: 16px;
  height: 16px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.home-view .vector-4 {
  position: absolute;
  width: 75.00%;
  height: 75.00%;
  top: 8.33%;
  left: 8.33%;
}

.home-view .profile-settings {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.home-view .profile-settings:hover {
  opacity: 0.7;
}

.home-view .items {
  position: absolute;
  top: 140px;
  left: 15px;
  width: 220px;
  height: 322px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: width 0.3s ease, left 0.3s ease;
}

.home-view .sidebar .nav-item,
.home-view .items .nav-item {
  width: 220px;
  display: flex;
  height: 33px;
  position: relative;
  align-items: center;
  gap: 10px;
  padding: 6px 9px;
  text-decoration: none;
  color: inherit;
}

.home-view .img-2 {
  position: relative;
  width: 17px;
  height: 17px;
  object-fit: cover;
}

.home-view .text-wrapper-3 {
  position: relative;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .highlight {
  position: absolute;
  top: 0;
  right: -15px;
  width: 2px;
  height: 33px;
  background-color: #ffffff;
  opacity: 1;
  transition: opacity 0.2s ease 0.3s;
}

.home-view .sidebar .nav-item-2,
.home-view .items .nav-item-2 {
  display: flex;
  width: 220px;
  height: 33px;
  position: relative;
  align-items: center;
  gap: 10px;
  padding: 6px 9px;
  opacity: 0.2;
  text-decoration: none;
  color: inherit;
}

.home-view .sidebar .nav-item-3,
.home-view .items .nav-item-3 {
  margin-left: 1px;
  width: 219px;
  opacity: 0.2;
  display: flex;
  height: 33px;
  position: relative;
  align-items: center;
  gap: 10px;
  padding: 6px 9px;
  text-decoration: none;
  color: inherit;
}

.home-view .divider {
  display: none;
}

.home-view .divider-2 {
  display: none;
}

.home-view .divider-3 {
  display: none;
}

.home-view .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 250px;
  right: 0;
  height: 100px;
  padding: 0 30px;
  background-color: #090909;
  border-bottom: 1px solid #ffffff14;
  z-index: 50;
  transition: left 0.3s ease;
}

body.sidebar-collapsed .home-view .heading {
  left: 70px;
}

.home-view .welcome-allan {
  position: relative;
  width: fit-content;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 28px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .span {
  font-weight: 500;
}

.home-view .text-wrapper-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.home-view .text-wrapper-6 {
  position: relative;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #525252;
  font-size: 13px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .stats-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1100px;
  gap: 20px;
  position: relative;
  top: auto;
  left: auto;
  box-sizing: border-box;
}

.home-view .div-2 {
  position: relative;
  height: 111px;
  background-color: #0e0e0e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.home-view .highlight-color {
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #5561ea;
}

.home-view .member-stat-message {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-view .text-wrapper-7 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 36px;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}

.home-view .text-wrapper-8 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #5561ea;
  font-size: 13px;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin-top: 4px;
}

.home-view .highlight-color-2 {
  background-color: #55eaae;
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 10px;
}

.home-view .job-stat-message {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-view .text-wrapper-9 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 36px;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}

.home-view .text-wrapper-10 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #55eaae;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin-top: 4px;
}

.home-view .highlight-color-3 {
  background-color: #eae055;
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 10px;
}

.home-view .member-stat-message-2 {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-view .text-wrapper-11 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .text-wrapper-12 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #eae055;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin-top: 4px;
}

.home-view .highlight-color-4 {
  background-color: #ea55bd;
  position: absolute;
  top: 101px;
  left: 0;
  width: 100%;
  height: 10px;
}

.home-view .member-stat-message-3 {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-view .text-wrapper-13 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .text-wrapper-14 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ea55bd;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin-top: 4px;
}

.home-view .text-wrapper-15 {
  position: relative;
  top: auto;
  left: auto;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .text-wrapper-16 {
  position: relative;
  top: auto;
  left: auto;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .cards {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  position: relative;
  top: auto;
  left: auto;
  flex-wrap: wrap;
}

.home-view .commission-card {
  position: relative;
  flex: 1 1 310px;
  height: 272px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%), url(https://images.unsplash.com/photo-1542751371-adc38448a05e?w=600);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
}

.home-view .title {
  position: absolute;
  bottom: 80px;
  left: 17px;
  right: 17px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.3;
}

.home-view .p {
  position: absolute;
  bottom: 45px;
  left: 17px;
  right: 17px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffffb3;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.4;
}

.home-view .desc {
  position: absolute;
  bottom: 15px;
  left: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-view .text-wrapper-17 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--accent-color);
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .ellipse-2 {
  margin-top: 9px;
  width: 2px;
  height: 2px;
  background-color: #d9d9d9;
  border-radius: 1px;
}

.home-view .text-wrapper-18 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff80;
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .group {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background-color: rgba(14, 14, 14, 0.9);
  border-radius: 8px;
}

.home-view .rectangle-2 {
  display: none;
}


.home-view .text-wrapper-19 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #55eaae;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .commission-card-2 {
  position: relative;
  width: 310px;
  height: 272px;
  background-image: url(./img/rectangle-31-3.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home-view .text-wrapper-20 {
  width: 79px;
  height: 20px;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: var(--accent-color);
  font-size: 13px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .group-2 {
  position: absolute;
  top: 5px;
  left: 233px;
  width: 74px;
  height: 35px;
}

.home-view .rectangle-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 35px;
  background-color: #0e0e0e;
  border-radius: 5px;
}

.home-view .robux-2 {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  aspect-ratio: 1;
  object-fit: cover;
}

.home-view .text-wrapper-21 {
  position: absolute;
  top: 6px;
  left: 32px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: #55eaae;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .commission-card-3 {
  position: relative;
  width: 310px;
  height: 272px;
  background-image: url(./img/rectangle-31-2.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home-view .event {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 1100px;
  height: 172px;
  background-color: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 24px;
}

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.home-view .text-wrapper-22 {
  position: absolute;
  top: 9px;
  left: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.60px;
  line-height: normal;
  background: linear-gradient(90deg, #ff3b3b 0%, #ff3b3b 45%, #ff6b6b 50%, #ff3b3b 55%, #ff3b3b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s ease-in-out infinite;
}

.home-view .text-wrapper-23 {
  position: absolute;
  top: 27px;
  left: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 32px;
  letter-spacing: 1.60px;
  line-height: normal;
}

.home-view .text-wrapper-24 {
  position: absolute;
  top: 75px;
  left: 15px;
  width: 441px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffffa0;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
}

.home-view .ellipse-3 {
  position: absolute;
  top: -52px;
  right: -52px;
  width: 274px;
  height: 274px;
  background-color: #3a3a3a;
  border-radius: 50%;
  box-shadow: -15px 0 0 0 #1a1a1a;
  overflow: hidden;
}

.home-view .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-view .event:hover .image {
  transform: scale(1.05);
}

.home-view .view-more-btn {
  position: absolute;
  bottom: 20px;
  left: 105px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--accent-color);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-view .view-more-btn svg {
  transition: transform 0.3s ease;
}

.home-view .event:hover .view-more-btn {
  opacity: 1;
  transform: translateX(0);
}

.home-view .view-more-btn:hover svg {
  transform: translateX(4px);
}

.home-view .join-btn {
  position: absolute;
  bottom: 12px;
  left: 15px;
  padding: 8px 24px;
  background-color: var(--accent-color);
  color: var(--accent-text);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-view .join-btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

.home-view .whats-this-link {
  position: absolute;
  bottom: 12px;
  left: 100px;
  color: var(--accent-color);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 8px 0;
}

.home-view .event:hover .whats-this-link {
  opacity: 1;
  transform: translateY(0);
}

.home-view .whats-this-link:hover {
  opacity: 0.8;
}

.home-view .rectangle-4 {
  display: none;
}

.home-view .text-wrapper-25 {
  position: absolute;
  top: 125px;
  left: 1242px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .frame-2 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  top: auto;
  left: auto;
  flex-wrap: wrap;
}

.home-view .group-3 {
  position: relative;
  width: 134px;
  height: 125px;
}

.home-view .rectangle-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 125px;
  background-color: #131313;
}

.home-view .text-wrapper-26 {
  position: absolute;
  top: 61px;
  left: 33px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0;
  color: #ffffff;
  line-height: normal;
}

.home-view .text-wrapper-27 {
  position: absolute;
  top: 92px;
  left: 26px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 10px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .ellipse-4 {
  position: absolute;
  top: 4px;
  left: 36px;
  width: 57px;
  height: 57px;
  object-fit: cover;
}

.home-view .rectangle-6 {
  position: absolute;
  top: 111px;
  left: 53px;
  width: 23px;
  height: 1px;
  background-color: #ffffff;
}

.home-view .frame-3 {
  position: absolute;
  top: 5px;
  left: 107px;
  width: 17px;
  height: 17px;
}

.home-view .vector-7 {
  position: absolute;
  width: 16.67%;
  height: 16.67%;
  top: 8.82%;
  left: 8.82%;
}

.home-view .vector-8 {
  position: absolute;
  width: 16.67%;
  height: 16.67%;
  top: 8.82%;
  left: 67.16%;
}

.home-view .vector-9 {
  position: absolute;
  width: 16.67%;
  height: 16.67%;
  top: 67.16%;
  left: 67.16%;
}

.home-view .vector-10 {
  position: absolute;
  width: 16.67%;
  height: 16.67%;
  top: 67.16%;
  left: 8.82%;
}

.home-view .vector-11 {
  position: absolute;
  width: 41.67%;
  height: 33.33%;
  top: 29.66%;
  left: 25.49%;
}

.home-view .group-4 {
  position: relative;
  width: 134px;
  height: 125px;
  margin-right: -4.00px;
}

.home-view .frame-4 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  top: auto;
  left: auto;
  flex-wrap: wrap;
}

.home-view .frame-5 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 493px;
  height: 160px;
  background-color: #0e0e0e;
  border-radius: 5px;
  overflow: hidden;
}

.home-view .frame-6 {
  position: absolute;
  top: 14px;
  left: 59px;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
}

.home-view .vector-12 {
  position: absolute;
  width: 83.34%;
  height: 58.33%;
  top: 15.63%;
  left: 3.12%;
}

.home-view .vector-13 {
  position: absolute;
  width: 25.00%;
  height: 25.00%;
  top: 32.29%;
  left: 32.29%;
}

.home-view .frame-7 {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
}

.home-view .vector-14 {
  position: absolute;
  width: 25.00%;
  height: 38.32%;
  top: 25.50%;
  left: 61.46%;
}

.home-view .vector-15 {
  position: absolute;
  width: 58.33%;
  height: 50.00%;
  top: 19.79%;
  left: 3.12%;
}

.home-view .text-wrapper-28 {
  position: absolute;
  top: 14px;
  left: 37px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.home-view .text-wrapper-29 {
  top: 14px;
  left: 78px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  font-size: 10px;
  white-space: nowrap;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .text-wrapper-30 {
  position: absolute;
  top: 37px;
  left: 18px;
  font-family: "Poppins-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .text-wrapper-31 {
  position: absolute;
  top: 66px;
  left: 19px;
  width: 303px;
  font-family: "DM Sans-Medium", Helvetica;
  font-weight: 500;
  color: #ffffffa6;
  font-size: 11px;
  letter-spacing: 0;
  line-height: normal;
}

.home-view .image-2 {
  left: 362px;
  width: 131px;
  height: 160px;
  aspect-ratio: 1.29;
  position: absolute;
  top: 0;
  object-fit: cover;
}

.home-view .group-5 {
  position: absolute;
  top: 113px;
  left: 18px;
  width: 80px;
  height: 27px;
}

.home-view .rectangle-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 27px;
  background-color: var(--accent-color);
  border-radius: 500px;
}

.home-view .text-wrapper-32 {
  position: absolute;
  top: 3px;
  left: 19px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: #e5e7ff;
  font-size: 14px;
  letter-spacing: 0.70px;
  line-height: normal;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.home-view .frame-8 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 493px;
  height: 160px;
  background-color: #0e0e0e;
  border-radius: 5px;
  overflow: hidden;
}

.home-view .frame-9 {
  position: absolute;
  top: 14px;
  left: 61px;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
}

.home-view .text-wrapper-33 {
  top: 14px;
  left: 80px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  font-size: 10px;
  white-space: nowrap;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
  line-height: normal;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #090909;
  z-index: 100;
  box-sizing: border-box;
  transition: width 0.3s ease;
}

.sidebar.collapsed {
  width: 70px;
}

.sidebar.collapsed .logo h1,
.sidebar.collapsed .user-info,
.sidebar.collapsed .text-wrapper-3,
.sidebar.collapsed .profile-settings,
.sidebar.collapsed .divider {
  display: none;
}

.sidebar.collapsed .highlight {
  opacity: 0;
  transition: opacity 0.1s ease;
}

.sidebar.collapsed .logo {
  width: 70px;
  justify-content: center;
  padding: 0;
  gap: 0;
}

.sidebar.collapsed .logo img {
  width: 32px;
  height: 32px;
}

.sidebar.collapsed .profile-button {
  width: 70px;
  justify-content: center;
  padding: 15px 0;
  left: 0;
}

.sidebar.collapsed .profile {
  justify-content: center;
  gap: 0;
}

.sidebar.collapsed .avatar {
  width: 36px;
  height: 36px;
}

.sidebar.collapsed .items {
  width: 70px;
  left: 0;
  align-items: center;
}

.sidebar.collapsed .nav-item,
.sidebar.collapsed .nav-item-2,
.sidebar.collapsed .nav-item-3 {
  width: auto;
  justify-content: center;
  padding: 12px 0;
}

.sidebar.collapsed .nav-item .img-2,
.sidebar.collapsed .nav-item-2 .img-2,
.sidebar.collapsed .nav-item-3 .img-2 {
  margin: 0;
}

.sidebar.collapsed .ellipse {
  left: 60px;
}

.sidebar.collapsed .ellipse svg {
  transform: rotate(180deg);
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff14;
}

.main-content {
  margin-left: 250px;
  padding: 30px;
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100vh;
  box-sizing: border-box;
  transition: margin-left 0.3s ease;
}

body.sidebar-collapsed .main-content {
  margin-left: 70px;
}

.release-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  padding: 16px 20px;
  margin-top: 6px;
  margin-bottom: 0;
  background: linear-gradient(120deg, rgba(85, 97, 234, 0.2), rgba(12, 12, 12, 0.95) 55%, #0a0a0a 100%);
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(85, 97, 234, 0.08);
  overflow: hidden;
}

.release-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(85, 97, 234, 0.28), transparent 34%), radial-gradient(circle at 80% 0%, rgba(234, 85, 189, 0.1), transparent 34%);
  pointer-events: none;
}

.release-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--accent-15);
  color: var(--accent-color);
  border: 1px solid #ffffff1f;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.release-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}

.release-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.release-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #d4d4d4;
  line-height: 1.6;
  max-width: 760px;
}

.release-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--accent-color);
  color: var(--accent-text);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #ffffff1a;
  box-shadow: 0 10px 30px rgba(85, 97, 234, 0.35);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 1;
}

.release-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(85, 97, 234, 0.4);
}

.quick-hires {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 592px;
  background-color: #0c0c0c;
  border-radius: 5px;
}



/* Blogs & Tutorials Section */
.blogs-tutorials-section {
  width: 100%;
  max-width: 1100px;
  margin-top: 40px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.blog-card {
  background-color: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff14;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.read-btn,
.start-tutorial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-top: auto;
}

.read-btn {
  background-color: var(--accent-15);
  color: var(--accent-color);
}

.read-btn:hover {
  background-color: var(--accent-color);
  color: var(--accent-text);
}

.start-tutorial-btn {
  background-color: var(--accent-color);
  color: var(--accent-text);
}

.start-tutorial-btn:hover {
  background-color: var(--accent-hover);
}

.blog-card-content {
  padding: 16px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  position: relative;
}

.blog-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.blog-views,
.blog-likes,
.blog-videos,
.blog-duration {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-views svg,
.blog-likes svg,
.blog-videos svg {
  opacity: 0.7;
  flex-shrink: 0;
  vertical-align: middle;
}

.stat-divider {
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.blog-videos svg,
.blog-views svg,
.blog-likes svg {
  opacity: 0.7;
  flex-shrink: 0;
  vertical-align: middle;
}

.blog-author {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-color);
}

/* Recent Devs Section */
.playful-text {
  font-family: 'Caveat', cursive;
  font-size: 1.3em;
}

.recent-devs-section {
  width: 100%;
  max-width: 1100px;
  margin-top: 30px;
}

.devs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .devs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 700px) {
  .devs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Dev card styles imported from dev-card.css */

.dev-card-slider {
  width: 100%;
  margin-top: 16px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.dev-slider-container {
  display: flex;
  transition: transform 0.3s ease;
}

.dev-slider-image {
  min-width: 100%;
  height: 80px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.dev-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.dev-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff30;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dev-slider-dot.active {
  background-color: var(--accent-color);
}

/* Inline styles from HTML */
.home-view {
  width: 100%;
  min-height: 100vh;
}

.mobile-avatar,
.mobile-logo,
.mobile-logo-link {
  display: none;
}

/* Mobile Profile Menu */
.mobile-profile-wrapper {
  display: none;
  position: relative;
}

.mobile-profile-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}

.mobile-profile-btn img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #0e0e0e;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  min-width: 160px;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mobile-profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.mobile-profile-dropdown a:hover {
  background-color: #ffffff0a;
}

.mobile-profile-dropdown a svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
    padding-top: 62px;
    padding-bottom: 80px;
  }

  body.sidebar-collapsed .main-content {
    margin-left: 0;
  }

  .release-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
    margin-top: 2px;
  }

  .release-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .release-subtitle {
    max-width: 100%;
  }

  .home-view .heading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: auto;
    height: 54px;
    margin: 0;
    padding: 8px 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff14;
    box-sizing: border-box;
    background-color: #090909;
    z-index: 999;
  }

  .home-view .heading .welcome-allan,
  .home-view .heading .text-wrapper-6 {
    display: none !important;
  }

  .home-view .heading .mobile-logo-link {
    display: block;
    flex-shrink: 0;
  }

  .home-view .heading .mobile-logo {
    display: block !important;
    width: 36px;
    height: 36px;
    object-fit: contain;
  }

  /* Hide standalone avatar, show profile wrapper */
  .home-view .heading > .mobile-avatar {
    display: none !important;
  }

  .mobile-profile-wrapper {
    display: block;
    margin-left: auto;
  }

  /* Hide sidebar toggle on mobile */
  .home-view .ellipse,
  .ellipse {
    display: none !important;
  }

  .event {
    height: auto;
    min-height: 160px;
    padding: 12px 15px 60px 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .event::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-image: url('https://pbs.twimg.com/media/F1M89S8WYAEI77K.jpg');
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 0;
  }

  .event > * {
    position: relative;
    z-index: 1;
  }

  .home-view .text-wrapper-22 {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 4px;
    animation-duration: 8s;
  }

  .home-view .text-wrapper-23 {
    position: relative;
    top: auto;
    left: auto;
    font-size: 24px;
    margin-bottom: 8px;
  }

  .home-view .text-wrapper-24 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    font-size: 13px;
  }

  .home-view .join-btn {
    left: 15px;
    right: auto;
    bottom: 15px;
    width: auto;
    padding: 8px 16px;
    font-size: 12px;
  }

  .home-view .whats-this-link {
    left: 90px;
    bottom: 15px;
    font-size: 12px;
    opacity: 1;
    transform: translateY(0);
  }

  .home-view .view-more-btn {
    display: flex;
    position: absolute;
    left: 85px;
    right: auto;
    bottom: 15px;
    opacity: 1;
    transform: none;
    padding: 6px 12px;
    font-size: 11px;
    color: #ffffff80;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
  }

  .home-view .view-more-btn svg {
    transition: none;
  }

  .home-view .view-more-btn:hover svg {
    transform: none;
  }

  .home-view .ellipse-3 {
    display: none;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .blog-card {
    height: auto;
  }

  .blog-card-image {
    height: 80px;
  }

  .blog-card-content {
    padding: 12px;
  }

  .blog-card-content h3 {
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 0;
  }

  .blog-card-content p {
    font-size: 11px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 0;
  }

  .blog-author {
    margin-top: 4px;
  }

  .blog-stats {
    font-size: 10px;
  }

  .read-btn,
  .start-tutorial-btn {
    padding: 8px 12px;
    font-size: 11px;
    margin-top: auto;
  }

  .developers-grid,
  .devs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Let dev-card.css handle the mobile card styles */

  .home-view .stats-group {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .home-view .div-2 {
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-view .text-wrapper-7,
  .home-view .text-wrapper-9,
  .home-view .text-wrapper-11,
  .home-view .text-wrapper-13 {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .home-view .text-wrapper-8,
  .home-view .text-wrapper-10,
  .home-view .text-wrapper-12,
  .home-view .text-wrapper-14 {
    font-size: 12px;
    margin-top: 0;
  }

  .home-view .highlight-color,
  .home-view .highlight-color-2,
  .home-view .highlight-color-3,
  .home-view .highlight-color-4 {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 4px;
  }

  .home-view .member-stat-message,
  .home-view .job-stat-message,
  .home-view .member-stat-message-2,
  .home-view .member-stat-message-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    height: 100%;
    gap: 0;
    padding-bottom: 4px;
  }


}

/* Heading content toggle */
.heading-content {
  display: block;
}

.heading-content.hidden {
  display: none;
}

/* Settings Page Styles */
.settings-section {
  display: none;
  width: 100%;
  max-width: 700px;
}

.settings-section.active {
  display: block;
}

.settings-header {
  margin-bottom: 24px;
}

.settings-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.settings-header p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff80;
  margin: 0;
}

.settings-card {
  background-color: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
}

.settings-tabs {
  display: flex;
  border-bottom: 1px solid #ffffff14;
  padding: 0 20px;
}

.settings-tab {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff80;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.settings-tab:hover {
  color: #ffffff;
}

.settings-tab.active {
  color: #ffffff;
}

.settings-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 2px 2px 0 0;
}

.settings-panel {
  display: none;
  padding: 24px;
}

.settings-panel.active {
  display: block;
}

.setting-group {
  margin-bottom: 24px;
}

.setting-group:last-child {
  margin-bottom: 0;
}

.setting-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.setting-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #ffffff60;
  margin-bottom: 12px;
}

.setting-input {
  width: 100%;
  background-color: #141414;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
}

.setting-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.setting-input::placeholder {
  color: #ffffff40;
}

textarea.setting-input {
  min-height: 100px;
  resize: vertical;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.setting-row-info {
  flex: 1;
}

.setting-row-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.setting-row-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #ffffff60;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff14;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--accent-color);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/* Color Picker */
.color-options {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.active {
  border-color: #ffffff;
}

.color-option.blue { background-color: #5561ea; }
.color-option.green { background-color: #55eaae; }
.color-option.yellow { background-color: #eae055; }
.color-option.pink { background-color: #ea55bd; }

/* Select Dropdown */
.setting-select {
  width: 100%;
  background-color: #141414;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ffffff60' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.setting-select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.setting-select option {
  background-color: #141414;
  color: #ffffff;
}

/* Save Button */
.settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #ffffff14;
}

.btn-save {
  background-color: var(--accent-color);
  color: var(--accent-text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-save:hover {
  background-color: var(--accent-hover);
}


/* Profile Dropdown */
.profile-button {
  position: relative;
}

.profile-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #0e0e0e;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.profile-dropdown-item:hover {
  background-color: #ffffff0a;
}

.profile-dropdown-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.sidebar.collapsed .profile-dropdown {
  left: 10px;
  right: auto;
  width: 180px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #0e0e0e;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(120%);
  opacity: 0;
}

.toast-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-color);
}

.toast.success .toast-icon {
  color: #55eaae;
}

.toast.error .toast-icon {
  color: #ea5555;
}

.toast-message {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 768px) {
  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 90px;
  }
}

/* Home content wrapper for page switching */
.home-content {
  display: block;
}

.home-content.hidden {
  display: none;
}

/* Mobile settings adjustments */
@media (max-width: 768px) {
  .settings-section {
    max-width: 100%;
  }

  .settings-tabs {
    padding: 0 12px;
    overflow-x: auto;
  }

  .settings-tab {
    padding: 12px 16px;
    white-space: nowrap;
  }

  .settings-panel {
    padding: 16px;
  }

  .setting-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .toggle-switch {
    margin-left: 0;
  }

  .settings-actions {
    flex-direction: column;
    padding: 16px;
  }

  .btn-save {
    width: 100%;
    text-align: center;
  }
}

/* Login Button Styles */
.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-text);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px var(--accent-15);
  position: relative;
  overflow: hidden;
}

/* Cartoon shine effect */
.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 70%,
    transparent 100%
  );
  animation: cartoon-shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cartoon-shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 150%;
  }
}

/* Hover effect disabled - button remains static */
.login-button:hover {
  /* No hover changes */
}

.login-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar.collapsed .login-button {
  width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.sidebar.collapsed .login-button svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sidebar.collapsed .login-button span {
  opacity: 0;
  width: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}

/* Mobile Login Button */
/* Mobile login button styles are in shared.css */

/* Small mobile - single column dev cards and stat cards */
@media (max-width: 480px) {
  .developers-grid,
  .devs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-view .stats-group {
    grid-template-columns: 1fr;
  }
}
