/* Phoenix Gaming - Blue Phoenix Edition */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto&display=swap');

/* 1. Brand Colors */
:root {
  --phoenix-primary: #1E90FF;       /* Dodger Blue - main phoenix color */
  --phoenix-secondary: #0D1117;     /* Very Dark Navy - background */
  --phoenix-accent: #64B5F6;        /* Light Blue accent */
  --phoenix-muted: #8A9BA8;         /* Soft Steel Blue for secondary text */
  --phoenix-light: #E1E8F0;         /* Light icy blue/off-white text */
  --phoenix-glow: #3399FF;          /* Bright blue glow for hover/focus */
}

/* 2. Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--phoenix-secondary);
  color: var(--phoenix-light);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Headings */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--phoenix-primary);
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

/* 4. Paragraphs and Text */
p, li, a {
  font-family: 'Roboto', sans-serif;
  color: var(--phoenix-light);
  margin-top: 0;
  margin-bottom: 1em;
}

/* 5. Container and Layout */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding: 4rem 0;
}

/* 6. Buttons and Interactive Elements */
button,
a.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  text-decoration: none;
  user-select: none;
}

button:focus,
a.button:focus {
  outline: none;
  box-shadow: 0 0 8px var(--phoenix-glow);
}

/* Primary Button */
button.primary,
a.button.primary {
  background-color: var(--phoenix-primary);
  color: var(--phoenix-light);
  border: none;
}

button.primary:hover,
a.button.primary:hover {
  background-color: var(--phoenix-glow);
  box-shadow: 0 0 12px var(--phoenix-glow);
}

/* Secondary Button */
button.secondary,
a.button.secondary {
  background-color: transparent;
  border: 2px solid var(--phoenix-primary);
  color: var(--phoenix-primary);
}

button.secondary:hover,
a.button.secondary:hover {
  background-color: var(--phoenix-primary);
  color: var(--phoenix-light);
}

/* 7. Links */
a {
  color: var(--phoenix-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--phoenix-primary);
  text-decoration: underline;
}

/* 8. Cards and Panels */
.card {
  background-color: #111A2B;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 12px rgba(30, 144, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(51, 153, 255, 0.45);
}

/* 9. Forms and Inputs */
input,
textarea,
select {
  background-color: #1E2E47;
  border: 2px solid var(--phoenix-muted);
  border-radius: 8px;
  color: var(--phoenix-light);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: 'Roboto', sans-serif;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--phoenix-primary);
  outline: none;
  box-shadow: 0 0 8px var(--phoenix-glow);
}

/* 10. Icon Styling */
.icon {
  filter: drop-shadow(0 0 4px var(--phoenix-primary));
  vertical-align: middle;
  transition: filter 0.3s ease;
}

.icon:hover,
.icon:focus {
  filter: drop-shadow(0 0 8px var(--phoenix-glow));
}

/* 11. Utility Classes */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* 12. Responsive Typography (Optional) */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

/* End of Phoenix Gaming Blue Phoenix CSS */

