/* Radar Page Specific Styles */
/* Green theme for Rust Radar */

/* Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slideshow-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background: rgba(0, 212, 170, 0.3);
    border-color: rgba(0, 212, 170, 0.5);
}

.slide-prev { left: 10px; }
.slide-next { right: 10px; }

.slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #00D4AA;
}

:root {
    --radar-primary: #00D4AA;
    --radar-secondary: #00E4BB;
    --radar-glow: rgba(0, 212, 170, 0.4);
}

/* Main Content */
main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Segoe UI Black', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 .gradient {
    background: linear-gradient(135deg, var(--radar-primary) 0%, var(--radar-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--radar-primary);
}

.feature-text {
    color: var(--text-primary);
    font-size: 14px;
}

/* Highlighted hero feature */
.feature-item.highlight-feature .feature-text {
    color: var(--radar-primary);
    font-weight: 600;
}

.feature-item.highlight-feature .feature-icon.star {
    background: rgba(0, 212, 170, 0.3);
    box-shadow: 0 0 12px rgba(0, 212, 170, 0.3);
}

.hero-visual {
    position: relative;
    min-height: 540px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 55%;
    background: rgba(74, 158, 255, 0.18);
    filter: blur(90px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Status Indicator */
.status-indicator {
    background: rgba(0, 212, 170, 0.08);
    border-left: 3px solid var(--radar-primary);
    padding: 12px 24px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-shrink: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--radar-primary);
    border-radius: 50%;
    animation: pulse-radar 2s infinite;
    box-shadow: 0 0 8px var(--radar-glow);
}

@keyframes pulse-radar {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.status-text {
    font-size: 11px;
    color: var(--radar-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Section Common */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Segoe UI Black', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

/* Slots Indicator */
.slots-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 50px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
}

.slots-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--radar-primary);
    font-size: 16px;
}

.slots-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--radar-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slots-detail {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease;
}

.pricing-grid .pricing-card {
    flex: 1;
    max-width: 380px;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 228, 187, 0.05) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    overflow: hidden;
    animation: radarBorderPulse 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.15);
}

.pricing-card.sold-out {
    opacity: 0.5;
    animation: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.pricing-card.sold-out::before {
    display: none;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(0, 212, 170, 0.12) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: radarShimmerCard 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.pricing-card.featured > * {
    position: relative;
    z-index: 1;
}

.pricing-card.featured:nth-child(1)::before {
    animation-delay: 0s;
}

.pricing-card.featured:nth-child(2)::before {
    animation-delay: 1.3s;
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 228, 187, 0.6);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
}

/* Badges need to sit above the shimmer */
.pricing-card.featured .pricing-badge {
    z-index: 2;
}

@keyframes radarShimmerCard {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes radarBorderPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 212, 170, 0.15);
    }
    50% {
        box-shadow: 0 5px 30px rgba(0, 212, 170, 0.25);
    }
}

@keyframes cardPulse {
    0%, 100% {
        border-color: var(--radar-primary);
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.15);
    }
    50% {
        border-color: var(--radar-secondary);
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.25), 0 0 60px rgba(0, 212, 170, 0.1);
    }
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--radar-primary) 0%, var(--radar-secondary) 100%);
    color: #0A0E1B;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    z-index: 2;
    position: relative;
}

.pricing-badge.sale-badge {
    background: linear-gradient(135deg, #FF4655 0%, #FF6B4A 100%);
    color: #FFFFFF;
    padding: 5px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    animation: salePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes salePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 70, 85, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 70, 85, 0.7), 0 0 40px rgba(255, 70, 85, 0.3);
    }
}

.pricing-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-price-original {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-decoration: line-through;
    line-height: 1;
}

.pricing-price-original sup {
    font-size: 14px;
}

.pricing-save {
    display: inline-block;
    background: rgba(255, 70, 85, 0.15);
    color: #FF4655;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-duration {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-price sup {
    font-size: 20px;
    color: var(--text-secondary);
}

.pricing-period {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-slots {
    display: inline-block;
    background: rgba(255, 70, 85, 0.15);
    color: #FF4655;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: slotsPulse 2s ease-in-out infinite;
}

@keyframes slotsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pricing-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    min-height: 60px;
}

.pricing-highlight {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 12px;
    background: linear-gradient(135deg, var(--radar-primary) 0%, var(--radar-secondary) 100%);
    border: none;
    color: #0A0E1B;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    background: rgba(0, 212, 170, 0.04);
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-5px);
}

/* Featured card - spans full width */
.feature-card.featured-card {
    grid-column: 1 / -1;
    background: rgba(0, 212, 170, 0.04);
    border-color: rgba(0, 212, 170, 0.3);
    padding: 48px;
}

.feature-card.featured-card:hover {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.feature-card.featured-card .feature-card-title {
    font-size: 24px;
    color: var(--radar-primary);
}

.feature-card.featured-card .feature-card-description {
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.feature-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--radar-primary) 0%, var(--radar-secondary) 100%);
    color: #0A0E1B;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--radar-primary);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Checklist Section */
.checklist-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.checklist-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checklist-item:hover {
    background: rgba(0, 212, 170, 0.04);
    border-color: rgba(0, 212, 170, 0.15);
}

.checklist-item i {
    color: var(--radar-primary);
    font-size: 12px;
    width: 22px;
    height: 22px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-item span {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .slots-indicator {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .features-section,
    .pricing-section,
    .checklist-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 24px;
    }
}
