@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #170b28;
    background: #f8fafc;
    padding-top: 70px;
    opacity: 0;
    transition: opacity 0.1s ease-in;
}

body.loaded {
    opacity: 1;
}

/* Prevent icon flash by reserving space */
.fas, .fab {
    display: inline-block;
    min-width: 1em;
    text-align: center;
}

body.fonts-loading {
    visibility: hidden;
}

body.fonts-loaded {
    visibility: visible;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    text-decoration: none;
    color: #170b28;
    font-weight: 500;
    font-size: 1.25rem;
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.navbar-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-links a i {
    width: 1em;
    display: inline-block;
}

.navbar-links a:hover {
    color: #ab37c8;
}

.navbar-cta {
    background: linear-gradient(135deg, #ab37c8 0%, #170b28 100%);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 55, 200, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vpforce-hero {
    text-align: center;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #170b28 0%, #ab37c8 100%);
    border-radius: 16px;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(171, 55, 200, 0.4);
}

.vpforce-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: brightness(0) invert(1);
}

.rhino-showcase {
    max-width: 500px;
    margin: 1.5rem auto 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.rhino-showcase img {
    height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.rhino-showcase img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
}

.vpforce-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vpforce-hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.vpforce-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.vpforce-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(50% - 1rem);
    min-width: 300px;
    max-width: 450px;
}

.vpforce-card:hover {
    transform: translateY(-8px);
    border-color: #ab37c8;
    box-shadow: 0 20px 40px rgba(171, 55, 200, 0.3);
}

.vpforce-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.vpforce-card h3 {
    color: #170b28;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.vpforce-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.discord-cta {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0 3rem 0;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
}

.discord-cta strong {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
}

.discord-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 100%;
}

.discord-card:hover {
    transform: translateY(-8px);
    border-color: #5865f2;
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.3);
}

.discord-card:hover::before {
    content: "Click to Join →";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #5865f2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    animation: bounce 0.6s ease infinite;
}

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

.discord-card img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.sp-html {
    text-align: center;
    margin: 3rem 0;
}

.discord-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.discord-cta-text {
    text-align: center;
    max-width: 600px;
}

.discord-cta-text h2 {
    color: #170b28;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.discord-cta-text p {
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.6;
}

.vpforce-intro {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.vpforce-intro h2 {
    color: #170b28;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.vpforce-intro p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
}

.vpforce-intro p:last-child {
    margin-bottom: 0;
}

.vpforce-intro strong {
    color: #170b28;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-tile {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-tile:hover {
    transform: translateY(-4px);
    border-color: #ab37c8;
    box-shadow: 0 12px 24px rgba(171, 55, 200, 0.2);
}

.feature-tile h3 {
    color: #170b28;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-tile p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-section {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.faq-section h2 {
    color: #170b28;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    color: #170b28;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

.specs-section {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.specs-section h2 {
    color: #170b28;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-group h3 {
    color: #170b28;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ab37c8;
}

.spec-group ul {
    list-style: none;
    padding: 0;
}

.spec-group li {
    color: #64748b;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    line-height: 1.5;
}

.spec-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    border-radius: 6px;
}

.spec-note strong {
    color: #92400e;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-note p {
    color: #78350f;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .navbar-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .vpforce-hero h1 {
        font-size: 2rem;
    }

    .vpforce-hero p {
        font-size: 1.1rem;
    }

    .vpforce-card {
        flex: 1 1 100%;
        min-width: unset;
    }

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

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