/* Font Face Declaration */
@font-face {
    font-family: 'Neo Sans Arabic';
    src: url('../Fonts/alfont_com_NeoSansArabic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Homepage Styles - Futuristic Gaming Design */
:root {
  --color-primary: #050704;
  --color-primary-light: #684bff;
  --color-primary-dark: #050704;
  --color-gold: #684bff;
  --color-gold-light: #acfef8;
  --color-gold-dark: #684bff;
  --color-bg-light: #ebfafd;
  --color-bg-light-light: #f8f9fa;
  --color-text-dark: #ffffff;
  --color-text-light: #ffffff;
  --color-muted: #acfef8;
  --color-button-start: #acfef8;
  --color-button-end: #684bff;
}

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

body {
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: normal;
  background: url('../Images/logos/صورة الرئيسية-01.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--color-text-dark);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-size: 16px; /* Base font size for rem calculations */
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-light);
  box-shadow: 0 2px 20px rgba(104, 75, 255, 0.3);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.nav-logo .logo-svg {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-logo .logo-svg svg {
  width: 120px;
  height: 54px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo .logo-svg:hover svg {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Aqua glimmer effect on hover */
.nav-logo .logo-svg:hover svg path,
.nav-logo .logo-svg:hover svg polygon {
  animation: aquaGlimmer 0.8s ease-in-out;
}

.nav-logo .logo-svg:hover svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) 
          drop-shadow(0 0 20px rgba(0, 255, 255, 0.4))
          drop-shadow(0 0 30px rgba(0, 255, 255, 0.3));
}

@keyframes aquaGlimmer {
  0% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.3) saturate(1.4);
  }
  100% {
    filter: brightness(1) saturate(1);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: absolute;
  left: 35%;
  transform: translateX(-50%);
}

.nav-auth {
  order: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: #050704;
  text-decoration: none;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: #684bff;
}

.login-btn {
  background: #684bff;
  color: #ffffff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 12px !important;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #acfef8;
  color: #050704 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(104, 75, 255, 0.3);
}

/* Profile Dropdown Styles */
.profile-dropdown {
  position: relative;
  display: none;
}

.profile-dropdown.show {
  display: block;
}

.profile-btn {
  background: none;
  color: #684bff;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px;
}

.profile-btn:hover {
  background: none;
  transform: scale(1.05);
}

.profile-btn:hover .profile-text {
  color: #acfef8;
}

.profile-btn:hover .profile-icon {
  fill: #acfef8;
}

.profile-icon {
  width: 50px;
  height: 50px;
  fill: #684bff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.profile-text {
  color: #ffffff;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.dropdown-arrow {
  display: none;
}

.profile-btn.active .dropdown-arrow {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-bg-light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
  border: 1px solid rgba(83, 74, 58, 0.1);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  color: #000000;
  text-decoration: none;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(83, 74, 58, 0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--color-bg-light-light);
  color: #000000;
}

.edit-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  color: #000000;
  text-decoration: none;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(83, 74, 58, 0.05);
}

.edit-profile-btn:hover {
  background: var(--color-bg-light-light);
  color: #000000;
  text-decoration: none;
}

.dropdown-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Main Content */
.main-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6rem 2rem 2rem 2rem;
  text-align: right;
}

.content-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: 2rem;
}

.main-title {
  font-size: 88.6px;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.main-description {
  font-size: 36px;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: normal;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-button-start), var(--color-button-end));
  color: #ffffff;
  text-decoration: none;
  width: 350px;
  height: 113.7px;
  border-radius: 15px;
  font-size: 48px;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(104, 75, 255, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--color-button-end), var(--color-button-start));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(104, 75, 255, 0.6);
}

/* Bottom Section */
.bottom-section {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.bottom-title {
  font-size: 4rem;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  color: var(--color-text-dark);
  text-shadow: 1px 1px 2px rgba(28, 27, 25, 0.1);
  opacity: 0.8;
}

/* Standard Screen Size (1920px x 1080) */
@media (min-width: 1920px) {
  .nav-container {
    max-width: 1600px;
    margin: 0 200px;
  }
  
  .nav-logo .logo-svg svg {
    width: 150px;
    height: 67.5px;
  }
  
  .main-content {
    padding: 8rem 4rem 2rem 4rem;
  }
  
  .content-container {
    max-width: 1000px;
  }
  
  .main-title {
    font-size: 88.6px; /* Keep your custom size */
  }
  
  .main-description {
    font-size: 36px; /* Keep your custom size */
  }
  
  .cta-button {
    width: 350px; /* Keep your custom size */
    height: 113.7px; /* Keep your custom size */
    font-size: 48px; /* Keep your custom size */
  }
  
  .bottom-title {
    font-size: 5rem;
    bottom: 3rem;
    right: 3rem;
  }
}

/* 2K Monitor Support (2560px and above) */
@media (min-width: 2560px) {
  .nav-container {
    max-width: 2000px;
    margin: 0 300px;
  }
  
  .nav-logo .logo-svg svg {
    width: 180px;
    height: 81px;
  }
  
  .main-content {
    padding: 10rem 6rem 3rem 6rem;
  }
  
  .content-container {
    max-width: 1200px;
  }
  
  .main-title {
    font-size: 100px;
  }
  
  .main-description {
    font-size: 42px;
  }
  
  .cta-button {
    width: 400px;
    height: 130px;
    font-size: 54px;
  }
  
  .bottom-title {
    font-size: 6rem;
    bottom: 4rem;
    right: 4rem;
  }
}

/* Ultra-Wide Monitor Support (3440px and above) */
@media (min-width: 3440px) {
  .nav-container {
    max-width: 2800px;
    margin: 0 400px;
  }
  
  .nav-logo .logo-svg svg {
    width: 200px;
    height: 90px;
  }
  
  .main-content {
    padding: 12rem 8rem 4rem 8rem;
  }
  
  .content-container {
    max-width: 1600px;
  }
  
  .main-title {
    font-size: 120px;
  }
  
  .main-description {
    font-size: 48px;
  }
  
  .cta-button {
    width: 450px;
    height: 150px;
    font-size: 60px;
  }
  
  .bottom-title {
    font-size: 7rem;
    bottom: 5rem;
    right: 5rem;
  }
}

/* Tablet and smaller desktop screens */
@media (max-width: 1919px) and (min-width: 769px) {
  .nav-container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    position: static;
    transform: none;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-auth {
    justify-content: center;
  }
  
  .nav-logo .logo-svg svg {
    width: 100px;
    height: 45px;
  }
  
  .main-content {
    padding: 8rem 1rem 2rem 1rem;
    justify-content: center;
    text-align: center;
  }
  
  .content-container {
    margin: 0 auto;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .main-description {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .bottom-title {
    font-size: 2.5rem;
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-logo .logo-svg svg {
    width: 80px;
    height: 36px;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .main-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .bottom-title {
    font-size: 2rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Subtle background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(221, 186, 78, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(83, 74, 58, 0.02) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Custom Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.popup-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.popup-content {
  background: var(--color-bg-light);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  overflow: hidden;
  animation: slideIn 0.3s ease-out;
}

.popup-header {
  background: var(--color-gold);
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
}

.popup-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.popup-body {
  padding: 2rem 1.5rem;
  text-align: center;
}

.popup-body p {
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: normal;
  color: #000000;
  line-height: 1.6;
}

.popup-footer {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.popup-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Neo Sans Arabic', 'Inter', 'Cairo', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-btn.primary {
  background: var(--color-gold);
  color: #ffffff;
}

.popup-btn.primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(221, 186, 78, 0.3);
}

.popup-btn.secondary {
  background: var(--color-bg-light-light);
  color: #000000;
  border: 2px solid rgba(83, 74, 58, 0.2);
}

.popup-btn.secondary:hover {
  background: var(--color-bg-light-dark);
  border-color: var(--color-gold);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive popup */
@media (max-width: 480px) {
  .popup-content {
    width: 95%;
    margin: 1rem;
  }
  
  .popup-header {
    padding: 1rem;
  }
  
  .popup-header h3 {
    font-size: 1.1rem;
  }
  
  .popup-body {
    padding: 1.5rem 1rem;
  }
  
  .popup-body p {
    font-size: 1rem;
  }
  
  .popup-footer {
    padding: 1rem;
    flex-direction: column;
  }
  
  .popup-btn {
    width: 100%;
  }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ======================================== */

/* Mobile First Approach - Base styles for mobile */
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        max-width: 100%;
        margin: 0 1rem;
        padding: 0 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 60px;
        height: 27px;
    }
    
    .nav-links {
        position: static;
        transform: none;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
    }
    
    .nav-auth {
        order: 1;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .login-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .main-content {
        padding: 4rem 1rem 2rem 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .content-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .main-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        white-space: normal;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        height: 3.5rem;
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
    }
    
    .bottom-section {
        position: static;
        margin-top: 2rem;
        text-align: center;
    }
    
    .bottom-title {
        font-size: 1.5rem;
        opacity: 0.7;
    }
    
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .popup-body {
        padding: 1.5rem 1rem;
    }
    
    .popup-body p {
        font-size: 0.875rem;
    }
    
    .popup-footer {
        padding: 1rem;
        flex-direction: column;
    }
    
    .popup-btn {
        width: 100%;
        font-size: 0.875rem;
    }
}

/* Tablet Portrait */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        font-size: 15px;
    }
    
    .nav-container {
        max-width: 100%;
        margin: 0 2rem;
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 80px;
        height: 36px;
    }
    
    .nav-links {
        position: static;
        transform: none;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
    }
    
    .nav-auth {
        order: 1;
        justify-content: center;
    }
    
    .main-content {
        padding: 6rem 2rem 2rem 2rem;
        justify-content: center;
        text-align: center;
    }
    
    .content-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 1.5rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 2.5rem;
        white-space: normal;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-section {
        position: static;
        margin-top: 3rem;
        text-align: center;
    }
    
    .bottom-title {
        font-size: 2rem;
    }
}

/* Tablet Landscape */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    body {
        font-size: 15px;
    }
    
    .nav-container {
        max-width: 1000px;
        margin: 0 3rem;
        padding: 0 1.5rem;
        flex-direction: row;
        gap: 0;
    }
    
    .nav-links {
        position: absolute;
        left: 35%;
        transform: translateX(-50%);
        gap: 3rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 100px;
        height: 45px;
    }
    
    .main-content {
        padding: 6rem 2rem 2rem 2rem;
        justify-content: flex-end;
        text-align: right;
    }
    
    .content-container {
        max-width: 700px;
        margin-left: auto;
        margin-right: 2rem;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 1.5rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 2.5rem;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-section {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
    }
    
    .bottom-title {
        font-size: 3rem;
    }
}

/* Desktop */
@media screen and (min-width: 1200px) and (max-width: 1599px) {
    body {
        font-size: 16px;
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 4rem;
        padding: 0 2rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 120px;
        height: 54px;
    }
    
    .main-content {
        padding: 6rem 2rem 2rem 2rem;
    }
    
    .content-container {
        max-width: 800px;
        margin-left: auto;
        margin-right: 2rem;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 1.5rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 3rem;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-title {
        font-size: 4rem;
    }
}

/* Wide Monitor Support (1600px and above) */
@media screen and (min-width: 1600px) {
    .nav-container {
        max-width: 1800px;
        margin: 0 6rem;
        padding: 0 3rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 150px;
        height: 67.5px;
    }
    
    .main-content {
        padding: 8rem 4rem 2rem 4rem;
    }
    
    .content-container {
        max-width: 1000px;
        margin-left: auto;
        margin-right: 3rem;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 2rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 3.5rem;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-title {
        font-size: 5rem;
        bottom: 3rem;
        right: 3rem;
    }
}

/* Ultra-Wide Monitor Support (1920px and above) */
@media screen and (min-width: 1920px) {
    .nav-container {
        max-width: 2000px;
        margin: 0 8rem;
        padding: 0 4rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 180px;
        height: 81px;
    }
    
    .main-content {
        padding: 10rem 6rem 3rem 6rem;
    }
    
    .content-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: 4rem;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 2rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 4rem;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-title {
        font-size: 6rem;
        bottom: 4rem;
        right: 4rem;
    }
}

/* 2K Monitor Support (2560px and above) */
@media screen and (min-width: 2560px) {
    .nav-container {
        max-width: 2400px;
        margin: 0 10rem;
        padding: 0 5rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 200px;
        height: 90px;
    }
    
    .main-content {
        padding: 12rem 8rem 4rem 8rem;
    }
    
    .content-container {
        max-width: 1600px;
        margin-left: auto;
        margin-right: 5rem;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 2.5rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 4.5rem;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-title {
        font-size: 7rem;
        bottom: 5rem;
        right: 5rem;
    }
}

/* 4K Monitor Support (3840px and above) */
@media screen and (min-width: 3840px) {
    .nav-container {
        max-width: 3600px;
        margin: 0 15rem;
        padding: 0 8rem;
    }
    
    .nav-logo .logo-svg svg {
        width: 250px;
        height: 112.5px;
    }
    
    .main-content {
        padding: 15rem 12rem 6rem 12rem;
    }
    
    .content-container {
        max-width: 2000px;
        margin-left: auto;
        margin-right: 8rem;
    }
    
    .main-title {
        font-size: 88.6px;
        margin-bottom: 3rem;
    }
    
    .main-description {
        font-size: 36px;
        margin-bottom: 5rem;
    }
    
    .cta-button {
        width: 350px;
        height: 113.7px;
        font-size: 48px;
    }
    
    .bottom-title {
        font-size: 8rem;
        bottom: 6rem;
        right: 6rem;
    }
}

/* Admin Link Styling */
.admin-link {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.admin-link:hover {
  background: linear-gradient(135deg, #ee5a24, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  color: white !important;
}
