:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Grey/Black */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f5f5f5;
    --bg-dark-section: #1A1A1A;
    --border-color: #e0e0e0;
}

/* 🚨 Desktop padding-top for fixed header */
.page-resources-game-ok365-security-guide {
    padding-top: 10px; /* Adjusted to prevent overlap with fixed header */
    color: var(--text-light); /* Default text color for dark body background */
}

.page-resources-game-ok365-security-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Ensure content is not covered by fixed header */
  background: var(--secondary-color);
}

.page-resources-game-ok365-security-guide__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-game-ok365-security-guide__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-game-ok365-security-guide__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-game-ok365-security-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-resources-game-ok365-security-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-resources-game-ok365-security-guide__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-game-ok365-security-guide__video-link:hover .page-resources-game-ok365-security-guide__video-overlay {
  opacity: 1;
}

.page-resources-game-ok365-security-guide__video-click-hint {
  color: var(--text-light);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.8); /* Using primary color with transparency */
  border-radius: 5px;
  white-space: nowrap;
}

.page-resources-game-ok365-security-guide__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-resources-game-ok365-security-guide__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-resources-game-ok365-security-guide__play-now-button:hover {
  background: #E6C200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-game-ok365-security-guide__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-game-ok365-security-guide__title-section {
    background: var(--secondary-color);
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
}

.page-resources-game-ok365-security-guide__title-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-game-ok365-security-guide__main-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.page-resources-game-ok365-security-guide__title-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
}

.page-resources-game-ok365-security-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-game-ok365-security-guide__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-game-ok365-security-guide__cta-button:hover {
    background: #E6C200;
    transform: translateY(-2px);
}

.page-resources-game-ok365-security-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-resources-game-ok365-security-guide__dark-bg {
    background: var(--secondary-color);
    color: var(--text-light);
}

.page-resources-game-ok365-security-guide__light-bg {
    background: var(--bg-light);
    color: var(--text-dark);
}

.page-resources-game-ok365-security-guide__section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-game-ok365-security-guide__section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.page-resources-game-ok365-security-guide__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.page-resources-game-ok365-security-guide p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit; /* Inherit color from parent section */
}

.page-resources-game-ok365-security-guide__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-resources-game-ok365-security-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-resources-game-ok365-security-guide__faq-section {
    padding: 60px 20px;
}

.page-resources-game-ok365-security-guide__faq-list {
    margin-top: 40px;
}

.page-resources-game-ok365-security-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-resources-game-ok365-security-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 15px;
  opacity: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-game-ok365-security-guide__faq-item.active .page-resources-game-ok365-security-guide__faq-answer {
  max-height: 2000px !important; /* 🚨 Using !important */
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--bg-light);
  border-radius: 0 0 5px 5px;
}

.page-resources-game-ok365-security-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-game-ok365-security-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-game-ok365-security-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-game-ok365-security-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  pointer-events: none;
}

.page-resources-game-ok365-security-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-game-ok365-security-guide__faq-item.active .page-resources-game-ok365-security-guide__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* Brand Section */
.page-resources-game-ok365-security-guide__brand-section {
    padding: 60px 20px;
}

.page-resources-game-ok365-security-guide__brand-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-game-ok365-security-guide__brand-item {
    background: rgba(255, 255, 255, 0.08); /* Light transparent background */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-game-ok365-security-guide__brand-item:hover {
    transform: translateY(-5px);
}

.page-resources-game-ok365-security-guide__brand-item-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-game-ok365-security-guide__brand-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #cccccc;
}

/* Blog Section */
.page-resources-game-ok365-security-guide__blog-section {
    padding: 60px 20px;
}

.page-resources-game-ok365-security-guide__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-game-ok365-security-guide__blog-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-game-ok365-security-guide__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-game-ok365-security-guide__blog-link {
    text-decoration: none;
    display: block;
    color: var(--text-dark);
}

.page-resources-game-ok365-security-guide__blog-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-resources-game-ok365-security-guide__blog-item-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 20px 10px 20px;
    color: var(--primary-color);
    line-height: 1.4;
}

.page-resources-game-ok365-security-guide__blog-item-excerpt {
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 20px 15px 20px;
    color: #666666;
}

.page-resources-game-ok365-security-guide__blog-item-date {
    display: block;
    font-size: 0.85em;
    color: #999999;
    margin: 0 20px 20px 20px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-game-ok365-security-guide__main-title {
        font-size: 2.8em;
    }
    .page-resources-game-ok365-security-guide__section-title {
        font-size: 2.2em;
    }
    .page-resources-game-ok365-security-guide__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-game-ok365-security-guide {
        padding-top: 10px !important; /* Mobile fixed header adjustment */
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-game-ok365-security-guide__video-section {
      padding-top: 10px !important;
      padding-left: 15px;
      padding-right: 15px;
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
    }
    
    .page-resources-game-ok365-security-guide__video-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 0;
      padding-right: 0;
      overflow: hidden !important;
    }
    
    .page-resources-game-ok365-security-guide__video-link {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
    
    .page-resources-game-ok365-security-guide__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      border-radius: 4px;
      overflow: hidden !important;
    }
    
    .page-resources-game-ok365-security-guide__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      border-radius: 4px;
      object-fit: contain;
    }
    
    .page-resources-game-ok365-security-guide__video-cta {
      margin-top: 20px;
      padding-left: 15px;
      padding-right: 15px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    
    .page-resources-game-ok365-security-guide__play-now-button {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding: 12px 30px !important;
      font-size: 16px !important;
      white-space: normal !important;
      word-wrap: break-word !important;
    }
    
    .page-resources-game-ok365-security-guide__video-click-hint {
      font-size: 14px !important;
      padding: 8px 16px !important;
    }

    .page-resources-game-ok365-security-guide__title-section {
        padding: 50px 15px;
    }
    .page-resources-game-ok365-security-guide__main-title {
        font-size: 2em;
    }
    .page-resources-game-ok365-security-guide__title-description {
        font-size: 1em;
    }
    .page-resources-game-ok365-security-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-game-ok365-security-guide__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-game-ok365-security-guide__content-area,
    .page-resources-game-ok365-security-guide__faq-section,
    .page-resources-game-ok365-security-guide__brand-section,
    .page-resources-game-ok365-security-guide__blog-section {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-game-ok365-security-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-game-ok365-security-guide__sub-title {
        font-size: 1.4em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-resources-game-ok365-security-guide p {
        font-size: 1em;
    }

    .page-resources-game-ok365-security-guide__image {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-resources-game-ok365-security-guide__faq-question {
      padding: 15px;
      flex-wrap: wrap;
    }
    
    .page-resources-game-ok365-security-guide__faq-question h3 {
      font-size: 15px;
      margin-bottom: 0;
      width: calc(100% - 40px);
    }
    
    .page-resources-game-ok365-security-guide__faq-toggle {
      margin-left: 10px;
      width: 24px;
      height: 24px;
      font-size: 20px;
    }
    
    .page-resources-game-ok365-security-guide__faq-answer {
      padding: 0 15px;
    }
    
    .page-resources-game-ok365-security-guide__faq-item.active .page-resources-game-ok365-security-guide__faq-answer {
      padding: 15px !important;
    }

    .page-resources-game-ok365-security-guide__brand-content {
        grid-template-columns: 1fr;
    }

    .page-resources-game-ok365-security-guide__blog-list {
        grid-template-columns: 1fr;
    }
    .page-resources-game-ok365-security-guide__blog-item-title {
        font-size: 1.2em;
    }
    .page-resources-game-ok365-security-guide__blog-item-excerpt {
        font-size: 0.9em;
    }
}