/* /home/lodiko/lodikocom/src/styles/custompc.css (to be copied to /assets/custompc.css) */

/* Desktop-specific styles for HomeDesktop.jsx, Login.jsx, Signup.jsx, and VideoPlayer.jsx */

:root {
  --golden-yellow: #FFD54F;
  --solana-green: #00FFA3;
  --solana-purple: #DC1FFF;
  --solana-accent: #40C4FF;
  --solana-gradient: linear-gradient(135deg, #00FFA3 0%, #DC1FFF 70%);
  --primary-yellow: #FFC107;
  --primary-blue: #2196F3;
  --primary-red: #CE1126;
  --primary-white: #FFFFFF;
  --background-dark: #121212;
  --background-darker: #0A0A0A;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(255, 255, 255, 0.08);
  --container-bg: rgba(10, 10, 10, 0.6);
  --input-bg: linear-gradient(to bottom, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
  --border-neon: linear-gradient(to bottom, #2A2A2A 0%, #4A4A2A 50%, #2A2A2A 100%);
  --text-muted: #B0B0B0;
  --neon-glow: rgba(255, 193, 7, 0.2);
  --create-button-bg: radial-gradient(circle at center, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  --header-height: 80px;
  --video-max-height: 85vh;
  --sidebar-width: 80px;
}

.home-desktop-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--background-darker), var(--background-dark));
  font-family: 'Inter', 'Arial', sans-serif;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1002;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65));
  backdrop-filter: blur(8px);
  height: var(--header-height);
  box-shadow: 0 3px 10px var(--shadow-dark);
}

.search-bar {
  margin-right: 20px;
  flex: 0 0 auto;
}

.top-right-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  position: absolute;
  top: 32px;
  right: 20px;
  margin-right: 8px;
  z-index: 1003;
  flex-wrap: nowrap;
  visibility: visible !important;
  opacity: 1 !important;
}

.action-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--primary-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  height: 32px;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.action-button:hover {
  color: var(--golden-yellow);
  background: rgba(255, 213, 79, 0.15);
  border-color: var(--golden-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 213, 79, 0.2);
}

.action-icon {
  font-size: 0.9rem;
}

.action-label {
  font-size: 0.75rem;
  font-weight: 600;
}

.top-right-actions .login-button {
  background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
  border: none;
  color: var(--background-darker);
  box-shadow: 0 4px 8px rgba(255, 213, 79, 0.3);
  min-width: 60px; /* Reduced to fix wide background */
  padding: 6px 10px; /* Adjusted for smaller width */
}

.top-right-actions .login-button:hover {
  background: linear-gradient(135deg, #FFB300 0%, #FFD54F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 213, 79, 0.4);
}

.top-right-actions .signup-button {
  background: linear-gradient(135deg, #40C4FF 0%, #2196F3 100%);
  border: none;
  color: var(--primary-white);
  box-shadow: 0 4px 8px rgba(64, 196, 255, 0.3);
  min-width: 80px; /* Increased to fix small background */
  padding: 6px 14px; /* Adjusted for larger background */
}

.top-right-actions .signup-button:hover {
  background: linear-gradient(135deg, #2196F3 0%, #40C4FF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(64, 196, 255, 0.4);
}

.top-right-actions .connect-button {
  background: var(--solana-gradient);
  border: none;
  color: var(--background-darker);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 16px; /* Smoother, rounded corners */
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 70px;
  max-width: 100px;
  width: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 255, 163, 0.3);
}

.top-right-actions .connect-button:hover {
  background: linear-gradient(135deg, #DC1FFF 0%, #00FFA3 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 255, 163, 0.4);
  filter: brightness(1.1);
}

.top-right-actions button::after,
.top-right-actions .connect-button::after {
  content: attr(title);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: var(--primary-white);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
  z-index: 1004;
}

.top-right-actions button:hover::after,
.top-right-actions .connect-button:hover::after {
  opacity: 1;
  visibility: visible;
}

.auth-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in-out;
  visibility: visible !important;
  opacity: 1 !important;
}

.auth-container {
  width: 100%;
  max-width: clamp(360px, 90vw, 520px);
  max-height: 450px;
  padding: clamp(16px, 4vw, 20px);
  border-radius: 12px;
  background: var(--container-bg);
  backdrop-filter: blur(14px);
  border: 2px solid var(--border-neon);
  box-shadow: 
    0 6px 12px var(--shadow-dark),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-white);
}

.login-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-white);
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 1000;
  font-size: 14px;
  text-align: center;
}

.auth-title {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 800;
  color: var(--primary-yellow);
  margin-bottom: clamp(10px, 3vw, 12px);
  text-shadow: 0 0 6px var(--neon-glow);
  text-transform: uppercase;
  flex-shrink: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 2vw, 8px);
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0;
  width: 100%;
}

.login-input {
  background: var(--input-bg);
  border: 1px solid var(--border-neon);
  color: var(--primary-white);
  padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 12px);
  border-radius: 6px;
  font-size: clamp(13px, 3vw, 14px);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.login-input::placeholder {
  color: var(--text-muted);
}

.login-input:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 8px var(--neon-glow);
  background: rgba(20, 20, 25, 0.9);
}

.login-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-button,
.login-social-button {
  border: none;
  border-radius: 6px;
  font-size: clamp(13px, 3vw, 14px);
  font-weight: 600;
  padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 12px);
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--background-darker);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 36px;
  white-space: nowrap;
  box-shadow: 
    0 4px 8px var(--shadow-dark),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.login-button {
  background: linear-gradient(145deg, var(--primary-yellow), #e6a700);
  color: #111;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.5);
}

.login-button:hover:not(:disabled) {
  transform: scale(1.03) translateY(-2px);
  background: linear-gradient(145deg, #e6a700, var(--primary-yellow));
  box-shadow: 0 6px 12px var(--neon-glow);
}

.login-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-social-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 2vw, 8px);
  width: 100%;
  flex-shrink: 0;
}

.login-social-button.google {
  background: linear-gradient(145deg, #EA4335, #C5221F);
  box-shadow: 0 4px 10px rgba(234, 67, 53, 0.4);
}

.login-social-button.google:hover:not(:disabled) {
  background: linear-gradient(145deg, #C5221F, #EA4335);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 6px 12px rgba(234, 67, 53, 0.5);
}

.login-social-button.x {
  background: linear-gradient(145deg, #1A1A1A, #000000);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.login-social-button.x:hover:not(:disabled) {
  background: linear-gradient(145deg, #000000, #1A1A1A);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9);
}

.login-social-button.wallet {
  background: var(--solana-gradient);
  box-shadow: 0 4px 8px var(--shadow-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  line-height: normal;
}

.login-social-button.wallet:hover:not(:disabled) {
  background: linear-gradient(145deg, #DC1FFF, #00FFA3);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 255, 163, 0.5);
}

.login-social-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-icon,
.login-social-icon {
  font-size: clamp(13px, 3vw, 14px);
}

.login-divider {
  text-align: center;
  color: var(--text-muted);
  margin: clamp(10px, 3vw, 12px) 0;
  position: relative;
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 500;
  flex-shrink: 0;
  text-shadow: 0 0 4px var(--neon-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 100%;
}

.login-divider::before,
.login-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 2px;
  background: var(--border-neon);
  transform: translateY(-50%);
  box-shadow: 0 0 6px var(--neon-glow);
  z-index: 0;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-links {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.5vw, 8px);
  margin-top: clamp(10px, 3vw, 12px);
  text-align: center;
  flex-shrink: 0;
}

.login-link {
  color: var(--primary-yellow);
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  text-shadow: 0 0 4px var(--neon-glow);
}

.login-link:hover {
  color: var(--primary-white);
  transform: scale(1.05);
}

.login-error,
.login-success {
  padding: clamp(6px, 2vw, 8px);
  border-radius: 6px;
  font-size: clamp(12px, 2.5vw, 13px);
  margin-bottom: clamp(8px, 2vw, 10px);
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px var(--shadow-dark);
  max-height: 60px;
  overflow-y: auto;
}

.login-error {
  background: rgba(255, 77, 79, 0.9);
  color: var(--primary-white);
}

.login-success {
  background: #28A745;
  color: var(--primary-white);
}

.login-checkbox {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 8px);
  font-size: clamp(12px, 2.5vw, 13px);
  color: var(--text-muted);
  margin-bottom: clamp(8px, 2vw, 10px);
  flex-shrink: 0;
}

.login-checkbox input {
  width: clamp(14px, 3vw, 16px);
  height: clamp(14px, 3vw, 16px);
  accent-color: var(--primary-yellow);
  cursor: pointer;
  box-shadow: 0 0 4px var(--neon-glow);
}

.login-checkbox input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-checkbox a {
  color: var(--primary-yellow);
  text-decoration: none;
  text-shadow: 0 0 4px var(--neon-glow);
}

.login-checkbox a:hover {
  color: var(--primary-white);
  text-decoration: underline;
}

.video-tabs {
  display: flex;
  gap: 8px;
  padding: 4px 8px;
  background: transparent;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1003;
}

.video-tabs .tab-button {
  background: transparent;
  border: none;
  color: var(--primary-white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease;
  position: relative;
}

.video-tabs .tab-button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--golden-yellow), #FFE082);
  transition: width 0.3s ease;
}

.video-tabs .tab-button:hover {
  color: var(--golden-yellow);
  background: rgba(255, 213, 79, 0.1);
  transform: scale(1.05);
}

.video-tabs .tab-button:hover::after {
  width: 100%;
}

.video-tabs .tab-button.active {
  color: var(--golden-yellow);
  background: rgba(255, 213, 79, 0.2);
  font-weight: 700;
}

.video-tabs .tab-button.active::after {
  width: 100%;
}

.sidebar-nav {
  width: var(--sidebar-width);
  padding: 100px 0 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(18, 18, 18, 0.9));
  backdrop-filter: blur(10px);
  border-right: 1px solid var(--shadow-light);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  box-shadow: 2px 0 10px var(--shadow-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-nav a {
  color: var(--primary-white);
  text-decoration: none;
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: relative;
  display: flex;
  justify-content: center;
}

.sidebar-nav a:hover {
  background: linear-gradient(135deg, var(--golden-yellow), #FFE082);
  color: var(--background-darker);
  transform: scale(1.1) rotate(2deg);
}

.sidebar-nav a.active {
  background: linear-gradient(135deg, var(--golden-yellow), #FFE082);
  color: var(--background-darker);
  box-shadow: 0 0 8px var(--golden-yellow);
}

.sidebar-nav a::after {
  content: attr(title);
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: var(--primary-white);
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  white-space: nowrap;
}

.sidebar-nav a:hover::after {
  opacity: 1;
  visibility: visible;
}

.sidebar-footer {
  margin-top: auto;
  border-top: 1px solid var(--shadow-light);
  padding-top: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-toggle {
  background: transparent;
  border: none;
  color: var(--primary-white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-toggle:hover {
  color: var(--golden-yellow);
  transform: scale(1.1);
}

.footer-menu {
  position: absolute;
  bottom: 40px;
  left: calc(var(--sidebar-width) + 8px);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-dark);
  padding: 8px;
  display: flex;
  flex-direction: column;
  z-index: 1002;
  min-width: 140px;
}

.footer-menu a {
  color: var(--primary-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-menu a:hover {
  background: linear-gradient(135deg, var(--golden-yellow), #FFE082);
  color: var(--background-darker);
}

.footer-menu .footer-copyright {
  color: var(--primary-white);
  font-size: 0.75rem;
  margin-top: 6px;
  text-align: center;
}

.desktop-feed {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  margin-left: var(--sidebar-width);
  background: var(--background-dark);
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0; /* Removed padding to ensure full viewport snapping */
  height: 100vh; /* Full viewport height */
  scroll-behavior: smooth;
  visibility: visible !important;
  opacity: 1 !important;
}

.video-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  padding: 0;
}

.video-card,
.live-stream-wrapper {
  width: 100%;
  max-width: 1080px;
  height: calc(100vh - var(--header-height)); /* Full viewport minus header */
  scroll-snap-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; /* Removed margin for strict snapping */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow-dark);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInVideo 0.6s ease-out;
  visibility: visible !important;
  opacity: 1 !important;
}

.video-card:hover,
.live-stream-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-card .video-container {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.video-card .video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  transition: filter 0.3s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.video-card:hover .video-player {
  filter: brightness(1.05);
}

.live-stream-wrapper .live-stream {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.desktop-feed::-webkit-scrollbar {
  width: 10px;
}

.desktop-feed::-webkit-scrollbar-track {
  background: var(--background-darker);
  border-radius: 5px;
}

.desktop-feed::-webkit-scrollbar-thumb {
  background: var(--solana-green);
  border-radius: 5px;
  transition: background 0.3s ease;
}

.desktop-feed::-webkit-scrollbar-thumb:hover {
  background: var(--solana-accent);
}

.lodiko-ai {
  position: fixed;
  top: 130px;
  left: calc(var(--sidebar-width) + 10px);
  z-index: 1004;
}

.retry-button {
  background: var(--golden-yellow);
  color: var(--background-darker);
  padding: 8px 16px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.retry-button:hover {
  background: #FFE082;
  transform: scale(1.05);
}

.loader {
  text-align: center;
  color: var(--primary-white);
  padding: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.home-desktop-wrapper .video-actions .action-button {
  background: transparent;
  color: var(--golden-yellow);
  border: none;
}

@media (min-width: 1200px) {
  .sidebar-nav {
    width: var(--sidebar-width);
  }

  .desktop-feed {
    margin-left: var(--sidebar-width);
  }

  .video-list {
    max-width: 1200px;
  }

  .video-card,
  .live-stream-wrapper {
    max-width: 1200px;
  }
}

@media (min-width: 1600px) {
  .video-list {
    max-width: 1400px;
  }

  .video-card,
  .live-stream-wrapper {
    max-width: 1400px;
    height: calc(100vh - var(--header-height));
  }
}

@media (max-width: 767px) {
  .auth-container {
    max-width: clamp(320px, 95vw, 360px);
    max-height: 400px;
    padding: 12px;
  }

  .auth-title {
    font-size: clamp(18px, 5vw, 20px);
    margin-bottom: clamp(8px, 2vw, 10px);
  }

  .login-button,
  .login-social-button {
    font-size: 12px;
    padding: 6px 8px;
    min-height: 32px;
  }

  .login-input {
    font-size: 12px;
    padding: 6px 8px;
  }

  .login-divider {
    font-size: 12px;
    margin: 10px 0;
  }

  .login-link {
    font-size: 11px;
  }

  .login-checkbox {
    font-size: 11px;
  }

  .login-error,
  .login-success {
    font-size: 11px;
    padding: 5px 6px;
    max-height: 50px;
  }

  .action-button {
    width: auto;
    min-width: 60px;
    height: 28px;
    font-size: 0.7rem;
    padding: 6px 12px;
    gap: 4px;
  }

  .top-right-actions .connect-button {
    min-width: 60px !important;
    max-width: 90px !important;
    min-height: 28px !important;
    width: auto !important;
    font-size: 0.65rem !important;
    padding: 6px 12px !important;
    border-radius: 14px !important; /* Slightly less rounded for mobile */
  }

  .top-right-actions {
    gap: 8px;
    top: 20px;
    right: 16px;
    margin-right: 6px;
    flex-wrap: wrap;
  }

  .login-prompt {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .auth-container {
    padding: 20px;
  }

  .auth-title {
    font-size: 24px;
  }

  .login-button,
  .login-social-button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .login-input {
    font-size: 14px;
    padding: 8px 12px;
  }

  .login-link {
    font-size: 13px;
  }

  .login-checkbox {
    font-size: 13px;
  }
}

@media (min-width: 1200px) {
  .auth-container {
    max-width: 560px;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInVideo {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}