.gc-page * {box-sizing: border-box;}
.gc-page {
    font-family: "roboto_ltregular";
    line-height: 24px;
    color: #2c2c2c;
    background: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.gc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gc-section-title {
    font-size: clamp(26px, 5vw, 44px);
    text-align: center;
    margin: 64px 0 40px;
    position: relative;
    letter-spacing: 0.02em;
    font-family: Roboto;
    color: #cdc0af;
}
.gc-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
    margin: 35px auto 0;
    border-radius: 2px;
}
.gc-cards-section {
    padding: 10px 0 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}
.gc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.gc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
}
.gc-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.gc-card:hover::before {
    transform: scaleX(1);
}
.gc-card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
height: 460px;
    object-position: top center;
}
.gc-card-image-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14.4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gc-card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 25% 25%, rgba(205,192,175,0.1) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(205,192,175,0.05) 0%, transparent 50%);
    animation: gc-shimmer 3s infinite;
}
@keyframes gc-shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}
.gc-card-content {
    padding: 40px;
    text-align: center;
  }

  .gc-card-title {
font-size: 19px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-family: Roboto;
  }

  .gc-card-description {
    color: #666;
    margin-bottom: 32px;
    line-height: 25px;
    min-height: 80px;
  }

  .gc-card-button {
display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
  color: #000;
  padding: 14px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-family: Roboto;
  }
  .gc-card-button:hover {
    box-shadow: 0 8px 25px rgba(205, 192, 175, 0.3);
    color: #fff;
}
.gc-features-section {
    padding: 10px 0 0 0;
    background: #fff;
    scroll-margin-top: 150px;
  }

  .gc-features-section:nth-child(even) {
    background: #f9f9f9;
  }

  .gc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 48px;
  }

  .gc-feature-card {
    background: #fff;
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(205, 192, 175, 0.08);
    position: relative;
    overflow: hidden;
  }

  .gc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
    transform: scaleX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  }

  .gc-feature-card:hover::before {
    transform: scaleX(1);
  }

  .gc-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(205, 192, 175, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-feature-card:hover .gc-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(205, 192, 175, 0.3);
  }

  .gc-feature-title {
font-size: 19px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-family: Roboto;
  }

  .gc-feature-description {
    color: #666;
    line-height: 25px;
    font-size: 16px;
  }
.gc-corporate-highlight {
    background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
    color: #1a1a1a;
    padding: 64px 48px;
    border-radius: 16px;
    text-align: center;
    margin: 100px 0 0 0;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
    scroll-margin-top: 150px;
  }

  .gc-corporate-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: gc-float 6s ease-in-out infinite;
  }

  @keyframes gc-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
  }

  .gc-corporate-highlight h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .gc-corporate-highlight p {
    font-size: 19.2px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 25px;
  }
  .gc-rules-section {
    padding: 10px 0 80px 0;
    background: #f9f9f9;
    scroll-margin-top: 150px;
  }

  .gc-rules-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .gc-rules-category {
    margin-bottom: 64px;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(205, 192, 175, 0.08);
    scroll-margin-top: 150px;
  }

  .gc-rules-category:last-child {
    margin-bottom: 0;
  }

  .gc-rules-category h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-bottom: 16px;
    letter-spacing: 1px;
    position: relative;
  }

  .gc-rules-category h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
    border-radius: 2px;
  }

  .gc-rules-list {
    list-style: none;
    counter-reset: gc-rule-counter;
    padding-left: 0;
  }

  .gc-rules-list li {
    counter-increment: gc-rule-counter;
    margin-bottom: 8px;
    padding: 17px 24px 17px 56px;
    position: relative;
    line-height: 25px;
    background: rgba(205, 192, 175, 0.03);
    border-radius: 0 8px 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 17px;
  }

  .gc-rules-list li:hover {
    background: rgba(205, 192, 175, 0.06);
    transform: translateX(5px);
  }

  .gc-rules-list li::before {
    content: counter(gc-rule-counter);
    position: absolute;
    left: 16px;
    top: 17px;
    color: #cdc0af;
    font-weight: 700;
    font-size: 17.6px;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cdc0af;
    z-index: 2;
  }

  .gc-rules-list li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-rules-list li a:hover {
    border-bottom-color: #cdc0af;
  }
  .gc-gallery-section {
    padding: 10px 0;
    scroll-margin-top: 150px;
  }

  .gc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .gc-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: auto;
    background: #f8f8f8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }

  .gc-gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  }

  .gc-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gc-gallery-item:hover .gc-gallery-overlay {
    opacity: 1;
  }

  .gc-gallery-overlay i {
    color: white;
    font-size: 32px;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-gallery-item:hover .gc-gallery-overlay i {
    transform: scale(1);
  }
  .gc-button-section {
    text-align: center;
    padding: 40px 0;
    margin: 48px 0;
  }

  .gc-button-section .gc-card-button {
    display: inline-flex;
    padding: 16px 40px;
    font-size: 16px;
  }
  .gc-actions-section {
    padding: 26px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    text-align: center;
    scroll-margin-top: 150px;
  }

  .gc-actions-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 48px 0;
  }

  .gc-action-button {
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 17.6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: inherit;
  }

  .gc-buy-button {
    background: linear-gradient(135deg, #cdc0af 0%, #a89e8c 100%);
    color: #1a1a1a;
    border: 2px solid transparent;
  }

  .gc-buy-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(205, 192, 175, 0.3);
    color: #1a1a1a;
  }

  .gc-balance-button {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #cdc0af;
  }

  .gc-balance-button:hover {
    background: #cdc0af;
    color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(205, 192, 175, 0.3);
  }
  .gc-contact-section {
    padding: 26px 0 80px 0;
    background: #1a1a1a;
    color: #fff;
    scroll-margin-top: 150px;
  }

  .gc-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
  }

  .gc-contact-item {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 280px;
  }

  .gc-contact-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .gc-contact-icon {
    font-size: 48px;
    color: #cdc0af;
    margin-bottom: 24px;
    display: block;
  }

  .gc-contact-label {
    font-size: 14.4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12.8px;
    opacity: 0.8;
    color: rgba(255,255,255,0.8);
  }

  .gc-contact-value {
    font-size: 19.2px;
    font-weight: 600;
    color: #fff;
  }

  .gc-contact-value a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-contact-value a:hover {
    color: #cdc0af;
  }
  @media (max-width: 1200px) {
.gc-card-image {
      height: 340px;
    object-position: top center;
}
    .gc-container {
      padding: 0 20px;
    }
    
    .gc-cards-grid {
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 28.8px;
    }
    
    .gc-features-grid, .gc-gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }
  }

  @media (max-width: 1024px) {
    .gc-cards-grid {
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 24px;
    }
    
    .gc-features-grid, .gc-gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }
    
    .gc-corporate-highlight {
      padding: 56px 40px;
      margin: 48px 0;
    }
  }

  @media (max-width: 768px) {
    .gc-features-grid {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
    }
	
    .gc-cards-grid {
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
    }
	
    .gc-cards-section,
    .gc-rules-section,
    .gc-actions-section,
    .gc-contact-section {
      padding: 10px 0 80px 0;
    }

    .gc-gallery-section {
      padding: 10px 0 10px 0;
    }
    
    .gc-gallery-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .gc-actions-buttons {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    
    .gc-action-button {
      width: 100%;
      max-width: 320px;
    }
    
    .gc-corporate-highlight {
      padding: 40px 32px;
      margin: 40px 0;
    }
    
    .gc-corporate-highlight h1 {
      font-size: 32px;
    }
    
    .gc-rules-category {
      padding: 32px;
      margin-bottom: 32px;
    }
    
    .gc-contact-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      justify-items: center;
    }
    
    .gc-contact-item {
      max-width: 320px;
      width: 100%;
    }
    
    .gc-section-title {
      margin: 48px 0 32px;
    }
    
    .gc-rules-list li {
      padding: 19.2px 19.2px 19.2px 48px;
    }

    .gc-gallery-item {
      height: auto;
    }
  }

  @media (max-width: 480px) {
    .gc-container {
      padding: 0 16px;
    }
    
    .gc-card-content {
      padding: 32px 24px;
    }
    
    .gc-feature-card {
      padding: 32px 24px;
    }
    
    .gc-rules-category {
      padding: 24px;
    }
    
    .gc-rules-list li {
      padding: 16px 16px 16px 60px;
      margin-bottom: 16px;
    }
    
    .gc-corporate-highlight {
      padding: 32px 24px;
    }
    
    .gc-contact-item {
      padding: 32px 24px;
    }
    
    .gc-actions-buttons {
      gap: 16px;
    }
    
    .gc-action-button {
      padding: 16px 32px;
      min-width: 100%;
    }

    .gc-gallery-item {
      height: auto;
    }
.gc-card-image {
      height: 340px;
    object-position: top center;
}
  
  }

  .gc-fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gc-fade-in-up.gc-animate {
    opacity: 1;
    transform: translateY(0);
  }

  .gc-corporate-highlight.gc-fade-in-up {
    opacity: 1;
    transform: translateY(0);
  }

  .gc-corporate-highlight.gc-animate {
    opacity: 1;
    transform: translateY(0);
  }

  [id] {
    scroll-margin-top: 150px;
  }
  .gc-card-description,
  .gc-feature-description {
    word-wrap: break-word;
    hyphens: auto;
  }

  .gc-card-button:focus,
  .gc-action-button:focus {
    outline: 2px solid #cdc0af;
    outline-offset: 2px;
  }
  .fancybox-container {
    z-index: 99999;
  }

  .fancybox-bg {
    background: rgba(0, 0, 0, 0.9);
  }