@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.nav-button{
    display: flex;
    color: white;
    padding: 20px;
}

.nav-button:hover{
    color: #ff2020;
    border-bottom: 2px solid #ff2020;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.profile-button {
    display: flex;
    padding: 8px 16px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #ff2020;
    color: #ff2020;
    min-width: 120px;
    width: auto;
    text-decoration: none;
}

/* Results Section */
.results-section {
  padding: 80px 20px;
  background-color: #0f0f11;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  background: linear-gradient(90deg, #ff172e, #ffd000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.results-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.results-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* promijeni sa center na flex-start */
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}
.results-slider {
  overflow: hidden;
  width: 100%;
}

.results-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
  will-change: transform;
  margin: 0;
  padding: 20px 0;
  flex: 1;
  /* ukloni justify-content: center; */
  max-width: none;
}

/* slider arrows */
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 23, 46, 0.1);
  border: none;
  color: #ff172e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  flex-shrink: 0;
  z-index: 1;
}

.slider-arrow:hover {
  background: rgba(255, 23, 46, 0.2);
  transform: scale(1.1);
}

.slider-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.results-grid {
  display: flex;
  gap: 24px;
  /* overflow: hidden; */
  padding: 20px 0;
  transition: transform 0.3s ease;
  flex: 1;
}

.result-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  max-width: 400px;
  background: #1a1a1d;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  /* Dodano za mobilne */
  width: 100%;
}

.result-card:hover {
  transform: translateY(-5px);
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 23, 46, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.result-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
  transform: scale(1.05);
}

.result-stats {
  position: relative;
  z-index: 2;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #ff172e;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-description {
  font-size: 0.9rem;
  color: #8a8a8e;
}
.prof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #cde2ff;
  object-fit: cover;
  margin-left: -16px;
  background: #fff;
}
.prof-avatar:first-child {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .result-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 220px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .results-slider-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    overflow: hidden;
  }
  .results-grid {
    gap: 8px;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
  }
  .result-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .result-image img {
    object-fit: contain;
    background: #1a1a1d;
  }
}
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* ili koliko ti treba */
}

.img-fluid {
  display: block;
  width: 300px;
  height: 300px;
  max-width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
}
.img-fluid {
  background: transparent;
  box-shadow: none;
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.15); */
  /* border-radius: 16px; */
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f11;
    color: #fff;
  }
  
  /* Section Layout */
  .hero {
    padding: 80px 20px;
    background-image: url('/path/to/bg-pattern.png'); /* if needed */
  }
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  @media (min-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  /* Title Styling */
  .hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
  }
  .highlight-purple {
    color: #ffd000;
  }
  
  .gradient-orange {
    background: linear-gradient(to right, #ff172e, #f59e0b); /* crveno-narandžasta */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Paragraph */
  .hero-description {
    margin: 20px 0;
    font-size: 1.125rem;
    color: #cbd5e1;
  }
  
  /* Buttons */
  .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
  }
  .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.2s ease;
  }
  .btn-solid {
    background: #ff172e;
    color: #fff;
  }
  .btn-solid:hover {
    background: #e50914;
  }
  .btn-outline {
    border: 2px solid #ff172e;
    color: #ff172e;
  }
  .btn-outline:hover {
    background: #ff172e;
    color: white;
  }
  .btn-light {
    background: white;
    color: #ff172e;
  }
  
  
  /* Avatars */
  .hero-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .avatars {
    display: flex;
    align-items: center;
  }
  .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
  }
  .avatar-count {
    width: 32px;
    height: 32px;
    background: #ff172e;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    margin-left: -8px;
  }
  .avatar-note {
    font-size: 0.875rem;
    color: #94a3b8;
  }
  
  /* Preview Box */
  .hero-preview {
    position: relative;
    /* background: rgba(255, 23, 46, 0.7); transparentna crvena */
    border-radius: 16px;
    /* padding: 100px; */
    overflow: hidden;
  }
  .preview-bg {
    background-image: url('https://images.pexels.com/photos/4144099/pexels-photo-4144099.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .preview-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .preview-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .preview-content p {
    opacity: 0.9;
    margin-bottom: 20px;
  }
  
  /* Badges */
  .badge {
    position: absolute;
    background-color: #1e1f28;
    color: white;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    z-index: 3;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
  }
  
  /* Top right badge */
  .badge-top-right {
    top: 16px;
    right: 16px;
    border-bottom-left-radius: 10px;
  }
  
  /* Bottom left badge */
  .badge-bottom-left {
    bottom: 20px;
    left: 16px;
    border-top-right-radius: 10px;
  }
  
  /* Naglasak na brojevima */
  .badge strong {
    color: #fbbf24; /* zlatna ostaje za gornji badge */
  }
  
  .badge-bottom-left strong {
    color: #ff5f73; /* ružičasto-crvena za donji badge */
  }


/* Base Pricing Styles */
:root {
    /* Color System */
    --color-primary: #ff172e;          /* Discord Blue */
    --color-primary-dark: #4752c4;
    --color-primary-light: #7983f5;
    --color-secondary: #24D154;        /* Success Green */
    --color-accent: #fbbf24;           /* Accent Pink */
    --color-warning: #FFC857;          /* Warning Yellow */
    --color-error: #ED4245;            /* Error Red */
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-gray-100: #F6F6F6;
    --color-gray-200: #E2E2E2;
    --color-gray-300: #CCCCCC;
    --color-gray-400: #ADADAD;
    --color-gray-500: #8E8E8E;
    --color-gray-600: #6F6F6F;
    --color-gray-700: #525252;
    --color-gray-800: #333333;
    --color-gray-900: #1F1F1F;
    --color-black: #0A0A0A;
    
    /* Spacing (8px system) */
    --space-2: 2px;
    --space-4: 4px;
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    
    /* Fonts */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;

    --bg-color: #0f0f11;
    --primary-color: #ff172e;
    --text-color: #ffffff;
    --hover-color: #ffe5e7;
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-img {
  height: 65px;
  width: auto;
}

.logo i {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown > a {
  padding: 0.5rem 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1rem 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 0.5rem 1.5rem;
  display: block;
}

.auth-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: var(--bg-color);
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links.active {
      display: flex;
  }
  
  .dropdown-content {
      position: static;
      box-shadow: none;
      border: none;
      padding: 0;
      margin-left: 1.5rem;
  }
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    /* margin-bottom: var(--space-64); */
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--space-16);
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
  }
  
  .pricing-description {
    font-size: 18px;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
  }
  
  /* Pricing Grid */

  /* Pricing Card */
  .pricing-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-32);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-card.popular {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
  }
  
  .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
  }
  
  .popular-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: var(--space-4) var(--space-32);
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
  }
  
  /* Card Header */
  .card-header {
    margin-bottom: var(--space-24);
  }
  
  .card-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-8);
    color: var(--color-gray-900);
  }
  
  .plan-description {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.4;
  }
  
  /* Pricing */
  .pricing {
    margin-bottom: var(--space-32);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
  }
  
  .price-discount {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-right: var(--space-8);
  }
  
  .price-original {
    font-size: 20px;
    color: var(--color-gray-500);
    text-decoration: line-through;
    margin-right: var(--space-4);
  }
  
  .price-period {
    font-size: 16px;
    color: var(--color-gray-600);
  }
  
  /* Features List */
  .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-32) 0;
    flex-grow: 1;
  }
  
  .feature-item {
    margin-bottom: var(--space-16);
    padding-left: var(--space-24);
    position: relative;
    font-size: 16px;
    color: var(--color-gray-800);
    line-height: 1.5;
  }
  
  .feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
  }
  
  .feature-item.unavailable {
    color: var(--color-gray-500);
  }
  
  .feature-item.unavailable::before {
    content: "×";
    color: var(--color-gray-400);
  }
  
  /* CTA Button */
  .cta-button {
    background-color: var(--color-gray-100);
    color: var(--color-gray-800);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--space-16) var(--space-32);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
  }
  
  .cta-button:hover {
    background-color: var(--color-gray-200);
  }
  
  .cta-button.primary {
    background-color: var(--color-primary);
    color: white;
  }
  
  .cta-button.primary:hover {
    background-color: var(--color-primary-dark);
  }
  
  /* Discord Community Section */
  .discord-community {
    background: linear-gradient(135deg, #5865F2 0%, #8590FF 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--space-48);
    color: white;
    margin-bottom: var(--space-64);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-32);
  }
  
  .discord-content {
    flex: 1;
  }
  
  .discord-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--space-16);
    line-height: 1.2;
  }
  
  .discord-content p {
    font-size: 18px;
    margin-bottom: var(--space-32);
    opacity: 0.9;
    line-height: 1.5;
    max-width: 500px;
  }
  
  .discord-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
  }
  
  .discord-button {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    background-color: white;
    color: black;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--space-12) var(--space-24);
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .discord-icon {
    width: 24px;
    height: 24px;
  }
  
  .discord-icon path {
    fill: black;
  }
  
  .learn-more {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
  }
  
  .learn-more:hover {
    opacity: 0.8;
  }
  
  .discord-users {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
  }
  
  .avatar-stack {
    display: flex;
    margin-right: var(--space-16);
  }
  
  .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    background-color: rgba(255, 255, 255, 0.2);
    margin-left: -16px;
  }
  
  .avatar:first-child {
    margin-left: 0;
    background-color: #FFB8EB;
  }
  
  .avatar:nth-child(2) {
    background-color: #A5B4FC;
  }
  
  .avatar:nth-child(3) {
    background-color: #93C5FD;
  }
  
  .avatar:nth-child(4) {
    background-color: #BAE6FD;
  }
  
  .discord-users p {
    font-size: 16px;
    text-align: center;
  }


  
  /* Responsive Design */
  @media (max-width: 1024px) {

    .discord-community {
      flex-direction: column;
      text-align: center;
      padding: var(--space-32);
    }
    
    .discord-content p {
      margin: 0 auto var(--space-32);
    }
    
    .discord-buttons {
      justify-content: center;
    }

  }
  
  .footer-bg {
    background-color: #1a1a1d;
  }