/* Features section */

.feature-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--theme-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.text-center {
    text-align: center;
}

.section--invert {
    background: var(--gradient-primary) !important;
    color: var(--black);
}

.section--invert .section-title h2 {
    background: var(--gradient-card);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section--invert .section-title p {
    color: var(--black);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 2;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--dark-bg);
    transition: transform 0.3s ease;
    margin: 2rem auto;
    display: block;
}

.feature-image:hover {
    transform: scale(1.02);
}

.feature-image-500px {
    max-width: 500px;
}

.feature-content {
    padding: 2rem;
}

.feature-content p {
    margin-bottom: 1rem;
}

.feature-content ul {
    list-style-type: none;
    margin: 0 auto;
    text-align: left;
    padding: 1rem;
    margin: 1rem;
    border: 1px solid var(--theme-primary);
    border-radius: var(--large-radius);
    background: var(--gradient-card);
}

.release-content {
    padding: 2rem;
    text-align: left;
}

.release-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 !important;
    font-family: "Righteous", sans-serif;
    font-optical-sizing: auto;
    color: var(--text-primary);
}

.release-date {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem !important;
    color: var(--text-secondary);
    font-family: "Righteous", sans-serif;
    font-optical-sizing: auto;
}

.release-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.release-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.release-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.release-content p {
    margin-bottom: 1rem;
}

.release-content ul {
    margin: 0 auto;
    text-align: left;
    padding: 1rem;
    margin: 1rem;
}

.price-display {
    margin-bottom: 1rem;
    height: 2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px var(--black);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    background: var(--black);
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Requirements section */
.requirements-section {
    padding: 4rem 2rem;
    background: var(--dark-gradient);
    border-top: 1px solid rgba(0, 117, 8, 0.2);
}

/* Requirements/Info Box */
.info-box {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--large-radius);
    border: 1px solid var(--theme-light);
    transition: border-color var(--transition-medium) ease;
  }
  
  .info-box:hover {
    border-color: var(--theme-accent);
  }
  
  .info-box p {
    color: var(--text-secondary) !important;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
  }

.system-requirements {
    padding: 0;
}

.system-requirements p {
    padding: 0 !important;
}

.new-highlight {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 4px 8px;
    border-radius: var(--small-radius);
    font-size: 0.25em;
    font-weight: bold;
    margin-left: 10px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
}

.promo-banner {
    background: var(--gradient-card);
    border-radius: var(--large-radius);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: translateY(0);
    transition: all 0.3s ease;
    margin: 20px 0;
    border: 2px solid var(--theme-light);
    }

    .promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .promo-banner p {
        color: white;
        font-size: 1.4rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .promo-code {
        background: var(--gradient-dark);
        backdrop-filter: blur(10px);
        border: 2px solid var(--theme-light);
        border-radius: var(--small-radius);
        padding: 8px 16px;
        font-size: 1.2em;
        color: #fff;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        display: inline-block;
        margin: 0 8px;
    }

/* Responsive adjustments */
@media (max-width: 768px) {

    .features-section {
        padding: 4rem 1rem;
    }

    .video-wrapper iframe {
        height: 250px;
    }

    .feature-content {
        padding: 1.5rem;
    }

    .promo-banner {
        padding: 20px;
        margin: 15px;
    }
    
    .promo-banner p {
        font-size: 1.2rem;
    }
    
    .promo-code {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {

    .video-wrapper iframe {
        height: 200px;
    }
}