*{box-sizing:border-box}
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: radial-gradient(circle at center, #111827 0%, #05070a 100%);
    overflow-x: hidden;
}

.zentral-container {
    max-width: 550px;
    margin: 65px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.floating-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7000ff 0%, #4a00e0 100%);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 15px 30px rgba(112, 0, 255, 0.6);
}

#coreMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    padding: 30px;
    border: 1px solid #7000ff;
    color: #7000ff;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s;
    z-index: 999;
}

#coreMessage.show {
    opacity: 1;
}

/* ===== STATUS CREATOR ===== */
.status-creator {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.textarea-wrapper {
    position: relative;
    width: 100%;
}

#statusInput {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    font-size: 1.05rem;
    outline: none;
    resize: none;
    margin-bottom: 20px;
    min-height: 80px;
}

#charCount {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 0.75rem;
    color: #a0a0a0;
    pointer-events: none;
    font-weight: 600;
}
#charCount.limit-near {
    color: #ff4d4d;
}

#creator-text {
    opacity: 0.7;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
}

.music-pill {
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 12px;
    padding: 6px 12px;
    display: none;
    display: flex;
    align-items: center;
    max-width: 250px;
}

.pill-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.pill-content img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-right: 10px;
}

.pill-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pill-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.pill-artist {
    font-size: 0.75rem;
    color: #a0a0a0;
}

.remove-track {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    padding: 0 5px;
}

.remove-track:hover {
    color: #ff4d4d;
}

.creator-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    min-height: 50px;
}

.music-btn, .post-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.music-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    border-color: rgba(255, 255, 255, 0.1);
}
.music-btn i { color: #00d2ff; }
.music-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(0, 210, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.post-btn {
    background: linear-gradient(135deg, #7000ff 0%, #4a00e0 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}
.post-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.post-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.5);
    filter: brightness(1.1);
}
.post-btn:active {
    transform: translateY(0) scale(0.98);
}
.post-btn:hover i {
    transform: translateX(3px) translateY(-2px);
}

/* ===== STATUS FEED ===== */
.feed-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#membersFeed, #guestsFeed {
    min-height: 200px;
    max-height: 800px;
    overflow-x: auto;
    overflow-y: scroll;
    padding: 20px 25px;
    margin: 0 -25px;
    display: none;
}

#membersFeed::-webkit-scrollbar, #guestsFeed::-webkit-scrollbar {
    width: 4px;
}
#membersFeed::-webkit-scrollbar-thumb, #guestsFeed::-webkit-scrollbar-thumb {
    background: rgba(112, 0, 255, 0.3);
    border-radius: 10px;
}

.tab-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.tab-btn.active { color: white; }
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7000ff;
}

.status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
    width: calc(100% - 10px);
    transition: transform 0.2s ease;
}

.status-header {
    display: flex;
    justify-content: space-between;
    margin: 0 10px 12px 10px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.user-badge {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
}

.user-id {
    font-size: 0.9rem;
    font-weight: 700;
    color: #7000ff;
}

.status-time {
    font-size: 0.75rem;
    color: #a0a0a0;
    margin-top: -2px;
}

.delete-status-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s;
}

.delete-status-btn:hover {
    color: #ff4d4d;
    transform: scale(1.1);
}

.status-text {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 10px 10px 5px 10px;
    color: #efefef;
}

.status-music-bite {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.status-music-bite:hover {
    background: rgba(255, 255, 255, 0.05);
}

.status-music-bite img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    margin-right: 12px;
}

.music-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.track-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.track-artist {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.play-indicator {
    color: #7000ff;
    margin-right: 10px;
}

/* ===== MEMBER CARD ===== */
.member-card {
    position: relative;
    background: rgba(18, 20, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.member-card::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 25px;
    padding: 1.5px; 
    background: linear-gradient(45deg, #7000ff, #00d2ff, #7000ff, #ff00c8, #7000ff);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.member-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    z-index: -2;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(0, 210, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.member-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
}

.member-card:hover::after {
    opacity: 0.8;
    filter: blur(15px);
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.4), rgba(0, 210, 255, 0.4));
}

.member-card .user-id {
    background: linear-gradient(to right, #fff, #b985ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== MUSIC MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(15, 17, 21, 0.95);
    margin: 8% auto;
    padding: 24px;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    background: #a0a0a0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.close-btn:hover { background: rgba(255, 0, 0, 0.2); color: #ff4d4d; }

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.search-wrapper:focus-within {
    border-color: #7000ff;
    background: rgba(255, 255, 255, 0.08);
}

.search-wrapper input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 10px 10px 40px;
    color: white;
    outline: none;
    font-size: 0.95rem;
}

.search-trigger {
    background: #7000ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.search-trigger:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0a0;
    pointer-events: none;
}

.results-container {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 15px;
}

.empty-state {
    opacity: 0.6;
    text-align: center;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 8px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.track-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-info .track-name {
    font-weight: 600;
    color: white;
    display: block;
}

.track-info .track-artist {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== PROMPT INPUT ===== */
.prompt {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
  z-index: 9999;
}

.prompt-container {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 350px;
  max-width: 420px;
  background: #111;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(21, 94, 204, 0.1);
}

.prompt-header {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  background: linear-gradient(165deg, #fff 0%, #888 50%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.prompt-title {
  color: #ececec;
  font-size: 17px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.prompt-description {
  color: #888;
  font-size: 13px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.prompt-container input {
  width: 100%;
  box-sizing: border-box;
  background: #1a1a1a;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #333;
  color: white;
  font-size: 15px;
  transition: all 0.2s ease;
}

.prompt-container input:focus {
  outline: none;
  border-color: #155ecc;
  background: #222;
  box-shadow: 0 0 0 4px rgba(21, 94, 204, 0.15);
}

.prompt-container button {
  display: flex;
  justify-content: center;
  margin: auto;
  border: none;
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.25s ease;
}

.joinBtn {
  background: #fffbad;
  padding: 10px 15px;
  color: #000;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 0.3px;
}

.joinBtn:hover {
  background: #fff260;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(204, 201, 21, 0.45);
}

.prompt-section {
  margin-bottom: 16px;
}

.prompt-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
  color: #444;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prompt-divider::before,
.prompt-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #222;
}

.prompt-divider span {
  padding: 0 8px;
}

.prompt-error {
  color: #FF2900;
  font-size: 12px;
  margin: 5px 0;
  text-align: center;
}

.center {
  text-align: center;
  margin-top: 10px;
}

.prompt-google {
  background: #ffffff;
  color: #404040 !important;
  margin: 5px 0;
  padding: 8px;
  width: 100%;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  gap: 8px;
  transition: 0.25s ease;
  align-items: center;
}

.prompt-google:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.15);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== SETTINGS MODAL ===== */
.settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.settings-modal.hidden {
  pointer-events: none;
  opacity: 0;
}

.settings-modal-content {
  width: 90vw;
  max-width: 440px;
  max-height: 550px;
  background: #1c1c1c;
  color: #e6e6e6;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: popIn .25s ease;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.settings-modal-content::-webkit-scrollbar { display: none; }

.settings-modal-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.setting-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.setting-item > span:first-child {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
  color: #e6e6e6;
}

.account-setting {
  flex-direction: column;
  align-items: stretch;
}

.account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.account-title {
  color: #e6e6e6;
  font-size: 15px;
  font-weight: 500;
}

.account-text {
  color: #c2c2c2;
  font-size: 12px;
  text-align: right;
  font-weight: 600;
}

.badge-selector {
  position: relative;
}

.badge-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e6e6e6;
  padding: 6px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}

.badge-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
}

.badge-button span {
  font-size: 12px;
}

.badge-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #333;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  min-width: 180px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  padding: 6px;
  transform-origin: top right;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.badge-dropdown::-webkit-scrollbar { width: 4px; }
.badge-dropdown::-webkit-scrollbar-thumb { 
  background: rgba(255,255,255,0.1); 
  border-radius: 10px; 
}

.badge-dropdown.hidden {
  opacity: 0;
  transform: scale(0.9) translateY(-10px);
  pointer-events: none;
}

.badge-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  gap: 10px;
  border-radius: 10px;
  color: #c2c2c2;
  transition: all 0.15s ease;
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e6e6e6;
  transform: translateX(4px);
}

.badge-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.badge-item.equipped {
  color: #155ecc;
  background: rgba(21, 94, 204, 0.1);
}

.badge-item.unequip {
  color: #ff5252;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 10px 10px;
}

.badge-item.unequip:hover {
  background: rgba(255, 82, 82, 0.1);
  color: #ff3333;
}

#winText {
    color: #7000ff;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.5);
}

.icon-setting {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.icon-carousel {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
}

.icon-viewport {
  width: 100%;
  overflow: hidden;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 48px;
  gap: 8px;
  justify-content: center; 
  justify-items: center; 
}

.profile-icon-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border .15s ease, transform .15s ease;
}

.profile-icon-option:hover {
  transform: scale(1.05);
}

.profile-icon-option.selected {
  border-color: #155ecc;
  box-shadow: 0 0 15px rgba(21, 94, 204, 0.3);
}

.google-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.google-avatar.standalone {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}

.carousel-arrow {
  background: transparent;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.08);
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px !important;
  border-radius: 14px;
  cursor: pointer;
  pointer-events: none;
  background: #595959;
  color: #e6e6e6;
  width: 100%;
  margin: 5px 0;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.google-btn.connected {
  background: #41ffa6;
  color: #5f6368;
  cursor: default;
  border: 1px solid #0f531f;
}

.google-status {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
  display: block;
}

.close-settings-btn {
  display: block;
  margin-left: auto;
  margin-right: auto; 
  width: 50%;
  padding: 10px;
  background: #595959;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e6e6e6;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.google-btn:hover,
.close-settings-btn:hover {
  background: #1f70ee;
}

@keyframes popIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}