:root {
    --primary: #f50057;
    --dark-bg: #0a0a14;
    --card-bg: #12121f;
    --text: #e6e6e6;
    --text-secondary: #a0a0a0;
    --gradient: linear-gradient(135deg, #f50057, #5e00ff, #00b8ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Mono", monospace;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.highlight {
    background: linear-gradient(135deg, rgba(245, 0, 87, 0.2), rgba(94, 0, 255, 0.2));
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(245, 0, 87, 0.3);
}

.nav-link.highlight:hover {
    background: linear-gradient(135deg, rgba(245, 0, 87, 0.3), rgba(94, 0, 255, 0.3));
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-icon {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(95, 0, 87, 0.2), transparent 70%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(245, 0, 87, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 80% 40%, rgba(94, 0, 255, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 40% 70%, rgba(0, 184, 255, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 70% 90%, rgba(245, 0, 87, 0.05) 0%, transparent 8%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #00b8ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #f50057;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    5% {
        clip: rect(70px, 9999px, 71px, 0);
    }

    10% {
        clip: rect(29px, 9999px, 83px, 0);
    }

    15% {
        clip: rect(16px, 9999px, 91px, 0);
    }

    20% {
        clip: rect(2px, 9999px, 23px, 0);
    }

    25% {
        clip: rect(46px, 9999px, 33px, 0);
    }

    30% {
        clip: rect(94px, 9999px, 74px, 0);
    }

    35% {
        clip: rect(50px, 9999px, 71px, 0);
    }

    40% {
        clip: rect(57px, 9999px, 5px, 0);
    }

    45% {
        clip: rect(41px, 9999px, 41px, 0);
    }

    50% {
        clip: rect(21px, 9999px, 60px, 0);
    }

    55% {
        clip: rect(89px, 9999px, 71px, 0);
    }

    60% {
        clip: rect(89px, 9999px, 23px, 0);
    }

    65% {
        clip: rect(23px, 9999px, 39px, 0);
    }

    70% {
        clip: rect(2px, 9999px, 56px, 0);
    }

    75% {
        clip: rect(54px, 9999px, 73px, 0);
    }

    80% {
        clip: rect(47px, 9999px, 28px, 0);
    }

    85% {
        clip: rect(99px, 9999px, 85px, 0);
    }

    90% {
        clip: rect(36px, 9999px, 21px, 0);
    }

    95% {
        clip: rect(87px, 9999px, 1px, 0);
    }

    100% {
        clip: rect(76px, 9999px, 1px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 65px, 0);
    }

    5% {
        clip: rect(7px, 9999px, 75px, 0);
    }

    10% {
        clip: rect(40px, 9999px, 22px, 0);
    }

    15% {
        clip: rect(9px, 9999px, 66px, 0);
    }

    20% {
        clip: rect(31px, 9999px, 95px, 0);
    }

    25% {
        clip: rect(15px, 9999px, 67px, 0);
    }

    30% {
        clip: rect(99px, 9999px, 61px, 0);
    }

    35% {
        clip: rect(74px, 9999px, 14px, 0);
    }

    40% {
        clip: rect(26px, 9999px, 56px, 0);
    }

    45% {
        clip: rect(39px, 9999px, 95px, 0);
    }

    50% {
        clip: rect(46px, 9999px, 34px, 0);
    }

    55% {
        clip: rect(44px, 9999px, 6px, 0);
    }

    60% {
        clip: rect(98px, 9999px, 85px, 0);
    }

    65% {
        clip: rect(73px, 9999px, 76px, 0);
    }

    70% {
        clip: rect(24px, 9999px, 67px, 0);
    }

    75% {
        clip: rect(53px, 9999px, 16px, 0);
    }

    80% {
        clip: rect(32px, 9999px, 3px, 0);
    }

    85% {
        clip: rect(13px, 9999px, 85px, 0);
    }

    90% {
        clip: rect(49px, 9999px, 36px, 0);
    }

    95% {
        clip: rect(70px, 9999px, 60px, 0);
    }

    100% {
        clip: rect(97px, 9999px, 8px, 0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(245, 0, 87, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.tagline {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* Removed white-space: nowrap; */
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-right: 2px solid var(--primary);
    animation: typing 2s steps(40) 1s 1 normal both, blink 1s steps(1) infinite;
    max-width: 100%;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.center-cta {
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::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: all 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(245, 0, 87, 0.3);
}

.btn-secondary {
    background: rgba(245, 0, 87, 0.1);
    border: 1px solid rgba(245, 0, 87, 0.3);
    color: var(--text);
}

.btn-platform {
    background: rgba(18, 18, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.btn-platform:hover {
    background: rgba(245, 0, 87, 0.2);
    border-color: rgba(245, 0, 87, 0.3);
}

.btn-platform.android:hover {
    background: rgba(164, 198, 57, 0.2);
    border-color: rgba(164, 198, 57, 0.3);
}

.btn-platform.ios:hover {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.3);
}

.btn-platform.windows:hover {
    background: rgba(0, 120, 215, 0.2);
    border-color: rgba(0, 120, 215, 0.3);
}

.btn-platform.macos:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-platform.linux:hover {
    background: rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.3);
}

.btn-platform.web:hover {
    background: rgba(0, 184, 255, 0.2);
    border-color: rgba(0, 184, 255, 0.3);
}

.btn-platform.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-platform.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Features Section */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(245, 0, 87, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 0, 87, 0.1), rgba(94, 0, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(245, 0, 87, 0.2);
}

.feature-icon-wrapper::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper::before {
    opacity: 0.5;
    filter: blur(15px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-secondary);
    flex-grow: 1;
}

.feature-badge {
    display: inline-block;
    background: rgba(245, 0, 87, 0.2);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(18, 18, 31, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.glass-card:hover {
    border-color: rgba(245, 0, 87, 0.2);
    box-shadow: 0 8px 32px rgba(245, 0, 87, 0.1);
}

.glass-effect {
    background: rgba(18, 18, 31, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* How to Use Section */
.how-to-use {
    padding: 40px;
    margin-top: 40px;
}

.code-block {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    background-color: rgba(21, 21, 43, 0.8);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    color: var(--primary);
}

pre {
    font-family: "Space Mono", monospace;
    color: #e6e6e6;
}

.code-block .string {
    color: #ff9d00;
}

.code-block .property {
    color: #f50057;
}

.code-block .punctuation {
    color: #a0a0a0;
}

.code-block .number {
    color: #00b8ff;
}

.config-list {
    margin-top: 30px;
}

.config-item {
    display: flex;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 4px;
}

.config-label {
    font-weight: 700;
    min-width: 120px;
    color: var(--primary);
}

/* Journey Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 10px var(--primary);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-date {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content {
    padding: 20px;
}

/* Team Section */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(245, 0, 87, 0.3);
}

.team-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-social a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(245, 0, 87, 0.3);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-role {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Documentation Section */
.documentation {
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.docs-status {
    display: inline-block;
    background-color: rgba(255, 157, 0, 0.2);
    color: #ff9d00;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.docs-desc {
    margin-bottom: 25px;
    color: var(--text-secondary);
}

/* Demo Section */
.demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.demo-card {
    max-width: 550px;
    width: 100%;
    padding: 20px;
}

.tweet-link {
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.tweet-link a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.tweet-link a:hover {
    text-decoration: underline;
}

/* Feedback Section */
.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 12px;
    background-color: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    font-family: "Space Mono", monospace;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 0, 87, 0.2);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 60px 0 30px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(245, 0, 87, 0.3);
}

.footer-links h3 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 2px 0;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:hover::after {
    width: 100%;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background-color: rgba(26, 26, 46, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tag:hover {
    background-color: rgba(245, 0, 87, 0.2);
    transform: translateY(-2px);
    border-color: rgba(245, 0, 87, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--text-secondary), transparent);
    margin: 40px 0 20px;
    opacity: 0.2;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(18, 18, 31, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Download Page Specific Styles */
.download-hero {
    height: 60vh;
    min-height: 400px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(245, 0, 87, 0.1), rgba(94, 0, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    border: 1px solid rgba(245, 0, 87, 0.2);
}

.download-icon-wrapper::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    transition: all 0.3s;
}

.download-card:hover .download-icon-wrapper::before {
    opacity: 0.5;
    filter: blur(15px);
}

.download-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.download-platforms {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.platform-badge {
    background: rgba(245, 0, 87, 0.2);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(245, 0, 87, 0.3);
}

.download-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.download-version {
    background: rgba(26, 26, 46, 0.6);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.version-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.version-number {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: bold;
}

.version-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.download-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon {
    position: relative;
    overflow: hidden;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* System Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirements-card {
    padding: 30px;
}

.requirements-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.requirement-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(26, 26, 46, 0.6);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.requirement-item:hover {
    background: rgba(26, 26, 46, 0.8);
    transform: translateX(5px);
}

.requirement-label {
    font-weight: bold;
    color: var(--primary);
    font-size: 0.9rem;
}

.requirement-value {
    color: var(--text-secondary);
}

/* Installation Guide */
.installation-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Space Mono", monospace;
}

.tab-button:hover {
    background: rgba(245, 0, 87, 0.2);
    border-color: rgba(245, 0, 87, 0.3);
}

.tab-button.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 10px rgba(245, 0, 87, 0.3);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.installation-steps {
    margin-left: 20px;
    margin-top: 20px;
}

.installation-steps li {
    margin-bottom: 15px;
}

.installation-steps pre {
    background: rgba(26, 26, 46, 0.8);
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.installation-note {
    background: rgba(255, 157, 0, 0.1);
    border: 1px solid rgba(255, 157, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.installation-note svg {
    color: #ff9d00;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Release Notes */
.release-notes {
    padding: 30px;
}

.release-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.release-badge {
    background-color: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.release-content h4 {
    margin: 20px 0 10px;
    color: var(--primary);
}

.release-list {
    margin-left: 20px;
}

.release-list li {
    margin-bottom: 8px;
}

.release-list.issues li {
    color: #ff9d00;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-toggle svg {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .demo {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .features,
    .team,
    .download-grid,
    .requirements-grid {
        gap: 20px;
    }

    .feature-card,
    .team-member,
    .download-card,
    .requirements-card,
    .timeline-content,
    .tab-content,
    .release-notes,
    .faq-question,
    .faq-answer {
        padding: 25px;
    }

    .footer-content {
        gap: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 100;
        display: none;
    }

    .nav-links.show {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd)::before {
        right: auto;
        left: 20px;
    }

    .tab-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .container {
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .team-member,
    .download-card,
    .requirements-card,
    .timeline-content,
    .tab-content,
    .release-notes,
    .faq-question,
    .faq-answer {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links h3 {
        margin-bottom: 15px;
    }

    .copyright,
    .legal-links a {
        font-size: 0.85rem;
    }

    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .tagline {
        white-space: normal;
        border-right: none;
        animation: none;
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

/* Accessibility Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}