@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* Modern CSS Variables for Consistent Theming */
:root {
  /* Primary Brand Colors */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --accent-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);

  /* Background Colors */
  --bg-primary: #0f0f23;
  --bg-secondary: #1a1a2e;
  --bg-card: #16213e;
  --bg-glass: rgba(255, 255, 255, 0.1);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-accent: #667eea;

  /* Interactive Colors */
  --hover-color: rgba(102, 126, 234, 0.2);
  --active-color: rgba(102, 126, 234, 0.3);

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.4s ease-out;
  --transition-slow: 0.6s ease-out;
}

/* Global Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
  }
}

/******************************Loading Modal********************************/

.loading-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  visibility: visible;
}

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

.loading-modal.fade-out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
  font-family: 'Inter', sans-serif;
  animation: fadeInUp 0.8s ease-out;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #ffffff;
  border-right: 6px solid #f093fb;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  margin: 0 auto 30px;
  position: relative;
}

.loading-spinner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.3);
  animation: spin 2s linear infinite reverse;
}

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

.loading-text {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #f093fb, #43e97b);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 2s ease infinite;
}

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

.loading-subtext {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/******************************Special Items********************************/

.wifiIcon {
  font-size: 1.2rem;
}

.billListCustom {
  font-size: 1.35rem;
  position: relative;
  right: 0.4rem;
  bottom: 0.1rem;
}

.accountsText {
  font-weight: 600;
}

.accountListBg {
  border-radius: 2rem;
  margin: auto;
  height: 26rem;
  width: 50rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.selectAccText {
  font-size: 1.5rem;
  padding-top: 1.5rem;
}

.theList {
  padding-top: 2rem;
  position: relative;
  left: 6rem;
  margin: auto;
  text-align: left;
}

.account {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.inputRowSend {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.sndMon {
  position: relative;
  left: 0.4rem;
}

/****************************Sign on section*****************************/

.back1 {
  background: var(--primary-gradient);
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.back1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(240, 147, 251, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 233, 123, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(79, 172, 254, 0.2) 0%,
      transparent 50%
    );
  animation: floatBubbles 20s ease-in-out infinite;
}

@keyframes floatBubbles {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

.backGround {
  height: 100%;
  width: 100%;
  background: var(--primary-gradient);
  overflow: hidden;
  margin: auto;
  position: relative;
}

.signOnBox {
  height: 70%;
  width: 50%;
  border-style: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-medium);
  animation: fadeInUp 1s ease-out;
}

.sec1 {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-card) 100%
  );
  height: 100%;
  border-radius: 20px 0 0 20px;
  position: relative;
  overflow: hidden;
}

.sec1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(102, 126, 234, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 200%;
}

.sec2 {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  );
  height: 100%;
  border-radius: 0 20px 20px 0;
}

.signUpBtn {
  background: var(--primary-gradient);
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  cursor: pointer;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 40px;
  text-decoration: none;
  margin: 0 0.1rem;
  width: 100%;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.signUpBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-medium);
}

.signUpBtn:hover::before {
  left: 100%;
}

.signUpBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.signInBtn {
  background: var(--secondary-gradient);
  border-radius: 50px;
  border: 2px solid rgba(245, 87, 108, 0.3);
  display: inline-block;
  cursor: pointer;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 40px;
  text-decoration: none;
  margin: 1rem 10rem;
  width: 50%;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.signInBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-medium);
}

.signInBtn:hover::before {
  left: 100%;
}

.signInBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.signUpBtn:active {
  transform: translateY(0);
}

.SignUpText {
  margin: auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.welcomeBackSignOn {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  width: 80%;
  margin: auto;
  margin-top: 4rem;
  background: linear-gradient(135deg, #ffffff, #f093fb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.signInText {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 3rem;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
}

.signInToApp {
  margin-top: 3rem;
  animation: fadeInUp 1.4s ease-out 0.6s both;
}

.loginBox {
  height: 3.5rem;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.loginBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.loginBox:focus-within {
  border-color: var(--text-accent);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.loginBox:focus-within::before {
  opacity: 1;
}

.userIcon {
  color: var(--text-accent);
  font-size: 1.8rem;
  position: relative;
  left: 5rem;
  transition: all var(--transition-medium);
  filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
}

.userNameInput {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 15px;
  height: 70%;
  width: 90%;
  padding-left: 4rem;
  color: white;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
}

.userNameInput::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.userNameInput:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.userNameInput:focus + .userLabel {
  display: none;
}

.userLabel {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  left: 4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: all var(--transition-medium);
}

.mobileSignOnBox {
  height: 80%;
  width: 60%;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-style: none;
  border-radius: 20px;
}

.mobileWelcome {
  width: 80%;
}

.mobileRow {
  margin: 0 0 0.5rem;
  position: relative;
  left: 1rem;
}

.mobilePinRow {
  position: relative;
  bottom: 2rem;
}

.mobileIcon {
  position: relative;
  top: 2.3rem;
  left: 1rem;
  font-size: 0.8rem;
}

.mobileLoginBtn {
  position: relative;
  left: 0.5rem;
  margin: auto;

  width: 90%;
}

.mobileSignInText {
  font-size: 0.75rem;
  width: 100%;
}

.mobileInput {
  padding-left: 2rem;
}

/******************************Main app*********************************/
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(240, 147, 251, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(67, 233, 123, 0.05) 0%,
      transparent 20%
    );
  pointer-events: none;
  z-index: -1;
}

.section1 {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-card) 100%
  );
  width: 20%;
  height: 110vh;
  position: relative;
  box-shadow: var(--shadow-medium);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInLeft 1s ease-out;
}

.section1::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(102, 126, 234, 0.5) 30%,
    rgba(240, 147, 251, 0.5) 70%,
    transparent 100%
  );
  animation: pulse 3s ease-in-out infinite;
}

.section2 {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  width: 80%;
  height: 110vh;
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.pfp {
  border: none;
  border-radius: 50%;
  margin: 2.5rem auto;
  width: 5.5rem;
  height: 5.3rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-soft);
}

.pfp:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.pfpName {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 1.3rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.topText {
  font-weight: 300;
  font-size: 1.5rem;
  padding: 2rem 3rem 0 3rem;
  color: var(--text-secondary);
  animation: fadeInUp 1.2s ease-out 0.2s both;
  letter-spacing: 0.3px;
}

.bottomText {
  font-size: 1.8rem;
  font-weight: 800;
  padding: 0 3rem 0 3rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1.4s ease-out 0.4s both;
}

.budgetClass {
  margin: auto;
  padding-top: 5rem;
  text-align: center;
  position: relative;
}

.budgetClass::before {
  content: '';
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--accent-gradient);
  opacity: 0.6;
}

.monthly {
  padding-top: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.budget {
  padding-bottom: 0;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--success-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

.bankingTools {
  padding-top: 5rem;
  animation: fadeInLeft 1.6s ease-out 0.6s both;
}

.bankingImg {
  color: var(--text-accent);
  font-size: 2.3rem;
  padding: 0 3rem;
  transition: all var(--transition-medium);
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
  cursor: pointer;
}

.bankingText {
  margin-top: 0.3rem;
  position: relative;
  right: 6rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.bankingImg:hover {
  color: #f093fb;
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(240, 147, 251, 0.4));
}

.bankingText:hover {
  color: #f093fb;
  transform: translateX(-10px);
}

.accountsLogout {
  margin-top: 5rem;
  animation: fadeInUp 1.8s ease-out 0.8s both;
}

.copyright {
  margin-top: 7rem;
  animation: fadeInUp 2s ease-out 1s both;
}

.CopyRight {
  font-size: 1.7rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.copyRight {
  margin: 0 0 0 0;
  font-size: 0.7rem;
  font-weight: 200;
  color: var(--text-secondary);
  opacity: 0.8;
}

.header {
  height: 10rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.headerText {
  margin: 1rem 2rem;
  font-size: 2rem;
  font-weight: 600;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.verseSection {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}

.verseofTheDay {
  position: relative;
  width: 100%;
  margin: 0;
  text-align: right;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-medium);
  animation: fadeInUp 1.4s ease-out 0.4s both;
  z-index: 2;
}

.votd {
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.verseTitle {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.verse {
  font-size: 0.8rem;
  padding-bottom: 0;
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 300;
}

.main {
  margin-top: 2rem;
  animation: fadeInUp 1.6s ease-out 0.6s both;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
}

.leftSide {
  height: 78.7vh;
  flex: 0 0 auto;
  width: auto;
}

.rightSide {
  height: 78.7vh;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.balanceBlock {
  margin: 0 4rem;
  border-radius: 25px;
  width: 35rem;
  height: 40%;
  background: var(--success-gradient);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-medium);
  cursor: pointer;
  animation: fadeInUp 1.8s ease-out 0.8s both;
}

.balanceBlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.balanceBlock:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.bankImg {
  position: relative;
  left: 65%;
  margin: 2rem 0;
  width: 20%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.balanceText {
  width: 55%;
  font-weight: 600;
  font-size: 100%;
  margin: 2rem 2rem;
  padding: 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dateText {
  width: 40%;
  margin: -1.5rem 2rem;
  font-size: 80%;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.balance {
  position: relative;
  top: 0.1rem;
  width: 100%;
  height: 6vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0 0 25px 25px;
}

.actualBalance {
  margin: 0.3rem 1.7rem;
  font-weight: 900;
  font-size: 1.8rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.incomeSpending {
  margin: 2rem 4rem;
  width: 35rem;
  display: flex;
  gap: 2rem;
  animation: fadeInUp 2s ease-out 1s both;
}

.incomeBlock {
  position: relative;
  right: 1rem;
  height: 15vh;
  margin: 0 0 0 1rem;
  border-radius: 20px;
  background: var(--accent-gradient);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.incomeBlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.incomeBlock:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-medium);
}

.spendingBlock {
  height: 15vh;
  margin: 0 0 0 1rem;
  border-radius: 20px;
  background: var(--secondary-gradient);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.spendingBlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.spendingBlock:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-medium);
}

.billsBlock {
  margin: 0 4rem;
  border-radius: 25px;
  height: 25vh;
  width: 35rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  animation: fadeInUp 2.2s ease-out 1.2s both;
  position: relative;
}

.billsBlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(240, 147, 251, 0.1) 50%,
    rgba(67, 233, 123, 0.1) 100%
  );
  pointer-events: none;
}

.billsBlock:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(102, 126, 234, 0.3);
}

.billsBlock::-webkit-scrollbar {
  width: 8px;
}

.billsBlock::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.billsBlock::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 10px;
  transition: all var(--transition-medium);
}

.billsBlock::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gradient);
}

.accountSwitchModal::-webkit-scrollbar {
  width: 8px;
}

.accountSwitchModal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.accountSwitchModal::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 10px;
}

.accountInfo {
  position: relative;
  left: 2rem;
  bottom: 1.2rem;
  width: 2px;
  margin: 3rem 0 0 0;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bankInfo {
  position: relative;
  right: 1.3rem;
  bottom: 1.2rem;
  margin: 3rem 0 0 3rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.accountNum {
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.accountType {
  position: relative;
  left: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.accountNumber {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.bankName {
  position: relative;
  left: 8.3rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.isText {
  margin: 2rem 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.isAmount {
  display: block;
  position: relative;
  bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 1rem 1rem;
  width: 900%;
  background: var(--success-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.siIcon {
  position: relative;
  left: 10rem;
  bottom: 3rem;
  color: var(--text-accent);
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}
.incomeAmount {
  color: #32cd32;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.spendingAmount {
  color: #ff4757;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.isImage {
  position: relative;
  bottom: 1.2rem;
  left: 2.5rem;
  font-size: 1.5rem;
}

.billsTitle {
  margin: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.bills {
  margin: 0 2.7rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.billText {
  font-size: 1rem;
  margin: 0.3rem 0;
}

.button {
  position: relative;
  left: 12rem;
  font-size: 2rem;
  margin: 1.5rem 0;
}

.icon {
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}

.billIcon {
  font-size: 1.2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.billDate {
  font-weight: 400;
  margin: 0rem 0;
  font-size: 1rem;
}

.transactionBlock {
  border-radius: 25px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 53vh;
  width: 45rem;
  margin: 0 0 2.2rem 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  animation: fadeInUp 1.8s ease-out 0.8s both;
  position: relative;
}

.transactionBlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(240, 147, 251, 0.1) 50%,
    rgba(67, 233, 123, 0.1) 100%
  );
  pointer-events: none;
  border-radius: 25px;
}

.transactionBlock:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(102, 126, 234, 0.3);
}

.transactionBlock::-webkit-scrollbar {
  width: 8px;
}

.transactionBlock::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.transactionBlock::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 10px;
  transition: all var(--transition-medium);
}

.transactionBlock::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gradient);
}

.transactionTitleText {
  font-weight: 700;
  font-size: 2rem;
  padding: 2rem 2rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.lessonsBlock {
  border-radius: 25px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 45rem;
  height: 25vh;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  animation: fadeInUp 1.6s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

.lessonsBlock:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(67, 233, 123, 0.3);
}

/* Hover scroll zones for lessonsBlock */
.lessonsBlock {
  position: relative;
}

.lessonRow {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 1rem;
  gap: 1rem;
  /* Hide scrollbar for webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  position: relative;
  /* Override Bootstrap row behavior specifically for lessonsBlock */
  flex-wrap: nowrap !important; /* Prevent wrapping */
  margin-left: 0 !important; /* Remove Bootstrap row margins */
  margin-right: 0 !important; /* Remove Bootstrap row margins */
}

.lessonRow::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Lesson item container styling */
.lesson-item-wrapper {
  flex: 0 0 auto; /* Don't grow or shrink, maintain natural width */
  min-width: 120px; /* Minimum width for each lesson item */
  max-width: 150px; /* Maximum width for consistent sizing */
  text-align: center;
  transition: all var(--transition-medium);
}

/* Override Bootstrap column behavior specifically within lessonsBlock */
.lessonsBlock .lessonRow .lesson-item-wrapper {
  flex: 0 0 120px !important; /* Fixed width, no growing/shrinking */
  width: 120px !important; /* Override Bootstrap column width */
  max-width: none !important; /* Remove Bootstrap max-width constraint */
  margin-left: 0 !important; /* Remove Bootstrap margin */
  margin-right: 0 !important; /* Remove Bootstrap margin */
  padding-left: 0.5rem !important; /* Minimal padding for spacing */
  padding-right: 0.5rem !important; /* Minimal padding for spacing */
}

/* Hover scroll zones */
.lessonsBlock-scroll-left,
.lessonsBlock-scroll-right {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lessonsBlock-scroll-left {
  left: 0;
  background: linear-gradient(to right, rgba(67, 233, 123, 0.1), transparent);
}

.lessonsBlock-scroll-right {
  right: 0;
  background: linear-gradient(to left, rgba(67, 233, 123, 0.1), transparent);
}

.lessonsBlock-scroll-left:hover,
.lessonsBlock-scroll-right:hover {
  background: linear-gradient(to right, rgba(67, 233, 123, 0.2), transparent);
}

.lesson-item-wrapper:hover {
  transform: translateY(-5px);
}

/* Individual lesson styling */
.lessonDiv {
  background: var(--primary-gradient);
  border-radius: 20px;
  width: 80px;
  height: 80px;
  margin: 0 auto 0.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.lessonDiv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
  border-radius: 20px;
}

.lessonDiv:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.lessonIcon {
  font-size: 2rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  z-index: 1;
  position: relative;
}

.lessonName {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
  padding: 0 0.25rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  /* Handle text overflow */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.transaction {
  margin: 0 1.2rem;
  padding: 0.8rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
  transition: all var(--transition-medium);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.transaction:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  box-shadow: var(--shadow-soft);
}

.note {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-item {
  width: 70%;
  margin-left: 8.5rem;
}

.modal-item {
  margin-top: 1.5rem;
  margin-left: 16rem;
}

.qaHeader {
  font-size: 1.5rem;
  margin-right: 9rem;
}

.answers {
  text-align: left;
}

.answerForm {
  margin-left: 38rem;
  margin-top: 3rem;
}

.form__btn--answers {
  margin-top: 2rem;
}
.transIcon {
  background: var(--primary-gradient);
  margin: 0.4rem auto;
  width: 3rem;
  height: 3rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  flex-shrink: 0;
}

.transIcon:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.transImg {
  text-align: center;
  font-size: 1.2rem;
  margin: 0;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  line-height: 1;
}

.transNameAndDate {
  position: relative;
  bottom: 1rem;
  margin: 0 0 1rem 0;
}

.transDate {
  font-weight: 300;
  margin: -0.7rem -0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.transName {
  font-weight: 600;
  margin: 1rem -0.5rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.transAmountText {
  position: relative;
  left: 8rem;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.negTrans {
  color: #ff6b6b;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.posTrans {
  color: #51cf66;
  background: linear-gradient(135deg, #51cf66, #43e97b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lessonHeaderText {
  padding-top: 1rem;
  margin: 0 2rem;
  font-weight: 600;
  font-size: 1.5rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lessonRow {
  position: relative;
  left: 2.5rem;
  margin: 0.5rem 1rem;
  animation: fadeInUp 1.4s ease-out 0.4s both;
}

.lesson-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15%;
  margin: 0 0.3rem 1rem;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.lesson-item-wrapper:hover {
  transform: translateY(-5px);
}

.lessonDiv {
  border: none;
  border-radius: 50%;
  height: 5.3rem;
  width: 5.3rem;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.lessonDiv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(67, 233, 123, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.lessonDiv:hover::before {
  opacity: 1;
}

.lessonDiv:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
  animation: pulse 2s ease-in-out infinite;
}

.lessonIcon {
  color: var(--text-accent);
  font-size: 2.5rem;
  line-height: 1;
  transition: all var(--transition-medium);
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.lessonDiv:hover .lessonIcon {
  color: #43e97b;
  transform: scale(1.1);
}

.lessonName {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  color: var(--text-secondary);
  transition: all var(--transition-medium);
}

.lesson-item-wrapper:hover .lessonName {
  color: var(--text-primary);
  font-weight: 600;
}

.logoImg {
  width: 100%;
  margin: auto;
  position: relative;
  bottom: 0.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all var(--transition-medium);
  animation: float 8s ease-in-out infinite;
}

.logoImg:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/*******************Modern Notifications***********************/

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  padding: 20px 25px;
  border-radius: 15px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateX(500px);
  transition: all var(--transition-medium);
  z-index: 10000;
  animation: slideInNotification 0.5s ease-out forwards;
}

@keyframes slideInNotification {
  from {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification.success {
  background: var(--success-gradient);
}

.notification.error {
  background: var(--secondary-gradient);
}

.notification.info {
  background: var(--primary-gradient);
}

.notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 15px;
  pointer-events: none;
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/*******************Interactive Button Enhancements***********************/

.btn-modern {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 15px 30px;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-soft);
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-medium);
}

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

.btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

.btn-secondary {
  background: var(--secondary-gradient);
}

.btn-success {
  background: var(--success-gradient);
}

.btn-accent {
  background: var(--accent-gradient);
}

/*******************Loading States***********************/

.loading-state {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.loading-state::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/*******************Micro-interactions***********************/

.hover-lift {
  transition: all var(--transition-medium);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.hover-glow {
  transition: all var(--transition-medium);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.pulse-on-hover:hover {
  animation: pulse 1s ease-in-out infinite;
}

/*******************Card Enhancements***********************/

.card-modern {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(240, 147, 251, 0.05) 50%,
    rgba(67, 233, 123, 0.05) 100%
  );
  pointer-events: none;
}

.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(102, 126, 234, 0.3);
}

/*******************Modals***********************/

.baseModal {
  background: var(--bg-glass);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  width: 50%;
  height: 60%;
  text-align: center;
  color: var(--text-primary);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  animation: modalSlideIn 0.5s ease-out;
}

.baseModal::-webkit-scrollbar {
  width: 8px;
}

.baseModal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.baseModal::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 10px;
  transition: all var(--transition-medium);
}

.baseModal::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gradient);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.baseModal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(240, 147, 251, 0.1) 50%,
    rgba(67, 233, 123, 0.1) 100%
  );
  pointer-events: none;
}

.signOnBox::backdrop {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
}

.transferText {
  font-weight: 600;
  margin-left: 10rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.accountSelection {
  margin: 2rem 0 2rem 0;
}

.exitMark {
  font-size: 2rem;
  color: var(--text-accent);
  transition: all var(--transition-fast);
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.exitMark:hover {
  color: #f093fb;
  transform: scale(1.2) rotate(90deg);
  filter: drop-shadow(0 4px 8px rgba(240, 147, 251, 0.4));
}

.form__input--amount--transfer {
  margin: 0.5rem 0 1rem 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  color: var(--text-primary);
  font-size: 1.2rem;
  padding: 15px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
  font-family: 'Inter', sans-serif;
}

.form__input--amount--transfer:focus {
  outline: none;
  border-color: var(--text-accent);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  transform: scale(1.02);
}

.transferBtn {
  margin-top: 5rem;
}

select {
  font-weight: 600;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 16px;
  transition: all var(--transition-medium);
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--text-accent);
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
}

select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 10px;
}

input {
  font-weight: 500;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 16px;
  transition: all var(--transition-medium);
  font-family: 'Inter', sans-serif;
}

input:focus {
  outline: none;
  border-color: var(--text-accent);
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
  transform: scale(1.02);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.form__btn--transfer {
  border: none;
  background: var(--primary-gradient);
  border-radius: 50px;
  width: 40%;
  display: inline-block;
  cursor: pointer;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  text-decoration: none;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.form__btn--transfer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-medium);
}

.form__btn--transfer:hover::before {
  left: 100%;
}

.form__btn--transfer:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.form__btn--transfer:active {
  transform: translateY(-1px);
}

.activityModal {
  width: 90%;
  height: 60rem;
  background: var(--bg-glass);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  box-shadow: var(--shadow-strong);
  animation: modalSlideIn 0.6s ease-out;
}

.activityHeader {
  margin: auto;
  font-size: 3rem;
  font-weight: 700;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

/*******************Messages Modal***********************/

.messagesModal {
  width: 70%;
  height: 80%;
  max-width: 1200px;
  padding: 0;
  overflow: hidden;
  background: var(--bg-glass);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  box-shadow: var(--shadow-strong);
  animation: modalSlideIn 0.6s ease-out;
}

.messages-container {
  display: flex;
  height: 100%;
  width: 100%;
}

.message-threads {
  width: 30%;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-card) 100%
  );
  border-right: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 25px 0 0 25px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.threads-header {
  padding: 1rem;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(102, 126, 234, 0.3);
  text-align: left;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.thread-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex-grow: 1;
}

.new-thread-button {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 20px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.new-thread-button:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.thread-item {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-medium);
  border-radius: 10px;
  margin-bottom: 2px;
}

.thread-item:hover {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  transform: translateX(5px);
  border-left: 3px solid var(--accent-color);
}

.thread-item.active-thread {
  background: var(--primary-gradient);
  color: white;
  border-left: 3px solid var(--accent-color);
}

.thread-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.thread-preview {
  font-size: 0.9rem;
  margin: 0;
  color: #e0d6bf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conversation-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.conversation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--primary-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.conversation-with {
  margin: 0;
  font-size: 1.5rem;
}

.close-messages-modal {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.conversation-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 75%; /* Control width on the wrapper */
  gap: 4px; /* Space between bubble and timestamp */
}

.message-wrapper.sent {
  align-self: flex-end;
  align-items: flex-end; /* Align items inside to the right */
}

.message-wrapper.received {
  align-self: flex-start;
  align-items: flex-start; /* Align items inside to the left */
}

.message-item {
  /* This is the actual bubble */
  padding: 0.75rem 1rem;
  border-radius: 15px; /* Match teacher dash */
  overflow-wrap: break-word; /* Use modern property to wrap long words without breaking normal ones */
}

/* This rule is now handled by .message-item .message-content */
.message-item p {
  margin: 0;
}

.message-item .message-content {
  color: white;
  font-weight: 500;
}

.message-wrapper.received .message-item {
  background: var(--secondary-gradient);
  border-bottom-left-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.message-wrapper.sent .message-item {
  background: var(--primary-gradient);
  border-bottom-right-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.message-timestamp {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.5em;
  font-weight: 400;
}

.conversation-footer {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: 0 0 20px 20px;
}

.reply-form {
  display: flex;
  align-items: center;
}

.reply-input {
  flex-grow: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 12px 16px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all var(--transition-medium);
}

.reply-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.reply-input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.reply-send-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #e0d6bf;
  padding: 0 8px;
}

@media screen and (max-width: 1300px) {
  .signOnBox {
    display: none;
  }

  @media screen and (max-width: 414px) {
    .pfp {
      margin: 1.5rem 0.2rem;
      width: 4.1rem;
      height: 4.1rem;
    }

    .pfpName {
      margin: -0.5rem 0.7rem;
    }
  }

  @media screen and (max-width: 1900px) {
    .bankingText {
      display: none;
    }
  }

  @media screen and (max-width: 745px) {
    .bankingTools {
      margin: 0 0 0 -0.7rem;
    }
  }

  @media screen and (max-width: 620px) {
    .bankingTools {
      margin: 0 0 0 -2rem;
    }
  }

  @media screen and (max-width: 745px) {
  }

  @media screen and (max-width: 745px) {
    .accountsLogout {
      margin: 0 0 0 -0.7rem;
    }

    .copyright {
      margin: 0 0 0 -0.7rem;
    }
  }

  @media screen and (max-width: 620px) {
    .accountsLogout {
      margin: 0 0 0 -2rem;
    }

    .copyright {
      margin: 0 0 0 -2rem;
    }
  }

  @media screen and (max-width: 1045px) {
    .welcomeBack {
      display: none;
    }
    .budget {
      font-size: 0.1rem;
    }
  }

  /*******************Cell Phones*****************/

  @media screen and (max-width: 940px) {
    .budgetClass {
      position: relative;
      right: 1.5rem;
    }
  }

  @media screen and (max-width: 850px) {
    .balanceBlock {
      width: 30rem;
    }

    .budgetClass {
      display: none;
    }
  }

  @media screen and (max-width: 700px) {
    .balanceBlock {
      width: 25rem;
    }
  }

  @media screen and (max-width: 610px) {
    .balanceBlock {
      width: 20rem;
    }
  }

  @media screen and (max-width: 500px) {
    .balanceBlock {
      width: 15rem;
    }
  }

  @media screen and (max-width: 361px) {
    .actualBalance {
      margin-bottom: 0;
    }
    .balanceBlock {
      width: 10rem;
      margin-left: 1rem;
    }

    .accountInfo {
      position: relative;
      bottom: 2.5rem;
    }

    .bankInfo {
      position: relative;
      bottom: 2.5rem;
    }
  }

  @media screen and (max-width: 376px) {
    .section1 {
      height: 200vh;
    }
  }

  @media screen and (max-width: 415px) {
    body {
      background-color: #61563e;
    }

    .section1 {
      height: 235vh;
    }
    .rightSide {
      background-color: #61563e;
      position: relative;
      top: 22rem;
    }

    .bankImg {
      left: 13rem;
      bottom: 4rem;
      width: 15%;
    }
    .bankLogo {
      height: 1rem;
    }

    .verseofTheDay {
      width: 100%;
      margin: 1rem 0;
      padding: 0.8rem;
      text-align: center;
    }

    .verseSection {
      justify-content: center;
      padding: 0.5rem;
    }

    .actualBalance {
      position: relative;
      bottom: 1.7rem;
    }

    .incomeSpending {
      position: relative;
      left: 6rem;
    }

    .balanceBlock {
      position: relative;
      left: 4.8rem;
      margin-top: 2rem;
      margin-left: 0.7rem;
      width: 17rem;
    }

    .balanceText {
      margin: 1rem 2rem;
    }

    .dateText {
      margin: -1.1rem 2rem 0.1rem;
    }

    .accountInfo {
      position: relative;
      bottom: 4rem;
    }

    .bankInfo {
      position: relative;
      bottom: 4rem;
    }

    .accountNum {
      font-size: 90%;
    }
    .accountNumber {
      font-size: 70%;
    }

    .accountType {
      font-size: 90%;
    }

    .bankName {
      font-size: 70%;
      left: 0.5rem;
    }

    .billsBlock {
      margin-left: 8rem;
      width: 100%;
    }

    .transactionBlock {
      position: relative;
      left: 7rem;
      font-size: 70%;
      height: 30rem;
    }

    .lessonsBlock {
      position: relative;
      left: 3rem;
      height: 15rem;
      width: 25rem;
    }

    /* Mobile lesson horizontal scroll adjustments */
    .lessonRow {
      padding: 0.5rem;
      gap: 0.5rem;
    }

    .lesson-item-wrapper {
      min-width: 100px;
      max-width: 120px;
    }

    .lessonDiv {
      width: 70px;
      height: 70px;
    }

    .lessonIcon {
      font-size: 1.5rem;
    }

    .lessonName {
      font-size: 0.8rem;
    }
  }

  @media screen and (max-width: 395px) {
    .balanceBlock {
      margin-top: 3.5rem;
      margin-left: 0.8rem;
      width: 17rem;
    }

    .bankImg {
      left: 13rem;
      bottom: 4rem;
      width: 15%;
    }
    .bankLogo {
      height: 1rem;
    }
    .balanceBlock {
      margin-top: 3.5rem;
      margin-left: 0.8rem;
      width: 19rem;
      height: 35%;
    }

    .balanceText {
      margin: 1rem 2rem;
    }

    .dateText {
      margin: -1.1rem 2rem 0.1rem;
    }

    .accountNum {
      position: relative;
      bottom: 0.5rem;
      font-size: 90%;
    }
    .accountNumber {
      position: relative;
      bottom: 0.5rem;
      font-size: 70%;
    }

    .accountType {
      position: relative;
      bottom: 0.5rem;
      font-size: 90%;
      position: relative;
      bottom: 0.5rem;
    }

    .bankName {
      font-size: 70%;
      left: 1.5rem;
    }

    .billsBlock {
      position: relative;
      right: 4.3rem;
      width: 100%;
      height: 60%;
    }
  }

  @media screen and (max-width: 415px) {
    body {
      background-color: #61563e;
    }

    .rightSide {
      position: relative;
      top: 22rem;
    }
    .bankImg {
      left: 13rem;
      bottom: 4rem;
      width: 15%;
    }
    .bankLogo {
      height: 1rem;
    }
    .balanceBlock {
      margin-top: 3.5rem;
      margin-left: 0.8rem;
      width: 19rem;
      height: 35%;
    }

    .balanceText {
      margin: 1rem 2rem;
    }

    .actualBalance {
      margin-top: 1.5rem;
      position: relative;
      bottom: 1rem;
    }

    .dateText {
      margin: -1.1rem 2rem 0.1rem;
    }

    .accountInfo {
      position: relative;
      bottom: 4rem;
    }

    .bankInfo {
      position: relative;
      bottom: 4rem;
    }

    .accountType {
      position: relative;
      left: 0.5rem;
    }

    .bankName {
      position: relative;
      left: 0.5rem;
    }

    .incomeBlock {
      position: relative;
      right: 2.3rem;
      margin-bottom: 0.9rem;
    }

    .spendingBlock {
      position: relative;
      right: 2.3rem;
      margin-bottom: 0.9rem;
    }

    .siIcon {
      left: 6rem;
    }

    .billsBlock {
      margin-bottom: 10rem;
      position: relative;
      left: -1.8rem;
      height: 18rem;
    }

    .billBtn {
      position: relative;
      right: 10rem;
    }
    .billsRow {
      width: 100%;
      position: relative;
      right: 1rem;
    }

    .billText {
      font-size: 40%;
    }

    .billDate {
      font-size: 50%;
    }

    .transAmountText {
      position: relative;
      left: 1rem;
      font-size: 100%;
    }

    .transIcon {
      position: relative;
      right: 0;
      width: 20%;
      margin: 0 auto;
    }

    .transNameAndDate {
      position: relative;
      right: 1.5rem;
    }

    .lessonRow {
      margin-right: 5rem;
    }

    .lesson-item-wrapper {
      width: 28%; /* Allow more items per row on mobile */
    }

    .lessonDiv {
      height: 4rem;
      width: 4rem;
    }

    .lessonIcon {
      font-size: 1.8rem;
    }

    .lessonName {
      font-size: 0.75rem;
      margin-top: 0.25rem;
    }
  }

  /*********************************************Tablets**********************************************/

  @media screen and (min-width: 820px) {
    .section1 {
      height: 180vh;
    }
    .body {
      background-color: #61563e;
    }

    .rightSide {
      position: relative;
      top: 2.6rem;
      background-color: #61563e;
    }
    .accountNum {
      font-size: 1.3rem;
    }
    .accountType {
      font-size: 1.3rem;
    }
    .bankName {
      position: relative;
      left: 6.5rem;
    }
    .siIcon {
      position: relative;
      left: 8rem;
    }

    .transactionBlock {
      position: relative;
      margin-left: 1rem;
    }
    .lessonsBlock {
      position: relative;
      left: 1rem;
    }

    .lessonRow {
      position: relative;
      left: 1rem;
      padding: 0.5rem;
      gap: 0.5rem;
    }

    .lesson-item-wrapper {
      min-width: 90px;
      max-width: 110px;
    }

    .lessonDiv {
      width: 60px;
      height: 60px;
    }

    .lessonIcon {
      font-size: 1.3rem;
    }

    .lessonName {
      font-size: 0.75rem;
    }

    .lessonDiv {
      width: 5rem;
      height: 5rem;
    }
  }

  @media screen and (min-width: 768px) {
    .section1 {
      height: 180vh;
    }

    .section2 {
      background-color: #61563e;
    }
    .body {
      background-color: #61563e;
    }

    .rightSide {
      position: relative;
      top: 2.6rem;
      background-color: #61563e;
    }
    .accountNum {
      font-size: 1.2rem;
    }
    .accountType {
      font-size: 1.2rem;
    }
    .bankName {
      position: relative;
      left: 5.5rem;
    }
    .siIcon {
      position: relative;
      left: 8rem;
    }

    .transactionBlock {
      position: relative;
      margin-left: 1rem;
    }
    .lessonsBlock {
      position: relative;
      left: 1rem;
    }

    .lessonRow {
      position: relative;
      left: 1rem;
      padding: 0.75rem;
      gap: 0.75rem;
    }

    .lesson-item-wrapper {
      min-width: 100px;
      max-width: 130px;
    }

    .lessonDiv {
      width: 5rem;
      height: 5rem;
    }

    .lessonIcon {
      font-size: 1.5rem;
    }

    .lessonName {
      font-size: 0.8rem;
    }
  }

  /*********************Desktop************************/

  @media screen and (min-width: 1920px) {
    .section1 {
      height: 110vh;
    }
  }

  /*******************Enhanced Responsive Design***********************/

  /* Modern responsive improvements */
  @media screen and (max-width: 1200px) {
    .section1 {
      width: 25%;
    }

    .section2 {
      width: 75%;
    }

    .balanceBlock {
      width: 30rem;
    }
  }

  @media screen and (max-width: 992px) {
    .headerText {
      font-size: 1.5rem;
    }

    .topText {
      font-size: 1.3rem;
    }

    .bottomText {
      font-size: 1.6rem;
    }

    .budget {
      font-size: 1.8rem;
    }

    .bankingImg {
      font-size: 2rem;
    }
  }

  /*******************Modern Accessibility Enhancements***********************/

  /* Focus states for better accessibility */
  *:focus {
    outline: 2px solid var(--text-accent);
    outline-offset: 2px;
  }

  /* Reduced motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }

    .loading-spinner {
      animation: none;
    }
  }

  /*******************Performance Optimizations***********************/

  /* GPU acceleration for animations */
  .loading-spinner,
  .pfp,
  .lessonDiv,
  .balanceBlock,
  .incomeBlock,
  .spendingBlock,
  .billsBlock,
  .bankingImg,
  .transIcon {
    will-change: transform;
  }

  /* Selection styling - REMOVED */
  ::selection {
    background: transparent;
    color: inherit;
  }

  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
    border: 2px solid var(--bg-secondary);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
  }
}

/* Text Visibility Enhancements */
.transactionBlock *,
.lessonsBlock * {
  color: var(--text-primary) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Additional text contrast improvements */
.transaction p,
.transaction span,
.transaction div {
  color: var(--text-primary) !important;
  font-weight: 500;
}

/* Lesson text visibility */
.lessonHeaderText,
.lessonName {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Transaction amount visibility */
.transactionAmount,
.amount {
  color: var(--text-primary) !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* General text improvements for glass morphism backgrounds */
.glass-text {
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

/* =================================================================
   VERSE OF THE DAY STYLING
   ================================================================= */
.verse-content {
  text-align: center;
  padding: 1rem;
  margin: 0.5rem 0;
}

.verse-text {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.verse-reference {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-color);
  margin-top: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Verse display animations */
.verse-content {
  transition: all 0.3s ease-in-out;
}

.verse-content:hover {
  transform: translateY(-2px);
}

/* Mobile responsive verse styling */
@media (max-width: 768px) {
  .verse-text {
    font-size: 0.85rem;
  }

  .verse-reference {
    font-size: 0.75rem;
  }
}
