* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: url("./assets/background.png");
  background-size: cover;
  width: 100vw;
  height: 100vh;
}

.gamestore {
  width: 100%;
  height: 100vh;
}

/* Vue.js Login Section - AuthWrapper equivalent */
.auth-wrapper {
  min-height: 100vh;
}

.auth-container {
  min-height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid Layout */
.auth-grid {
  min-height: calc(100vh - 112px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Side Image Section (7/12 width) */
.auth-side-section {
  flex: 0 0 58.333333%; /* 7/12 = 58.333% */
  display: none;
  align-self: center;
  justify-content: flex-start;
}

@media (min-width: 960px) {
  .auth-side-section {
    display: flex;
  }
}

.auth-side-image {
  height: 100vh;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Form Section (5/12 width) */
.auth-form-section {
  flex: 0 0 41.666667%; /* 5/12 = 41.666% */
  display: flex;
  justify-content: center;
  padding: 56px;
}

@media (max-width: 959px) {
  .auth-form-section {
    flex: 1;
  }
}

.auth-form-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px; /* spacing={3} in Material-UI */
}

/* Logo Section */
.logo-main {
  text-align: center;
  margin-top: 16px; /* mt={2} equivalent */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.main-logo {
  width: 180px;
  height: auto;§
}

.app-subtitle {
  font-size: 14px;
  color: gray;
  margin: 0;
  font-weight: 600;
}

/* Login Section */
.login-section {
  margin-top: -16px; /* mt={-2} equivalent */
}


.google-login-button:hover {
  background-color: #f9fafb;
}

.google-login-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.5);
}

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

.google-logo {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.5rem;
}

/* Auth Divider Container */
.auth-divider-container {
  margin-top: 16px; /* mt={2} */
}

/* Auth Divider - matching React AuthDivider component */
.auth-divider {
  position: relative;
  display: flex;
  margin-bottom: 16px;
}

.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  background: #e0e0e0; /* Material-UI divider color */
}

.divider-text {
  background: white;
  position: relative;
  padding: 8px 20px;
  margin: 0 auto;
  z-index: 5;
  color: #666;
  font-size: 1rem;
  font-weight: 400;
}

/* Signup Text */
.signup-text {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.43;
}

.contact-link {
  text-decoration: underline;
  color: purple; /* Matching React inline style */
}

.contact-link:hover {
  color: #6a1b9a;
}

/* Main App Styles (Vue.js Home component) */
.main-app {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #2c3e50;
  padding-top: 60px;
}

.store-logo {
  max-width: 50%;
}

.profile {
  height: 60px;
  margin-right: 10px;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-email {
  color: white;
  font-size: 12px;
  margin-bottom: 5px;
  text-shadow: 0px 0px 3px #000;
}

.google-login-button {
  display: flex;
  justify-content: center;
}

.logout-btn {
  background-color: #ff4757;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.logout-btn:hover {
  background-color: #ff3742;
}

.header {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header > div {
  width: 100px;
}

.price {
  height: 40px;
  width: 80px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0px 0px 6px #000;
}

.wrapper {
  margin-bottom: 60px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bundle-container {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.bundle-container:hover {
  transform: scale(1.05);
}

.bundle {
  max-width: 350px;
  height: auto;
}

button {
  background-color: #4a0350;
  color: white;
  border: 1px solid #edce74;
  border-radius: 4px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}

button:hover {
  background-color: #5a1360;
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  max-width: 400px;
  animation: slideIn 0.3s ease-out;
}

.notification.error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.notification.success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

.notification.info {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.notification-message {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.notification-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.7;
}

.notification-close:hover {
  opacity: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=styles.css.map */
