/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Outfit:wght@400;700;800&display=swap');

:root {
    --bg-color: #050505;
    --accent-color: #ff9f1c; /* premium orange */
    --accent-glow: rgba(255, 159, 28, 0.4);
    --text-color: #e5e7eb;
    --text-muted: #9ca3af;
    --card-bg: rgba(20, 20, 20, 0.8);
    --card-border: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Grid Overlay (Retro Grid style) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(219, 146, 30, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(219, 146, 30, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo img {
    border-radius: 4px; /* Slight rounding requested */
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 1;
}

main {
    padding-top: 60px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding-bottom: 20px;
}

.hero-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 24px;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
}

.hero-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

h1 span {
    background: linear-gradient(90deg, #ff9f1c, #ffcc00, #ff5722, #ff9f1c);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premium-orange-rgb 4s linear infinite;
    display: inline-block;
}

@keyframes premium-orange-rgb {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.hero-card p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    background-color: var(--accent-color);
}

.category-section {
    margin-bottom: 80px;
}

.category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-title::after {
    content: '';
    width: 0;
    height: 0;
}

.section-divider {
    text-align: center;
    margin: 80px 0;
}

.section-divider h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-divider .line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    position: relative;
}

.feature-content {
    flex: 1;
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.5;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #111;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-row:hover .feature-image {
    transform: translateY(-10px) scale(1.02);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.feature-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.feature-content h3 {
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.feature-content p {
    font-size: 18px;
    color: var(--text-muted);
    border-left: 2px solid var(--accent-glow);
    padding-left: 24px;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-list li {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li span {
    color: var(--accent-color);
    font-weight: bold;
}

footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: 100px;
}

footer p {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    background: #ff9f1c; /* premium orange */
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.4);
    position: absolute;
    top: -25px; /* Above price */
}

.bounce-anim {
    animation: promo-bounce 2s infinite ease-in-out;
}

@keyframes promo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 216, 77, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    top: -200px;
    right: -200px;
}

.blob-2 {
    bottom: -200px;
    left: -200px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    .hero-card {
        padding: 30px;
    }
}

/* Pricing Styles */
.hero-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

.price-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    position: relative; /* relative for absolute badge */
}

.price-strikethrough {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.price-current {
    font-size: 36px;
    color: var(--accent-color);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
    text-align: left;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
}

.feature-card h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    color: var(--text-color);
    font-size: 14px;
}

.feature-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-card ul li i {
    color: var(--accent-color);
    font-size: 12px;
    margin-top: 4px;
}

/* Hero Badges */
.hero-badges {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-item img.app-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-item img.sys-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-top: 2px;
}

.badge-item span {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

/* Reviews Section */
.reviews-section {
    padding: 20px 0px 40px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .reviews-header p {
        text-align: left !important;
    }
}

.reviews-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
}

.reviews-header h2 span {
    color: var(--accent-color);
}

.reviews-header p {
    color: var(--text-muted);
    font-size: 14px;
    text-align: right;
    max-width: 300px;
}

.reviews-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

/* Optional Edge fading effect */
.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 350px;
    flex-shrink: 0;
    white-space: normal;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #ff9f1c; /* premium orange */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.15);
}

.quote-mark {
    font-family: 'Outfit', sans-serif;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.stars {
    color: var(--accent-color);
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.reviewer-info:hover p, .reviewer-info:hover span, .reviewer-info:hover {
    opacity: 0.8;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #1a1a1a;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.reviewer-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* About Page Styles */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
    padding: 80px 0;
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.about-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-links {
        justify-content: center;
    }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #111;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

.contact-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #5865F2; /* Discord branding color */
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.btn-discord i {
    font-size: 20px;
}

.btn-discord:hover {
    background: #5865F2;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.social-links-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-links-contact a:hover {
    color: #fff;
}
