:root {
    --fn-primary: #9d4dbb;
    --fn-secondary: #2b6dbb;
    --fn-accent: #f3af19;
    --fn-success: #00d9ff;
    --fn-dark: #1a1a2e;
}

/* Hero Section */
.fn-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fn-primary) 0%, var(--fn-secondary) 100%);
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 20s infinite ease-in-out;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.floating-icons i:nth-child(4) {
    top: 70%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.fn-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-title {
    margin: 0;
    color: white;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    opacity: 0.95;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: 1.5rem auto 0;
    max-width: 600px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin: 0 0 1rem;
}

.title-accent {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--fn-primary), var(--fn-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-title .title-main {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-color);
    font-weight: 900;
    text-shadow: none;
}

.section-intro {
    color: var(--text-color);
    opacity: 0.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Mod Menu */
.premium-mod-menu {
    padding: 5rem 1rem;
    background: var(--background-color);
}

.mod-menu-card {
    background: var(--card-background);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mod-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--fn-primary), var(--fn-accent));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-tag {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--fn-primary), var(--fn-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1rem;
}

.lifetime-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--fn-success), var(--fn-accent));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.lifetime-badge i {
    font-size: 1.5rem;
}

/* Info Banner */
.info-banner {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(157, 77, 187, 0.1), rgba(243, 175, 25, 0.1));
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.info-item i {
    color: var(--fn-primary);
    font-size: 1.2rem;
}

/* Platform Support */
.platform-support {
    margin-bottom: 2rem;
    text-align: center;
}

.platform-support h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.platform-support h3 i {
    color: var(--fn-primary);
}

.platforms {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-background);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-badge:hover {
    border-color: var(--fn-primary);
    transform: translateY(-2px);
}

.platform-badge i {
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--fn-primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--fn-primary), var(--fn-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-background);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 700;
    color: var(--text-color);
}

.riker-column {
    background: rgba(157, 77, 187, 0.1);
    border-left: 2px solid var(--fn-primary);
    border-right: 2px solid var(--fn-primary);
}

.riker-header {
    background: var(--fn-primary) !important;
    color: white !important;
    position: relative;
}

.riker-header::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fn-accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.highlight-text {
    color: var(--fn-primary);
    font-weight: 700;
}

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.screenshot-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    color: white;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
