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

body {
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

:root {
  --primary-accent: #6e00ff;
  --secondary-accent: #ff2d75;
  --tertiary-accent: #00e1ff;
  --dark-text: #1a1a2e;
  --light-text: #f8f9fa;
  --section-padding: 4rem 2rem;
}

.cn-header-section {
  position: relative;
  height: 30vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
  overflow: hidden;
}

.cn-header-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  z-index: -1;
}

.cn-header-backdrop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../cn-images/cn-bg-image-1.jpg') no-repeat center/cover;
  opacity: 0.15;
}

.cn-header-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: var(--light-text);
  z-index: 1;
}

.cn-header-title {
  font-family: 'Alegreya SC', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: fadeInDown 1s ease-out;
}

.cn-header-bonuses {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cn-bonus-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.cn-bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.15);
}

.cn-bonus-icon {
  font-size: 2.5rem;
  color: var(--tertiary-accent);
  margin-bottom: 1rem;
}

.cn-bonus-title {
  font-family: 'Alegreya SC', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.cn-bonus-value {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--secondary-accent);
}

.cn-bonus-details {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cn-header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  color: var(--light-text);
  font-family: 'Alegreya SC', serif;
  font-size: 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(110,0,255,0.3);
  animation: pulse 2s infinite;
}

.cn-header-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(110,0,255,0.4);
}

.cn-header-button i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cn-header-button:hover i {
  transform: translateX(5px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110,0,255,0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(110,0,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110,0,255,0);
  }
}

@media (max-width: 1024px) {
  .cn-header-section {
    height: auto;
  }  
  .cn-header-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .cn-header-section {
    min-height: 800px;
  }
  .cn-header-title {
    font-size: 2.5rem;
  }
  .cn-bonus-card {
    width: 220px;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .cn-header-title {
    font-size: 2rem;
  }
  .cn-header-bonuses {
    flex-direction: column;
    align-items: center;
  }
  .cn-bonus-card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 320px) {
  .cn-header-title {
    font-size: 1.8rem;
  }
  .cn-header-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

.cn-platform-showcase {
  padding: var(--section-padding);
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}

.cn-platform-card {
  width: 100%;
  max-width: 800px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cn-platform-card:hover {
  transform: perspective(1000px) rotateY(5deg);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.2);
}

.cn-platform-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #ff2d75;
  color: white;
  padding: 0.5rem 2rem;
  font-family: 'Alegreya SC', serif;
  font-size: 0.9rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.cn-platform-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #6e00ff 0%, #8e2de2 100%);
}

.cn-platform-logo {
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.cn-platform-rating {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.cn-rating-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-right: 0.5rem;
}

.cn-rating-value {
  font-family: 'Alegreya SC', serif;
  color: white;
  font-weight: bold;
  margin-right: 0.5rem;
}

.cn-rating-icon {
  color: #ffcc00;
  font-size: 1.2rem;
}

.cn-platform-bonuses {
  padding: 2rem;
  background: #f9f5ff;
  border-bottom: 1px dashed #d9c6ff;
}

.cn-bonus-heading {
  font-family: 'Alegreya SC', serif;
  color: #6e00ff;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}

.cn-bonus-list {
  list-style-type: none;
}

.cn-bonus-item {
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  padding-left: 2rem;
}

.cn-bonus-item::before {
  content: '';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #6e00ff;
  border-radius: 50%;
}

.cn-platform-features {
  padding: 2rem;
}

.cn-features-heading {
  font-family: 'Alegreya SC', serif;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}

.cn-features-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cn-feature-item {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.cn-feature-item:hover {
  background: #eef2ff;
  transform: translateX(5px);
}

.cn-feature-icon {
  color: #6e00ff;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.cn-platform-footer {
  padding: 1.5rem 2rem;
  background: #f0f2f5;
  text-align: center;
}

.cn-age-warning {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.cn-platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #6e00ff, #8e2de2);
  color: white;
  font-family: 'Alegreya SC', serif;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(110,0,255,0.3);
  width: 100%;
  max-width: 300px;
}

.cn-platform-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110,0,255,0.4);
}

.cn-platform-button i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cn-platform-button:hover i {
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .cn-platform-card {
    max-width: 600px;
  }
  .cn-feature-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .cn-platform-header {
    padding: 1.5rem 1rem;
  }
  .cn-platform-bonuses, 
  .cn-platform-features {
    padding: 1.5rem;
  }
  .cn-bonus-heading,
  .cn-features-heading {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .cn-platform-badge {
    right: -35px;
    font-size: 0.7rem;
    padding: 0.3rem 1.5rem;
  }
  .cn-platform-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.cn-responsibility-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
  overflow: hidden;
  isolation: isolate;
}

.cn-responsibility-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../cn-images/cn-bg-image-2.jpg') no-repeat center/cover;
  z-index: -1;
  opacity: 0.7;
}

.cn-responsibility-backdrop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(110,0,255,0.1) 0%, rgba(0,225,255,0.05) 100%);
}

.cn-responsibility-content {
  max-width: 900px;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  animation: fadeInUp 1s ease-out;
}

.cn-responsibility-title {
  font-family: 'Alegreya SC', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #6e00ff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cn-partner-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cn-partner-link {
  background: #00e1ff;
  padding: 0.9rem;
  border-radius: 0.7rem;
  transition: transform 0.3s ease;
}

.cn-partner-link:hover {
  transform: translateY(-5px) scale(1.05);
}

.cn-partner-logo {
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.cn-partner-link:hover .cn-partner-logo {
  filter: grayscale(0%) drop-shadow(0 5px 10px rgba(110,0,255,0.2));
}

.cn-disclaimer-text {
  margin-bottom: 3rem;
}

.cn-disclaimer-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.cn-disclaimer-text p:nth-child(2) {
  background: rgba(255,45,117,0.05);
  padding: 1.5rem;
  border-left: 4px solid #ff2d75;
  border-radius: 0 8px 8px 0;
}

.cn-additional-partners {
  text-align: center;
}

.cn-partners-heading {
  font-family: 'Alegreya SC', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #1a1a2e;
}

.cn-partner-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cn-partner-item {
  background: #00e1ff;
  padding: 0.9rem;
  border-radius: 0.7rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.cn-partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cn-partner-image {
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.cn-partner-item:hover .cn-partner-image {
  filter: grayscale(0%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cn-responsibility-content {
    padding: 2rem;
  }
  .cn-responsibility-title {
    font-size: 2.5rem;
  }
  .cn-partner-logos {
    gap: 1.5rem;
  }
  .cn-partner-logo {
    width: 140px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .cn-responsibility-content {
    padding: 1.5rem;
  }
  .cn-responsibility-title {
    font-size: 2rem;
  }
  .cn-partner-logos {
    flex-direction: column;
    align-items: center;
  }
  .cn-disclaimer-text p {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .cn-responsibility-title {
    font-size: 1.8rem;
  }
  .cn-partner-image {
    width: 100px;
    height: 50px;
  }
}

.cn-footer-section {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  padding: 3rem 2rem;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.cn-footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 1;
}

.cn-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cn-footer-block {
  flex: 1 1 300px;
  padding: 1.5rem;
}

.cn-footer-responsibility {
  border-left: 3px solid #00e1ff;
  position: relative;
}

.cn-footer-icon {
  font-size: 2rem;
  color: #00e1ff;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.cn-footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #b8c2cc;
}

.cn-footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-left: 3px solid #ff2d75;
  border-right: 3px solid #ff2d75;
}

.cn-footer-link {
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'Alegreya SC', serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.cn-footer-link:hover {
  color: #ff2d75;
  transform: translateX(5px);
}

.cn-footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff2d75;
  transition: width 0.3s ease;
}

.cn-footer-link:hover::after {
  width: 100%;
}

.cn-footer-contact {
  color: #b8c2cc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.cn-footer-contact:hover {
  color: #6e00ff;
}

.cn-footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  border-right: 3px solid #6e00ff;
}

.cn-copyright-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #b8c2cc;
}

.cn-footer-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(110,0,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #b8c2cc;
  border: 1px solid rgba(110,0,255,0.3);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cn-footer-container {
    flex-direction: column;
    gap: 1rem;
  }
  .cn-footer-block {
    flex: 1 1 auto;
    border: none !important;
    padding: 1rem 0;
    text-align: center;
  }
  .cn-footer-links {
    border-top: 3px solid #ff2d75;
    border-bottom: 3px solid #ff2d75;
  }
  .cn-footer-copyright {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cn-footer-section {
    padding: 2rem 1rem;
  }
  .cn-footer-text {
    font-size: 0.85rem;
  }
}

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

body {
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

:root {
  --primary-accent: #6e00ff;
  --secondary-accent: #ff2d75;
  --tertiary-accent: #00e1ff;
  --dark-text: #1a1a2e;
  --light-text: #f8f9fa;
  --section-padding: 4rem 2rem;
}

.cn-age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease-out;
}

.cn-age-modal {
  max-width: 600px;
  width: 100%;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.cn-age-modal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(110,0,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.cn-age-icon {
  font-size: 3rem;
  color: #00e1ff;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.cn-age-title {
  font-family: 'Alegreya SC', serif;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cn-age-text {
  color: #b8c2cc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cn-age-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cn-age-confirm {
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #00e1ff, #6e00ff);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Alegreya SC', serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,225,255,0.3);
}

.cn-age-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,225,255,0.4);
}

.cn-age-decline {
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-family: 'Alegreya SC', serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cn-age-decline:hover {
  background: rgba(255,45,117,0.3);
  transform: translateY(-3px);
}

.cn-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
  padding: 1.5rem 2rem;
  z-index: 9998;
  display: flex;
  justify-content: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  animation: slideUp 0.5s ease-out;
}

.cn-cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cn-cookie-text {
  color: #b8c2cc;
  flex: 1 1 300px;
  line-height: 1.7;
}

.cn-cookie-link {
  color: #00e1ff;
  text-decoration: none;
}

.cn-cookie-link:hover {
  text-decoration: underline;
}

.cn-cookie-accept {
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, #6e00ff, #ff2d75);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Alegreya SC', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cn-cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(110,0,255,0.3);
}

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

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .cn-age-modal {
    padding: 2rem 1.5rem;
  }
  .cn-age-title {
    font-size: 1.8rem;
  }
  .cn-age-buttons {
    gap: 1rem;
  }
  .cn-age-confirm,
  .cn-age-decline {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cn-age-modal {
    padding: 1.5rem 1rem;
  }
  .cn-age-title {
    font-size: 1.5rem;
  }
  .cn-age-text {
    font-size: 0.9rem;
  }
  .cn-cookie-consent {
    padding: 1rem;
  }
  .cn-cookie-text {
    font-size: 0.9rem;
  }
  .cn-cookie-accept {
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 320px) {
  .cn-age-buttons {
    flex-direction: column;
  }
  .cn-age-confirm,
  .cn-age-decline {
    width: 100%;
  }
}

.cn-page-cookie-policy {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.cn-page-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cn-page-title {
  font-family: 'Alegreya SC', serif;
  font-size: 2.5rem;
  color: #6e00ff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cn-page-title i {
  font-size: 2.2rem;
}

.cn-page-content {
  margin-bottom: 3rem;
}

.cn-page-policy-point {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #e2e8f0;
}

.cn-page-policy-point:last-child {
  border-bottom: none;
}

.cn-page-point-title {
  font-family: 'Alegreya SC', serif;
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.cn-page-point-text {
  font-family: 'Mulish', sans-serif;
  line-height: 1.7;
  color: #4a5568;
}

.cn-page-contact {
  background-color: #f5f3ff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.cn-page-contact a {
  color: #6e00ff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}

.cn-page-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cn-page-container {
      padding: 2rem;
  }
  .cn-page-title {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .cn-page-cookie-policy {
      padding: 2rem 1rem;
  }
  .cn-page-title {
      font-size: 1.7rem;
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
  }
  .cn-page-point-title {
      font-size: 1.2rem;
  }
}

.cn-page-privacy-section {
  padding: 4rem 2rem;
  background-color: #f5f3ff;
  min-height: 100vh;
}

.cn-page-privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(110, 0, 255, 0.1);
}

.cn-page-privacy-header {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #6e00ff 0%, #8e2de2 100%);
  color: white;
}

.cn-page-privacy-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.cn-page-privacy-title {
  font-family: 'Alegreya SC', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.cn-page-privacy-update {
  font-family: 'Mulish', sans-serif;
  opacity: 0.9;
  font-size: 0.9rem;
}

.cn-page-privacy-content {
  padding: 3rem;
}

.cn-page-privacy-point {
  margin-bottom: 2.5rem;
}

.cn-page-point-heading {
  font-family: 'Alegreya SC', serif;
  font-size: 1.4rem;
  color: #6e00ff;
  margin-bottom: 1rem;
}

.cn-page-point-description {
  font-family: 'Mulish', sans-serif;
  line-height: 1.8;
  color: #4a5568;
}

.cn-page-privacy-footer {
  padding: 1.5rem;
  text-align: center;
  background-color: #f8f9fa;
  border-top: 1px solid #e2e8f0;
}

.cn-page-privacy-footer a {
  color: #6e00ff;
  text-decoration: none;
  font-weight: 500;
}

.cn-page-privacy-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cn-page-privacy-content {
      padding: 2rem;
  }
  .cn-page-privacy-header {
      padding: 2rem;
  }
  .cn-page-privacy-title {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .cn-page-privacy-section {
      padding: 2rem 1rem;
  }
  .cn-page-point-heading {
      font-size: 1.2rem;
  }
}