:root {
    /* Indigo/Purple Theme Palette - Matching Example */
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --nav-bg: rgba(5, 5, 5, 0.85);
    --primary-color: #ffffff;
    --secondary-color: #cccccc;

    /* New Accent Colors */
    --primary-accent: #4f46e5;
    /* Indigo 600 */
    --secondary-accent: #818cf8;
    /* Indigo 400 */
    --accent-color: #6366f1;
    /* General Accent */

    --text-color: #f5f5f5;
    --text-muted: #9ca3af;
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient-bg: radial-gradient(circle at top center, #111111 0%, #050505 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    --gradient-card: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(10, 10, 10, 0.5));
    --gradient-btn: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatBlob 20s infinite alternate;
}

.glow-1 {
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.15) 0%, transparent 70%);
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    opacity: 0.4;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo::before {
    content: '';
    display: block;
    width: 8px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 1px;
    box-shadow: 0 0 15px var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a:not(.btn-primary):hover {
    color: #ffffff;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links .btn-primary {
    margin-left: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-links .btn-primary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-links .btn-primary::after {
    display: none;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-get-asset {
    background: var(--gradient-btn);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.btn-get-asset i {
    font-size: 1.2rem;
}

.btn-get-asset:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
}

.btn-get-asset::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-get-asset:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.glass-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    position: absolute;
    width: 260px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
    border-color: var(--accent-color);
}

.glass-card:nth-child(1) {
    top: 20px;
    left: 20px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.glass-card:nth-child(2) {
    bottom: 60px;
    right: 20px;
    z-index: 1;
    animation: float 7s ease-in-out infinite reverse;
}

.icon-large {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 5rem 10%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #252525;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover .icon-box {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

/* Showcase */
.showcase {
    padding: 5rem 10%;
    background: rgba(0, 0, 0, 0.2);
}

.showcase-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.showcase-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    animation: scaleIn 0.8s ease-out;
}

.showcase-item:hover {
    transform: scale(1.02);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background: #101010;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    position: relative;
}

.placeholder-image i {
    font-size: 4rem;
    margin-top: 1rem;
    opacity: 0.3;
    transition: all 0.3s;
}

.showcase-item:hover .placeholder-image i {
    opacity: 0.8;
    color: var(--accent-color);
    transform: scale(1.1);
}

.showcase-info {
    padding: 2rem;
}

.showcase-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Guidelines */
.guidelines {
    padding: 5rem 10%;
}

.guideline-layout {
    display: flex;
    gap: 4rem;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--glass-border);
    animation: fadeInLeft 0.8s ease-out;
}

.sidebar h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 1rem 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar li:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding-left: 2rem;
}

.sidebar li.active {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.sidebar li::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar li.active::after {
    opacity: 1;
}

.content-area {
    flex-grow: 1;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.steps-list {
    list-style: none;
    margin-top: 2rem;
}

.steps-list li {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.steps-list li::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.steps-list li:last-child::before {
    display: none;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    background: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.step-details h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.code-block {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
    font-family: 'Consolas', monospace;
    color: #dcdcdc;
    overflow-x: auto;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    padding: 3rem 10%;
    background: #050505;
    border-top: 1px solid #222;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-left: 2rem;
    transition: all 0.3s;
}

.socials a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem !important;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        margin-bottom: 4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .showcase-container {
        grid-template-columns: 1fr;
    }

    .guideline-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .steps-list li {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .steps-list li::before {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.7rem;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .btn-get-asset {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .btn-get-asset i {
        font-size: 1rem;
    }

    .hero-buttons .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-area {
        padding: 1.5rem;
    }

    .tab-content h2 {
        font-size: 1.8rem;
    }

    .hero-visual {
        width: 100%;
        height: auto;
        min-height: 280px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .glass-card {
        position: relative;
        width: 140px;
        padding: 1rem;
        margin: 0;
    }

    .glass-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .glass-card p {
        font-size: 0.7rem;
    }

    .icon-large {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        flex-direction: column;
        gap: 0.8rem;
        min-height: auto;
    }

    .glass-card {
        width: 160px;
    }

    .btn-get-asset {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-buttons .btn-primary,
    .btn-secondary {
        padding: 0.65rem 1.2rem;
        font-size: 0.8rem;
    }
}