/* Authors Page CSS - Clean Responsive Design */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        .vision-container-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Header Section */
        .vision-header-section {
            text-align: center;
            margin-bottom: 80px;
            padding: 40px 20px;
            background: linear-gradient(135deg, #0067ce95 0%, #e9ecef 100%);
            border-radius: 20px;
        }

        .vision-main-title {
            font-size: 3.5rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .vision-title-underline {
            width: 120px;
            height: 5px;
            background-color: #007bff;
            margin: 0 auto 30px;
            border-radius: 3px;
        }

        .vision-subtitle-text {
            font-size: 1.4rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
/* Introduction Notice Card */
.ijgtss-intro-section {
  margin: 40px 0;
}

.ijgtss-notice-box {
  background-color: rgba(171, 219, 227, 0.15);
  border: 2px solid rgba(171, 219, 227, 0.5);
  border-radius: 16px;
  padding: 30px 40px;
  position: relative;
  box-shadow: 0 8px 25px rgba(37, 150, 190, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ijgtss-notice-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 150, 190, 0.12);
  border-color: rgba(37, 150, 190, 0.4);
  background-color: rgba(171, 219, 227, 0.2);
}

.ijgtss-notice-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: rgba(37, 150, 190, 1);
  border-radius: 0 3px 3px 0;
}

.ijgtss-notice-box::after {
  content: '📋';
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2rem;
  opacity: 0.7;
}

.ijgtss-notice-text {
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Guidelines Section Header Card */
.ijgtss-guidelines-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 45px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(37, 150, 190, 0.08);
  border: 1px solid rgba(171, 219, 227, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.ijgtss-guidelines-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 150, 190, 0.12);
  border-color: rgba(37, 150, 190, 0.2);
}

/* Section Title */
.ijgtss-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(37, 150, 190, 1);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ijgtss-section-title::before {
  content: '';
  width: 6px;
  height: 60px;
  background-color: rgba(37, 150, 190, 1);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 150, 190, 0.2);
}

.ijgtss-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 21px;
  width: 100px;
  height: 4px;
  background-color: rgba(171, 219, 227, 1);
  border-radius: 2px;
}

.ijgtss-intro-text {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Guideline Cards */
.ijgtss-guideline-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(37, 150, 190, 0.08);
  border: 2px solid rgba(171, 219, 227, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ijgtss-guideline-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: rgba(37, 150, 190, 1);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.ijgtss-guideline-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 150, 190, 0.15);
  border-color: rgba(37, 150, 190, 0.4);
}

.ijgtss-guideline-block:hover::before {
  transform: scaleY(1);
}

.ijgtss-guideline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ijgtss-guideline-title::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: rgba(37, 150, 190, 1);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 150, 190, 0.2);
}

.ijgtss-guideline-text {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Sub-guidelines */
.ijgtss-sub-guideline {
  background-color: rgba(171, 219, 227, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border-left: 4px solid rgba(171, 219, 227, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.ijgtss-sub-guideline:hover {
  border-left-color: rgba(37, 150, 190, 1);
  background-color: rgba(171, 219, 227, 0.15);
  transform: translateX(8px);
}

.ijgtss-sub-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ijgtss-sub-title::before {
  content: '▶';
  color: rgba(37, 150, 190, 1);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.ijgtss-sub-guideline:hover .ijgtss-sub-title::before {
  transform: translateX(5px);
}

/* Enhanced card effects */
.ijgtss-guideline-block:nth-child(even) {
  background: rgba(171, 219, 227, 0.03);
}

.ijgtss-guideline-block:nth-child(even):hover {
  background: #ffffff;
}

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

.ijgtss-page-header {
  animation: slideInFromTop 0.6s ease forwards;
}

.ijgtss-intro-section {
  animation: slideInFromTop 0.6s ease forwards;
  animation-delay: 0.1s;
}

.ijgtss-guidelines-section {
  animation: slideInFromTop 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* Focus states for accessibility */
.ijgtss-guideline-block:focus-within {
  outline: 2px solid rgba(37, 150, 190, 0.5);
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ijgtss-content-wrapper {
    max-width: 900px;
    padding: 0 18px;
  }
  
  .ijgtss-guidelines-section {
    padding: 40px 35px;
  }
}

@media (max-width: 768px) {
  .ijgtss-content-wrapper {
    padding: 0 15px;
  }
  
  .ijgtss-page-header {
    padding: 40px 25px;
    margin: 20px 0;
  }
  
  .ijgtss-main-title {
    font-size: 2.2rem;
  }
  
  .ijgtss-page-subtitle {
    font-size: 1.2rem;
  }
  
  .ijgtss-guidelines-section {
    padding: 35px 25px;
  }
  
  .ijgtss-guideline-block {
    padding: 25px 20px;
  }
  
  .ijgtss-section-title {
    font-size: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .ijgtss-section-title::before {
    width: 40px;
    height: 6px;
  }
  
  .ijgtss-section-title::after {
    left: 0;
    width: 80px;
  }
  
  .ijgtss-notice-box {
    padding: 25px 30px;
  }
  
  .ijgtss-notice-box::after {
    font-size: 1.5rem;
    top: 20px;
    right: 25px;
  }
  
  .ijgtss-sub-guideline {
    padding: 20px;
    margin: 15px 0;
  }
  
  .ijgtss-intro-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ijgtss-content-wrapper {
    padding: 0 12px;
  }
  
  .ijgtss-main-title {
    font-size: 1.9rem;
  }
  
  .ijgtss-page-subtitle {
    font-size: 1.1rem;
  }
  
  .ijgtss-section-title {
    font-size: 1.7rem;
  }
  
  .ijgtss-page-header {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .ijgtss-guidelines-section {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .ijgtss-notice-box {
    padding: 20px 25px;
    border-radius: 12px;
  }
  
  .ijgtss-notice-box::after {
    font-size: 1.2rem;
    top: 18px;
    right: 20px;
  }
  
  .ijgtss-guideline-block {
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .ijgtss-guideline-title {
    font-size: 1.2rem;
  }
  
  .ijgtss-guideline-text {
    font-size: 0.95rem;
  }
  
  .ijgtss-sub-title {
    font-size: 1.1rem;
  }
  
  .ijgtss-intro-text {
    font-size: 1rem;
  }
  
  .ijgtss-notice-text {
    font-size: 1rem;
  }
  
  .ijgtss-sub-guideline {
    padding: 18px;
    border-radius: 10px;
  }
}

@media (max-width: 360px) {
  .ijgtss-content-wrapper {
    padding: 0 10px;
  }
  
  .ijgtss-main-title {
    font-size: 1.7rem;
  }
  
  .ijgtss-page-subtitle {
    font-size: 1rem;
  }
  
  .ijgtss-section-title {
    font-size: 1.5rem;
  }
  
  .ijgtss-page-header {
    padding: 25px 15px;
  }
  
  .ijgtss-guidelines-section {
    padding: 20px 15px;
  }
  
  .ijgtss-notice-box {
    padding: 18px 20px;
  }
  
  .ijgtss-guideline-block {
    padding: 18px 12px;
  }
}

/* Print styles */
@media print {
  .ijgtss-authors-container {
    background: white !important;
  }
  
  .ijgtss-page-header {
    background: rgba(37, 150, 190, 1) !important;
    color: white !important;
    box-shadow: none !important;
  }
  
  .ijgtss-section-title {
    color: rgba(37, 150, 190, 1) !important;
  }
  
  .ijgtss-guideline-block,
  .ijgtss-guidelines-section,
  .ijgtss-notice-box {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .ijgtss-page-header::before,
  .ijgtss-guideline-block::before {
    display: none !important;
  }
}

/* High specificity ensures styles apply correctly */
body .ijgtss-authors-container {
  background-color: #ffffff !important;
}

/* Loading animation for guideline blocks */
.ijgtss-guideline-block {
  animation: slideInFromTop 0.4s ease forwards;
}

.ijgtss-guideline-block:nth-child(1) { animation-delay: 0.1s; }
.ijgtss-guideline-block:nth-child(2) { animation-delay: 0.2s; }
.ijgtss-guideline-block:nth-child(3) { animation-delay: 0.3s; }
.ijgtss-guideline-block:nth-child(4) { animation-delay: 0.4s; }
.ijgtss-guideline-block:nth-child(5) { animation-delay: 0.5s; }