/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Titillium+Web:wght@300;400;600;700&display=swap);
/*!**************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle (1) ***!
  \**************************************************************************************************************************************************************************************************************************/
/* You can add global styles to this file, and also import other style files */

/* Importar fuentes */

/* Variables globales */
:root {
  --primary-color: #3f51b5;
  --primary-color-rgb: 63, 81, 181;
  --primary-dark: #0B4650;
  --primary-light: #38A3B1;
  --accent-color: #ff4081;
  --accent-color-rgb: 255, 64, 129;
  --accent-light: #FF8F69;
  --background-dark: #1C1C1C;
  --background-light: #2A2A2A;
  --text-light: #F5F5F5;
  --text-dark: #333333;
  --dino-green: #4CAF50;
  --item-blue: #2196F3;
  --structure-orange: #FF9800;
  --danger: #F44336;
  --success: #4CAF50;
  --warning: #FFC107;
  --warn-color: #f44336;
  --warn-color-rgb: 244, 67, 54;
  --text-color: #333333;
  --background-color: #f5f5f5;
  
  --border-radius: 4px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.2);
  
  --font-primary: 'Rajdhani', sans-serif;
  --font-secondary: 'Titillium Web', sans-serif;
}

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

html, body {
  height: 100%;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-light);
  background-color: var(--background-dark);
  background-image: url('ark-background.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Contenedor principal */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Botones */
button {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Espaciado de secciones */
main.container {
  min-height: calc(100vh - 140px);
  padding: 30px 20px;
}

/* Estilos para tarjetas */
.card {
  background: linear-gradient(135deg, var(--background-light), var(--background-dark));
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.card-header {
  padding: 16px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.card-content {
  padding: 16px;
}

/* Personalizar Material */
.mat-mdc-button, .mat-mdc-raised-button, .mat-mdc-outlined-button, .mat-mdc-unelevated-button {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
}

.mat-primary {
  background-color: var(--primary-color) !important;
}

.mat-accent {
  background-color: var(--accent-color) !important;
}

.mat-warn {
  background-color: var(--danger) !important;
}

/* Etiquetas especiales para tipos de productos */
.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}

.tag.dino {
  background-color: var(--dino-green);
}

.tag.item {
  background-color: var(--item-blue);
}

.tag.structure {
  background-color: var(--structure-orange);
}

/* Categorías de rareza */
.rarity {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rarity.common {
  background-color: #9E9E9E;
}

.rarity.rare {
  background-color: #2196F3;
}

.rarity.epic {
  background-color: #9C27B0;
}

.rarity.legendary {
  background-color: #FF9800;
}

/* Texto */
h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-light);
  text-transform: uppercase;
}

h1 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo h3 {
  margin-bottom: 10px;
  color: var(--primary-light);
}

.footer-links h4, .footer-social h4 {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

/* Header */
.header {
  background: linear-gradient(to right, var(--background-dark), var(--primary-dark)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link:hover::after {
  width: 100%;
}

.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cart-icon:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
  }
  
  .header {
    height: auto;
  }
  
  .navigation {
    margin: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .actions {
    margin-top: 10px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo, .footer-links, .footer-social {
    width: 100%;
  }
}

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

.pulse {
  animation: pulse 2s infinite;
}

/* Personalización del scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}


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