@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --primary-color: #1A2E40;
  --secondary-color: #0F52BA;
  --bg-dark: #0D1B2A;
  --bg-darker: #0A1626;
  --accent-yellow: #FFD700;
  --accent-turquoise: #00D9FF;
  --accent-cyan: #00E5FF;
  --text-light: #E8F0F7;
  --text-muted: #A0B4C8;
  --border-color: #1A3A52;
  --shadow-sm: 0 2px 8px rgba(0, 217, 255, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 217, 255, 0.15);
  --shadow-lg: 0 16px 40px rgba(15, 82, 186, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 217, 255, 0.3);
  --spacing-unit: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(15, 82, 186, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(0, 217, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-light);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.75px;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-turquoise) 100%);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a:hover {
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Header */
.navbar {
  background-color: rgba(13, 27, 42, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.nav-link {
  color: var(--text-muted) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-left: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--accent-cyan) !important;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-yellow) !important;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.nav-link.active::before {
  width: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-yellow));
}

body {
  padding-top: 70px;
}

/* Buttons */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--accent-yellow) !important;
  color: var(--bg-dark) !important;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
  background-color: #FFE44D !important;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
  background-color: #1E6FFF !important;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-outline-light {
  border: 2px solid var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  background-color: transparent !important;
  box-shadow: inset 0 -2px 0 rgba(0, 217, 255, 0.2);
}

.btn-outline-light:hover {
  background-color: rgba(0, 217, 255, 0.1) !important;
  box-shadow: inset 0 -2px 0 rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Forms */
.form-control,
.form-select {
  background-color: rgba(26, 46, 64, 0.6) !important;
  border: 2px solid var(--border-color) !important;
  color: var(--text-light) !important;
  font-family: 'Roboto', sans-serif;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(26, 46, 64, 0.8) !important;
  border-color: var(--accent-cyan) !important;
  color: var(--text-light) !important;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.05);
}

.form-label {
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  background-color: rgba(26, 46, 64, 0.5) !important;
  border: 1px solid rgba(0, 217, 255, 0.15) !important;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(0, 217, 255, 0.4) !important;
  box-shadow: var(--shadow-md), 0 0 20px rgba(0, 217, 255, 0.2);
  transform: translateY(-4px);
}

.card-header {
  background-color: rgba(15, 82, 186, 0.2) !important;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-light);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Sections */
section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.section-hero {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(15, 82, 186, 0.1) 100%);
  padding: 6rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.section-alt {
  background-color: var(--primary-color);
}

.section-accent {
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.15) 0%, rgba(0, 217, 255, 0.05) 100%);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

/* Container */
.container {
  max-width: 1200px;
}

/* Grid & Layout */
.row {
  align-items: center;
}

[class*="col-"] {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  [class*="col-"] {
    margin-bottom: 0;
  }
}

/* Footer */
footer {
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  font-family: 'Roboto', sans-serif;
}

.footer-section h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-cyan);
  padding-left: 1rem;
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-legal {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-cyan);
  border-radius: 4px;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background-color: rgba(0, 217, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
  transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent-cyan);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -8px 32px rgba(0, 217, 255, 0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: var(--accent-yellow);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.cookie-accept:hover {
  background-color: #FFE44D;
  color: #0A1626;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.cookie-decline {
  background-color: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}

.cookie-decline:hover {
  background-color: rgba(0, 217, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Badge & Labels */
.badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.badge-primary {
  background-color: var(--accent-yellow);
  color: var(--bg-dark);
}

.badge-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.badge-accent {
  background-color: var(--accent-cyan);
  color: var(--bg-dark);
}

/* List Styles */
.list-unstyled li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.list-unstyled li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

/* Alerts */
.alert {
  border-radius: 4px;
  border: 1px solid;
  font-family: 'Roboto', sans-serif;
}

.alert-info {
  background-color: rgba(15, 82, 186, 0.1);
  border-color: var(--secondary-color);
  color: var(--text-light);
}

.alert-success {
  background-color: rgba(0, 217, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--text-light);
}

.alert-warning {
  background-color: rgba(255, 215, 0, 0.1);
  border-color: var(--accent-yellow);
  color: var(--text-light);
}

.alert-danger {
  background-color: rgba(255, 67, 54, 0.1);
  border-color: #FF4336;
  color: var(--text-light);
}

/* Pagination */
.pagination {
  gap: 0.5rem;
}

.page-link {
  background-color: rgba(26, 46, 64, 0.5);
  border: 1px solid var(--border-color);
  color: var(--accent-cyan);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover {
  background-color: rgba(15, 82, 186, 0.3);
  border-color: var(--accent-cyan);
  color: var(--accent-yellow);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.page-link.active {
  background-color: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: var(--bg-dark);
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb-item {
  color: var(--text-muted);
}

.breadcrumb-item.active {
  color: var(--accent-cyan);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--accent-cyan);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--accent-cyan);
  margin: 0 0.5rem;
}

/* Tooltips & Popovers */
.tooltip-inner {
  background-color: rgba(13, 27, 42, 0.95);
  border: 1px solid var(--accent-cyan);
  font-family: 'Roboto', sans-serif;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.tooltip-arrow::before {
  border-top-color: var(--accent-cyan);
}

/* Tables */
.table {
  color: var(--text-light);
  border-color: var(--border-color);
}

.table thead th {
  background-color: rgba(15, 82, 186, 0.2);
  border-color: var(--border-color);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.table tbody tr {
  transition: all 0.3s ease;
  border-color: var(--border-color);
}

.table tbody tr:hover {
  background-color: rgba(0, 217, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(0, 217, 255, 0.1);
}

.table tbody td {
  border-color: var(--border-color);
  color: var(--text-muted);
}

/* Modals */
.modal-content {
  background-color: var(--primary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(15, 82, 186, 0.1);
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-light);
}

.btn-close {
  filter: invert(1) brightness(1.2);
  transition: all 0.3s ease;
}

.btn-close:hover {
  filter: invert(1) brightness(1.5) drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .section-hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:hover::before {
    display: none;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .footer-section {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  [class*="col-"] {
    margin-bottom: 1.5rem;
  }
}

/* Accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Utility Classes */
.text-accent {
  color: var(--accent-cyan);
}


/* Cookie Banner Additional Styles for Bootstrap */
.cookie-banner-custom {
    z-index: 1060;
    backdrop-filter: blur(10px);
}

.cookie-banner-custom .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.filter-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.25);
  background: rgba(6, 19, 31, 0.55);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all var(--transition-speed) var(--transition-easing);
}

.filter-pill:hover,
.filter-pill.is-active {
  border-color: rgba(0, 217, 255, 0.7);
  background: rgba(0, 217, 255, 0.18);
  color: var(--accent-cyan);
  box-shadow: 0 14px 28px rgba(0, 217, 255, 0.18);
}

.platform-card {
  background: linear-gradient(150deg, rgba(6, 19, 31, 0.95) 0%, rgba(10, 30, 51, 0.92) 35%, rgba(14, 40, 67, 0.9) 100%);
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(4, 11, 19, 0.6);
  transition: transform var(--transition-speed) var(--transition-easing), border-color var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
}

.platform-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 217, 255, 0.45);
  box-shadow: 0 28px 60px rgba(4, 11, 19, 0.75);
}

.platform-card__header {
  padding: 22px 26px 18px;
  background: radial-gradient(circle, rgba(14, 47, 74, 0.9) 0%, rgba(7, 22, 35, 0.92) 100%);
  border-bottom: 1px solid rgba(0, 217, 255, 0.12);
}

.platform-card__header h5 {
  color: rgba(240, 249, 255, 0.95);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.platform-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 6px 13px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ffe066, #ffd166, #fcbf49);
  color: #0a1e33;
  font-weight: 700;
  font-size: 0.85rem;
}

.platform-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.platform-card__tag {
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(0, 217, 255, 0.12);
  border: 1px solid rgba(0, 217, 255, 0.28);
  color: rgba(226, 242, 255, 0.86);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}

.platform-card__body {
  padding: 24px 26px 20px;
}

.platform-card__text {
  color: rgba(226, 242, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
}

.platform-card__subtitle {
  color: rgba(226, 242, 255, 0.95);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.platform-card__highlight {
  color: #ffd166;
  font-weight: 700;
  letter-spacing: 0.35px;
}

.platform-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.22);
  color: rgba(226, 242, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.platform-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.platform-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 242, 255, 0.7);
  font-size: 0.85rem;
}

.platform-card__list i {
  color: #4ade80;
}

.platform-card__footer {
  padding: 18px 26px 24px;
  background: rgba(6, 20, 33, 0.88);
  border-top: 1px solid rgba(0, 217, 255, 0.15);
}

.platform-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(130deg, #00d9ff 0%, #00b4d8 100%);
  color: #061321;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: transform var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
}

.platform-card__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 217, 255, 0.35);
  color: #061321;
}