/* Custom styles for Pandora Pro Shop theme */

/* Retro Gaming Theme for Pandora Pro Shop */

:root {
  --primary-color: #00b8ff;
  --secondary-color: #ff0084;
  --accent-color: #ffcc00;
  --dark-bg: #121212;
  --medium-bg: #222;
  --light-bg: #333;
  --text-color: #eee;
  --text-color-muted: #aaa;
  --border-radius: 2px;
  --box-shadow: 0 0 10px rgba(0, 184, 255, 0.5);
  --transition: all 0.2s ease;
  --border-pixel: 4px solid #00b8ff;
  --retro-gradient: linear-gradient(135deg, #00b8ff, #ff0084);
  --pixel-border: 4px solid #fff;
  --grid-bg: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a5568' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

body {
  background-color: var(--dark-bg);
  color: var(--text-color);
  font-family: 'Press Start 2P', 'Courier New', monospace;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Press Start 2P', 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  color: var(--primary-color);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
}

h2 {
  font-size: 1.8rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.5rem;
  font-family: 'Chakra Petch', sans-serif;
}

.container {
  background-color: var(--medium-bg);
  padding: 20px;
  border: var(--border-pixel);
  box-shadow: var(--box-shadow);
}

.btn, 
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
  background: var(--primary-color);
  border: 3px solid #fff;
  color: #fff;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  text-transform: uppercase;
  position: relative;
  padding: 12px 24px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  transition: all 0.2s ease;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  cursor: pointer;
}

.btn:hover,
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
  background-color: var(--secondary-color);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #000;
}

/* Retro Card Style */
.card, .info-card {
  background-color: var(--medium-bg);
  border: var(--pixel-border);
  border-radius: 0;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  position: relative;
  transition: var(--transition);
}

.card:hover, .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
}

.card-header, .info-card-header {
  background-color: var(--primary-color);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  text-transform: uppercase;
  padding: 12px 15px;
  border-bottom: 3px solid #fff;
  font-size: 1rem;
}

.card-body, .info-card-body {
  padding: 20px;
}

/* Navigation Tabs */
.nav-tabs {
  border-bottom: 4px solid var(--primary-color);
}

.nav-tabs .nav-link {
  background-color: var(--light-bg);
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  border-bottom: none;
  margin-right: 5px;
  border-radius: 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  padding: 10px 15px;
  text-transform: uppercase;
}

.nav-tabs .nav-link.active, 
.nav-tabs .nav-item.show .nav-link {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.tab-content {
  border: 4px solid var(--primary-color);
  border-top: none;
  background-color: var(--medium-bg);
  padding: 20px;
}

/* Product Hero Section */
.product-hero-section {
  background: var(--retro-gradient);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.product-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--grid-bg);
  opacity: 0.15;
}

.product-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
}

.product-hero-image img {
  border: 8px solid #fff;
  box-shadow: 0 0 20px rgba(0, 184, 255, 0.8);
}

/* Feature Items */
.feature-item {
  background-color: var(--light-bg);
  border: 3px solid #fff;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0 rgba(0,0,0,0.3);
}

.feature-item i, .benefit-icon, .support-icon, .resource-icon {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-right: 15px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.feature-content h3, .feature-item h5 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: 'Press Start 2P', monospace;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.feature-points {
  padding-left: 1.5rem;
  margin-top: 1rem;
  font-family: 'Chakra Petch', sans-serif;
}

.feature-points li {
  margin-bottom: 0.8rem;
  position: relative;
}

.feature-points li:before {
  content: "→";
  position: absolute;
  left: -1.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* Tables */
.specs-table {
  background-color: var(--light-bg);
  border: 3px solid #fff;
}

.specs-table th {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px;
  text-transform: uppercase;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  border: 2px solid #fff;
}

.specs-table td {
  padding: 12px;
  border: 2px solid #fff;
  font-family: 'Chakra Petch', sans-serif;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--light-bg);
  border: 3px solid #fff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 2px;
}

/* Pricing Cards */
.pricing-card {
  background-color: var(--light-bg);
  border: 4px solid #fff;
  padding: 25px;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.3);
}

.popular-plan {
  border-color: var(--accent-color) !important;
  border-width: 4px !important;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--accent-color);
  color: #000;
  padding: 5px 15px;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
  font-family: 'Press Start 2P', monospace;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-color-muted);
  display: block;
  margin-top: 5px;
}

/* CTA Section */
.cta-section {
  background: var(--retro-gradient);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--grid-bg);
  opacity: 0.15;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
}

.cta-button-lg {
  font-size: 1.2rem;
  padding: 15px 40px;
  border-width: 4px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
}

/* Product Benefits */
.product-benefits {
  background-color: var(--light-bg);
  padding: 20px;
  border: 4px solid #fff;
  margin-top: 30px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.product-benefits h4 {
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.benefit-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px dashed rgba(255,255,255,0.1);
}

.benefit-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefit-item h5 {
  color: var(--primary-color);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.benefit-item p {
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 0;
}

/* License Options */
.license-option-card {
  background-color: var(--light-bg);
  border: 3px solid #fff;
  padding: 15px;
  margin-bottom: 15px;
  transition: var(--transition);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.license-option-card:hover, .license-option-card.active {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0 rgba(0,0,0,0.3);
  border-color: var(--accent-color) !important;
}

.license-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

/* Guarantee Badge */
.guarantee-badge {
  background-color: var(--light-bg);
  border: 3px solid #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.guarantee-badge h5 {
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  margin: 15px 0;
}

.guarantee-icon i {
  color: var(--accent-color);
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  border-top: 4px solid var(--primary-color);
  padding: 40px 0;
}

.footer-widget h4 {
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Additional Info Card Styles */
.enhanced-additional-info {
  background-color: var(--medium-bg);
  padding: 1px;
}

.info-card {
  height: 100%;
}

.spec-item, .company-item {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-family: 'Chakra Petch', sans-serif;
}

.spec-item:last-child, .company-item:last-child {
  border-bottom: none;
}

.spec-label, .company-label {
  font-weight: 700;
  color: var(--accent-color);
  width: 40%;
  padding-right: 15px;
}

.spec-value, .company-value {
  width: 60%;
}

/* License Details */
.license-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.license-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.license-item h5 {
  color: var(--primary-color);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.license-features {
  padding-left: 20px;
  font-family: 'Chakra Petch', sans-serif;
}

.license-features li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.license-features li::before {
  content: "→";
  position: absolute;
  left: -15px;
  color: var(--accent-color);
}

/* Guarantee Details */
.guarantee-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.guarantee-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guarantee-item h5 {
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .card-header, .info-card-header {
    font-size: 0.9rem;
  }
  
  .nav-tabs .nav-link {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .spec-label, .company-label,
  .spec-value, .company-value {
    width: 100%;
    display: block;
  }
}

/* Pixel Art animations */
@keyframes pixel-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pixel-pulse {
  animation: pixel-pulse 2s infinite;
}

/* Animated Background for Special Sections */
.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(0, 184, 255, 0.1) 0%, 
    rgba(0, 184, 255, 0) 50%, 
    rgba(255, 0, 132, 0.1) 100%);
  animation: bg-scroll 15s linear infinite;
  z-index: 1;
}

@keyframes bg-scroll {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Override WooCommerce styles */
.woocommerce div.product div.images, 
.woocommerce div.product div.summary {
  margin-bottom: 2em;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  font-size: 1.5rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.woocommerce-product-gallery {
  border: 4px solid #fff;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
  background-color: var(--accent-color);
  color: #000;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Product Info Page Styles */
.product-hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
}

.product-hero-content h1 {
    font-weight: 700;
    color: var(--white);
}

.product-hero-image img {
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-content h3 {
    margin-bottom: 1rem;
}

.feature-points {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.feature-points li {
    margin-bottom: 0.5rem;
    position: relative;
}

.feature-points li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.specs-table th {
    width: 40%;
    font-weight: 600;
}

.testimonial-card {
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card {
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.popular-plan {
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-price .period {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.cta-button-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
}

/* WooCommerce Product Page Styles */
.product-custom-tabs {
    margin-top: 50px;
}

.product-custom-tabs .nav-tabs .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 12px 20px;
}

.product-custom-tabs .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-color: var(--medium-gray) var(--medium-gray) #fff;
}

.feature-item .d-flex i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.requirement-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.product-benefits {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.license-options {
    margin-top: 30px;
}

.license-option-card {
    transition: var(--transition);
    cursor: pointer;
}

.license-option-card:hover, .license-option-card.active {
    border-color: var(--primary-color) !important;
    background-color: rgba(123, 104, 238, 0.05);
}

.license-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.guarantee-badge {
    color: var(--dark-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
}

.product-screenshots {
    margin-top: 50px;
}

.screenshot-item {
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    transition: var(--transition);
}

.screenshot-item:hover img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-channel-item i, .contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* General Styles */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 10px;
}

/* Override WooCommerce styles */
.woocommerce div.product div.images, 
.woocommerce div.product div.summary {
    margin-bottom: 2em;
}

.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background-color: var(--accent-color);
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Retro Game Decorations */
.retro-decorations {
  position: relative;
  z-index: 1;
}

.pixel-corner {
  position: fixed;
  width: 30px;
  height: 30px;
  z-index: 100;
}

.pixel-corner.top-left {
  top: 15px;
  left: 15px;
  border-top: 4px solid var(--accent-color);
  border-left: 4px solid var(--accent-color);
}

.pixel-corner.top-right {
  top: 15px;
  right: 15px;
  border-top: 4px solid var(--accent-color);
  border-right: 4px solid var(--accent-color);
}

.pixel-corner.bottom-left {
  bottom: 15px;
  left: 15px;
  border-bottom: 4px solid var(--accent-color);
  border-left: 4px solid var(--accent-color);
}

.pixel-corner.bottom-right {
  bottom: 15px;
  right: 15px;
  border-bottom: 4px solid var(--accent-color);
  border-right: 4px solid var(--accent-color);
}

/* Retro Product Container */
.retro-product-container {
  position: relative;
  border: 4px solid var(--primary-color);
  background-color: var(--medium-bg);
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 184, 255, 0.3);
}

/* Retro Section Header */
.retro-section-header {
  display: flex;
  align-items: center;
  margin: 30px 0 20px;
  text-align: center;
}

.pixel-line {
  flex: 1;
  height: 4px;
  background: var(--primary-color);
}

.pixel-line.left {
  margin-right: 15px;
}

.pixel-line.right {
  margin-left: 15px;
}

.pixel-title {
  font-family: 'Press Start 2P', monospace;
  color: var(--accent-color);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0 10px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
  white-space: nowrap;
}

/* Retro Panel */
.retro-panel {
  border: 4px solid #fff;
  background-color: var(--light-bg);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
}

.retro-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Pixel Avatars */
.pixel-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-right: 15px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

/* Power-Ups Title */
.power-ups-title, .characters-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
  text-transform: uppercase;
}

.power-ups-title i, .characters-title i {
  animation: power-pulse 1s infinite alternate;
}

@keyframes power-pulse {
  from { opacity: 0.7; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

/* Retro Frame for Screenshots */
.retro-frame {
  border: 5px solid #fff;
  padding: 3px;
  background-color: var(--dark-bg);
  position: relative;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  overflow: hidden;
}

.retro-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.screenshot-caption {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  color: var(--accent-color);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}

/* Player Reviews */
.player-review {
  font-family: 'Chakra Petch', sans-serif;
  border-left: 4px solid var(--accent-color);
  padding-left: 15px;
  margin: 15px 0;
  font-style: italic;
}

.testimonial-author h5 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* Scanlines Effect */
.scanlines {
  position: relative;
  overflow: hidden;
}

.scanlines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 1px,
    rgba(0, 0, 0, 0.1) 1px,
    rgba(0, 0, 0, 0.1) 2px
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
}

/* Pixel Borders */
.pixel-border {
  position: relative;
  padding: 15px;
}

.pixel-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid;
  border-image: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color)) 1;
  box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
}

/* 8-bit Button Effect */
.btn-8bit {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: #000;
  border: 4px solid #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  position: relative;
  transition: all 0.1s ease;
  text-transform: uppercase;
}

.btn-8bit:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.btn-8bit:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 rgba(0,0,0,0.5);
}

/* Flicker Animation */
.crt-flicker {
  animation: flicker 0.3s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

/* Pricing Card Upgrade */
.pricing-card {
  border: 6px solid #fff;
  padding: 20px;
  position: relative;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid var(--primary-color);
  z-index: -1;
}

/* Retro Input Fields */
.retro-input {
  background-color: var(--dark-bg);
  border: 3px solid #fff;
  padding: 10px;
  font-family: 'Chakra Petch', sans-serif;
  color: var(--text-color);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.retro-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* 8-bit Loader */
.loader-8bit {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  border: 4px solid var(--accent-color);
  animation: loader-8bit 1s infinite steps(8);
}

@keyframes loader-8bit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Game Over Text Effect */
.game-over {
  font-family: 'Press Start 2P', monospace;
  font-size: 2rem;
  color: var(--accent-color);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.8);
  animation: game-over 1s infinite alternate;
  text-align: center;
  margin: 30px 0;
}

@keyframes game-over {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* CRT Effect for Videos */
.crt-effect {
  position: relative;
  overflow: hidden;
}

.crt-effect video {
  width: 100%;
  border: 4px solid #fff;
}

.crt-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .retro-section-header {
    flex-direction: column;
  }
  
  .pixel-line {
    margin: 10px 0;
    width: 80%;
  }
  
  .pixel-line.left, .pixel-line.right {
    margin: 10px 0;
  }
  
  .pixel-title {
    font-size: 1.2rem;
  }
  
  .power-ups-title, .characters-title {
    font-size: 1rem;
  }
}

/* Mega Price Display */
.mega-price {
  font-family: 'Press Start 2P', monospace;
  font-size: 2rem;
  color: var(--accent-color);
  background-color: var(--medium-bg);
  padding: 15px 20px;
  display: inline-block;
  border: 4px solid #fff;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
  transform: rotate(-2deg);
  position: relative;
}

.mega-price::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 2px solid var(--secondary-color);
  z-index: -1;
}

.one-time-fee {
  font-family: 'Chakra Petch', sans-serif;
  color: var(--text-color-muted);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Direct Product Link */
.direct-product-link {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  color: #fff;
  background-color: var(--accent-color);
  padding: 12px 20px;
  text-transform: uppercase;
  border: 3px solid #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.direct-product-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  20% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.direct-product-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  color: #fff;
}

/* Update License Option Styling */
.license-option-card.active {
  border: 4px solid var(--accent-color) !important;
  position: relative;
  overflow: hidden;
}

.license-option-card.active::before {
  content: "BEST DEAL";
  position: absolute;
  top: 10px;
  right: -30px;
  background-color: var(--accent-color);
  color: #000;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  padding: 5px 30px;
  transform: rotate(45deg);
  z-index: 1;
}

/* Fix the license price for GBP */
.license-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Press Start 2P', monospace;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-bg);
  width: 80px;
  height: 80px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

/* Main Menu Navigation Updates */
.main-menu a {
  position: relative;
  transition: all 0.2s ease;
}

.main-menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-menu a:hover::after {
  transform: scaleX(1);
}

.main-menu .current-menu-item a::after {
  transform: scaleX(1);
}

/* Call To Action Buttons */
.cta-game-button {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  color: #fff;
  background-color: var(--accent-color);
  padding: 15px 25px;
  text-transform: uppercase;
  border: 4px solid #fff;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
  transition: all 0.2s ease;
  text-decoration: none;
  margin: 20px 0;
  position: relative;
}

.cta-game-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  color: #fff;
}

.cta-game-button::before {
  content: ">";
  position: absolute;
  left: 15px;
  opacity: 0;
  transition: all 0.2s ease;
}

.cta-game-button:hover::before {
  opacity: 1;
  left: 10px;
}

/* Price Tag */
.price-tag {
  position: relative;
  display: inline-block;
  background-color: var(--accent-color);
  color: #000;
  font-family: 'Press Start 2P', monospace;
  font-size: 1.5rem;
  padding: 10px 15px;
  margin: 20px 0;
  transform: rotate(-3deg);
  border: 3px solid #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

.price-tag::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
}

/* Game Bonus Features */
.bonus-features {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--light-bg);
  border: 4px solid #fff;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
}

.bonus-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.3rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}

.bonus-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.bonus-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bonus-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

/* Full-width product page adjustments */
.product-page-container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.retro-product-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .product-gallery-wrap {
    position: sticky;
    top: 30px;
  }
}

/* Enhance the screenshot display in full-width layout */
.product-screenshots .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-screenshots .screenshot-item {
  height: 100%;
}

.product-screenshots .retro-frame {
  height: 100%;
}

.product-screenshots .retro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove navigation/breadcrumb spacing */
.woocommerce-breadcrumb {
  display: none !important;
}

/* Adjust content container padding */
.woocommerce-content-box {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
} 