*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Serif', serif;
  line-height: 1.6;
  color: #1a1a2e;
}

:root {
  --neon-cyan: #08f7fe;
  --neon-pink: #fe53bb;
  --deep-purple: #2a0a4a;
  --electric-blue: #00f5d4;
  --alert-red: #ff2e4d;
}

.ram-topbar-wrapper {
  position: relative;
  z-index: 100;
}

.ram-topbar-alert {
  background-color: var(--alert-red);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(255, 46, 77, 0.4);
  animation: pulseAlert 2s infinite alternate;
}

@keyframes pulseAlert {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

.ram-header-core {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: linear-gradient(135deg, var(--deep-purple) 0%, #0f0a1e 100%);
}

.ram-header-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ram-header-brand h1 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.ram-header-navigation {
  display: flex;
  gap: 25px;
}

.ram-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.ram-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ram-nav-link i {
  font-size: 1.2rem;
  color: var(--electric-blue);
}

@media (max-width: 1024px) {
  .ram-header-core {
    padding: 15px 3%;
  }
}

@media (max-width: 768px) {
  .ram-header-brand h1 {
    font-size: 1.5rem;
  }
  
  .ram-header-navigation {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .ram-header-core {
    flex-direction: column;
    gap: 15px;
    padding: 15px 5%;
  }
  
  .ram-topbar-alert p {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .ram-header-brand {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .ram-header-navigation {
    width: 100%;
    justify-content: space-around;
  }
}

.ram-platforms-showcase {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background-image: url('../ram-image/ram-background-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  isolation: isolate;
}

.ram-platforms-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(10, 25, 47, 0.9) 0%, rgba(62, 11, 71, 0.8) 100%);
  z-index: -1;
  mix-blend-mode: multiply;
}

.ram-platforms-content {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ram-platforms-heading {
  font-family: 'Zilla Slab', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f0f8ff;
  margin-bottom: 25px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ram-platforms-description {
  font-size: 1.1rem;
  color: #e0e9ff;
  max-width: 700px;
  margin: 0 auto;
}

.ram-platforms-description p {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .ram-platforms-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .ram-platforms-showcase {
    height: 70vh;
    background-attachment: scroll;
  }
  
  .ram-platforms-heading {
    font-size: 2rem;
  }
  
  .ram-platforms-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ram-platforms-showcase {
    height: 60vh;
    min-height: 400px;
  }
  
  .ram-platforms-heading {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 320px) {
  .ram-platforms-heading {
    font-size: 1.5rem;
  }
  
  .ram-platforms-description p {
    margin-bottom: 15px;
  }
}

.ram-perks-display {
  background-color: #f8f9ff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.ram-perks-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #ff00aa, #00f5d4, #7700ff);
}

.ram-perks-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ram-perks-card {
  background: white;
  border-radius: 12px;
  padding: 40px 25px;
  width: 200px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.ram-perks-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00f5d4, #7700ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ram-perks-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ram-perks-card:hover::after {
  transform: scaleX(1);
}

.ram-perks-icon {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7700ff, #00f5d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ram-perks-title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  color: #1a1a2e;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ram-perks-container {
    gap: 25px;
  }
  
  .ram-perks-card {
    width: 180px;
    padding: 35px 20px;
  }
}

@media (max-width: 768px) {
  .ram-perks-display {
    padding: 60px 20px;
  }
  
  .ram-perks-container {
    gap: 20px;
  }
  
  .ram-perks-card {
    width: 160px;
    padding: 30px 15px;
  }
  
  .ram-perks-icon {
    font-size: 36px;
  }
  
  .ram-perks-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ram-perks-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .ram-perks-card {
    width: 100%;
    max-width: 250px;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
  }
  
  .ram-perks-icon {
    margin-bottom: 0;
    font-size: 32px;
    flex-shrink: 0;
  }
}

@media (max-width: 320px) {
  .ram-perks-card {
    padding: 20px 15px;
  }
  
  .ram-perks-title {
    font-size: 1rem;
  }
}

.ram-platform-highlight {
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.ram-platform-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ram-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ram-platform-logo {
  padding: 30px;
  text-align: center;
  background-color: #f8f9ff;
  border-bottom: 1px solid #e0e5ff;
}

.ram-platform-logo img {
  height: 50px;
  object-fit: contain;
}

.ram-platform-bonus {
  padding: 25px;
  background: linear-gradient(90deg, #00f5d4, #7700ff);
  color: white;
}

.ram-bonus-title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.ram-bonus-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.ram-platform-features {
  padding: 25px;
  list-style: none;
}

.ram-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #2a2a3c;
}

.ram-feature-icon {
  color: #00f5d4;
  font-size: 1.3rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.ram-platform-rating {
  padding: 0 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ram-stars {
  color: #ffcc00;
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.ram-rating-text {
  font-size: 0.9rem;
  color: #555;
}

.ram-platform-link {
  display: block;
  width: calc(100% - 50px);
  margin: 0 auto 25px;
  padding: 15px;
  background: linear-gradient(90deg, #ff00aa, #7700ff);
  color: white;
  border-radius: 8px;
  font-family: 'Zilla Slab', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.ram-platform-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(119, 0, 255, 0.3);
  color: white;
}

@media (max-width: 768px) {
  .ram-platform-highlight {
    padding: 40px 20px;
  }
  
  .ram-bonus-title {
    font-size: 1.2rem;
  }
  
  .ram-platform-logo {
    padding: 20px;
  }
  
  .ram-platform-logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .ram-platform-bonus {
    padding: 20px;
  }
  
  .ram-platform-features {
    padding: 20px;
  }
  
  .ram-feature-item {
    font-size: 0.9rem;
  }
  
  .ram-platform-link {
    width: calc(100% - 40px);
    padding: 12px;
    font-size: 1rem;
  }
}

.ram-responsibility-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  isolation: isolate;
  overflow: hidden;
}

.ram-responsibility-background {
  position: absolute;
  inset: 0;
  background-image: url('../ram-image/ram-background-img-2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  filter: brightness(0.4);
}

.ram-responsibility-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 247, 254, 0.1) 0%, rgba(254, 83, 187, 0.1) 100%);
  z-index: -1;
}

.ram-responsibility-content {
  max-width: 1000px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInScale 0.8s ease-out forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ram-disclaimer-block {
  margin-bottom: 40px;
  text-align: center;
}

.ram-disclaimer-title {
  font-family: 'Zilla Slab', serif;
  font-size: 2.2rem;
  color: #2a0a4a;
  margin-bottom: 25px;
  font-weight: 700;
}

.ram-disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px;
}

.ram-disclaimer-text p {
  margin-bottom: 20px;
}

.ram-partner-highlight {
  color: #ff2e4d;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ram-partner-highlight:hover {
  color: #fe53bb;
  text-decoration: underline;
}

.ram-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.ram-disclaimer-partnerlink {
  background: #763bc4;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  filter: grayscale(30%);
  opacity: 0.9;
}

.ram-disclaimer-partnerlink:hover {
  transform: translateY(-5px);
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .ram-responsibility-section {
    min-height: 500px;
  }
  
  .ram-disclaimer-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .ram-responsibility-content {
    padding: 30px;
  }
  
  .ram-disclaimer-title {
    font-size: 1.8rem;
  }
  
  .ram-disclaimer-text {
    font-size: 1rem;
  }
  
  .ram-partners-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ram-responsibility-section {
    padding: 40px 15px;
    min-height: auto;
  }
  
  .ram-responsibility-content {
    padding: 25px 20px;
  }
  
  .ram-disclaimer-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .ram-partners-grid {
    gap: 15px;
  }
  
  .ram-disclaimer-partnerlink img {
    width: 120px;
    height: 50px;
  }
}

@media (max-width: 320px) {
  .ram-disclaimer-title {
    font-size: 1.3rem;
  }
  
  .ram-disclaimer-text {
    font-size: 0.9rem;
  }
  
  .ram-partners-grid {
    gap: 10px;
  }
  
  .ram-disclaimer-partnerlink img {
    width: 100px;
    height: 40px;
  }
}

.ram-footer-container {
  background: linear-gradient(135deg, #2a0a4a 0%, #1a0635 100%);
  color: #e0e9ff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  border-top: 3px solid var(--electric-blue);
}

.ram-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(224, 233, 255, 0.1);
}

.ram-footer-warning {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 15px;
  line-height: 1.7;
}

.ram-footer-icon {
  color: var(--alert-red);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.ram-footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ram-footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ram-footer-link {
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
}

.ram-footer-link:hover {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.ram-footer-ageicon {
  filter: drop-shadow(0 0 5px rgba(0, 245, 212, 0.5));
  transition: transform 0.3s ease;
}

.ram-footer-ageicon:hover {
  transform: scale(1.1);
}

.ram-footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(224, 233, 255, 0.7);
}

@media (max-width: 768px) {
  .ram-footer-top {
    flex-direction: column;
    gap: 20px;
  }
  
  .ram-footer-warning {
    min-width: 100%;
  }
  
  .ram-footer-links {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ram-footer-container {
    padding: 30px 15px 15px;
  }
  
  .ram-footer-warning {
    flex-direction: column;
    gap: 10px;
  }
  
  .ram-footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .ram-footer-legal {
    gap: 8px;
  }
}

.ram-age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 5, 30, 0.95);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ram-age-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ram-age-lock {
  font-size: 50px;
  color: var(--alert-red);
  margin-bottom: 20px;
}

.ram-age-title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.8rem;
  color: #2a0a4a;
  margin-bottom: 20px;
}

.ram-age-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.ram-age-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.ram-age-partners a {
  background: #763bc4;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.ram-age-partners a:hover {
  transform: scale(1.05);
}

.ram-age-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ram-age-confirm, .ram-age-decline {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.ram-age-confirm {
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-cyan));
  color: #1a1a2e;
}

.ram-age-decline {
  background: none;
  color: var(--alert-red);
  border: 2px solid var(--alert-red);
}

.ram-age-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 245, 212, 0.4);
}

.ram-age-decline:hover {
  background-color: rgba(255, 46, 77, 0.1);
}

.ram-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #2a0a4a, #1a0635);
  color: white;
  padding: 15px 20px;
  z-index: 9998;
  display: flex;
  justify-content: center;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.ram-cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ram-cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ram-cookie-link {
  color: var(--electric-blue);
  text-decoration: none;
}

.ram-cookie-link:hover {
  text-decoration: underline;
}

.ram-cookie-button {
  background: var(--neon-cyan);
  color: #1a1a2e;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ram-cookie-button:hover {
  background: var(--electric-blue);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ram-age-content {
    padding: 30px 20px;
  }
  
  .ram-age-title {
    font-size: 1.5rem;
  }
  
  .ram-cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .ram-cookie-button {
    width: 100%;
  }
}

.ram-contact-form-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding: 80px 20px;
}

.ram-contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ram-contact-heading {
  font-family: 'Zilla Slab', serif;
  font-size: 2.2rem;
  color: #2a0a4a;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.ram-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ram-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ram-form-label {
  font-family: 'Zilla Slab', serif;
  font-size: 1rem;
  color: #2a0a4a;
  font-weight: 600;
}

.ram-form-input, .ram-form-textarea {
  padding: 12px 15px;
  border: 2px solid #e0e5ff;
  border-radius: 8px;
  font-family: 'Noto Serif', serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ram-form-input:focus, .ram-form-textarea:focus {
  border-color: var(--electric-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.2);
}

.ram-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.ram-form-error {
  color: var(--alert-red);
  font-size: 0.85rem;
  display: none;
}

.ram-form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.ram-checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: var(--electric-blue);
}

.ram-checkbox-label {
  font-size: 0.9rem;
  color: #555;
}

.ram-terms-link {
  color: var(--electric-blue);
  text-decoration: none;
}

.ram-terms-link:hover {
  text-decoration: underline;
}

.ram-submit-button {
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-cyan));
  color: #1a1a2e;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-family: 'Zilla Slab', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.ram-submit-button:disabled {
  background: #e0e5ff;
  color: #999;
  cursor: not-allowed;
}

.ram-submit-button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 245, 212, 0.4);
}

.ram-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 5, 30, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.ram-modal-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.ram-modal-icon {
  font-size: 60px;
  color: var(--electric-blue);
  margin-bottom: 20px;
}

.ram-modal-title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.8rem;
  color: #2a0a4a;
  margin-bottom: 15px;
}

.ram-modal-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.ram-modal-button {
  background: var(--electric-blue);
  color: #1a1a2e;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ram-modal-button:hover {
  background: var(--neon-cyan);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ram-contact-container {
    padding: 30px;
  }
  
  .ram-contact-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .ram-contact-form-section {
    padding: 50px 15px;
  }
  
  .ram-contact-container {
    padding: 25px 20px;
  }
  
  .ram-contact-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .ram-feedback-form {
    gap: 20px;
  }
}

.ram-pgs-main {
  background-color: #f8f9ff;
  min-height: 100vh;
  padding: 40px 20px;
}

.ram-pgs-cookie-section {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ram-pgs-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric-blue);
  text-decoration: none;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.ram-pgs-backlink:hover {
  color: var(--neon-cyan);
  transform: translateX(-3px);
}

.ram-pgs-main-title {
  font-family: 'Zilla Slab', serif;
  font-size: 2.5rem;
  color: #2a0a4a;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.ram-pgs-cookie-point {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #e0e5ff;
}

.ram-pgs-cookie-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ram-pgs-point-icon {
  font-size: 2rem;
  color: var(--neon-pink);
  margin-bottom: 15px;
}

.ram-pgs-point-title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.5rem;
  color: #2a0a4a;
  margin-bottom: 15px;
  font-weight: 600;
}

.ram-pgs-point-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 768px) {
  .ram-pgs-cookie-section {
    padding: 30px;
  }
  
  .ram-pgs-main-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .ram-pgs-point-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .ram-pgs-main {
    padding: 30px 15px;
  }
  
  .ram-pgs-cookie-section {
    padding: 25px 20px;
  }
  
  .ram-pgs-main-title {
    font-size: 1.7rem;
  }
  
  .ram-pgs-point-icon {
    font-size: 1.8rem;
  }
  
  .ram-pgs-point-text {
    font-size: 0.95rem;
  }
}

.ram-privacy-main {
  background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
  min-height: 100vh;
  padding: 50px 20px;
}

.ram-privacy-section {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(42, 10, 74, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.2);
}

.ram-privacy-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--electric-blue);
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.ram-privacy-backlink:hover {
  color: var(--neon-cyan);
  transform: translateX(-5px);
}

.ram-privacy-title {
  font-family: 'Zilla Slab', serif;
  font-size: 2.5rem;
  color: #2a0a4a;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ram-privacy-point {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 245, 212, 0.3);
  position: relative;
}

.ram-privacy-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ram-privacy-icon {
  font-size: 2.2rem;
  color: var(--neon-pink);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--neon-pink), var(--deep-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ram-privacy-point-title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.5rem;
  color: #2a0a4a;
  margin-bottom: 15px;
  font-weight: 600;
}

.ram-privacy-point-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 1024px) {
  .ram-privacy-section {
    padding: 40px;
  }
  
  .ram-privacy-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .ram-privacy-main {
    padding: 40px 15px;
  }
  
  .ram-privacy-section {
    padding: 30px;
  }
  
  .ram-privacy-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .ram-privacy-point-title {
    font-size: 1.3rem;
  }
  
  .ram-privacy-point-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ram-privacy-section {
    padding: 25px 20px;
  }
  
  .ram-privacy-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .ram-privacy-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 320px) {
  .ram-privacy-point-title {
    font-size: 1.2rem;
  }
  
  .ram-privacy-point-text {
    font-size: 0.95rem;
  }
}