* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --roblox-blue: #0078D7;
    --roblox-blue-light: #00A8FF;
    --roblox-blue-dark: #005A9E;
    --dark: #1A1A1A;
    --darker: #0D0D0D;
    --light: #FFFFFF;
    --gray: #F0F0F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Gotham', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 0;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0078D7;
}

.logo svg {
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #0078D7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0078D7;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero-icon {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #0078D7;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.badge {
    background: #f0f7ff;
    border: 1px solid #0078D7;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s;
    color: #0078D7;
    font-size: 0.9rem;
}

.badge:hover {
    background: #e0f0ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 120, 215, 0.15);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--roblox-blue), var(--roblox-blue-light));
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 120, 215, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 120, 215, 0.6);
    border-color: var(--roblox-blue-light);
}

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0078D7;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0078D7;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.large-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.official-info {
    background: rgba(0, 120, 215, 0.1);
    border: 2px solid rgba(0, 120, 215, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #444;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #0078D7;
}

.info-link {
    color: #0078D7;
    text-decoration: none;
    border-bottom: 1px solid #0078D7;
    transition: all 0.3s;
}

.info-link:hover {
    color: #005A9E;
    border-bottom-color: #005A9E;
}

.info-value {
    color: #333;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.feature-list li:hover {
    color: var(--roblox-blue-light);
    padding-left: 10px;
}

.mockup {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(0, 120, 215, 0.2);
    border: 2px solid var(--roblox-blue);
}

.screen {
    background: #0D0D0D;
    border-radius: 10px;
    padding: 2rem;
}

.app-interface {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-header {
    background: linear-gradient(135deg, var(--roblox-blue), var(--roblox-blue-light));
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 120, 215, 0.3);
}

.executor-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.script-panel {
    background: rgba(0, 120, 215, 0.05);
    border: 1px solid rgba(0, 120, 215, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.script-header {
    color: var(--roblox-blue-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.script-content {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #00ff88;
    line-height: 1.8;
}

.code-line {
    padding: 0.25rem 0;
}

.features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-badge {
    background: rgba(0, 120, 215, 0.2);
    border: 1px solid var(--roblox-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--roblox-blue-light);
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--roblox-blue), var(--roblox-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--roblox-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 120, 215, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 120, 215, 0.5));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0078D7;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.download-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.download-card:hover {
    border-color: #0078D7;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 120, 215, 0.15);
}

.download-card.featured {
    border-color: #0078D7;
    border-width: 2px;
    background: #f0f7ff;
}

.platform-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0078D7;
    color: #fff;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 120, 215, 0.3);
}

.platform-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.windows-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 120, 215, 0.3));
}

.android-icon svg {
    filter: drop-shadow(0 4px 8px rgba(61, 220, 132, 0.3));
}

.ios-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.download-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #0078D7;
    font-weight: 700;
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.version-info {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #888;
}

.version-info span {
    background: #f0f0f0;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
}

.download-btn {
    display: block;
    background: #0078D7;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.25);
    border: 2px solid transparent;
}

.download-btn:hover {
    background: #005A9E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 120, 215, 0.35);
}

.download-btn.secondary {
    background: #ffffff;
    color: #0078D7;
    border: 2px solid #0078D7;
    box-shadow: 0 2px 8px rgba(0, 120, 215, 0.1);
}

.download-btn.secondary:hover {
    background: #f0f7ff;
    border-color: #005A9E;
    color: #005A9E;
}

.installation-guide {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

.installation-guide h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0078D7;
    font-size: 1.75rem;
    font-weight: 700;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-step {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guide-step:hover {
    background: #f0f7ff;
    border-color: #0078D7;
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.1);
}

.guide-step h4 {
    color: #0078D7;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.guide-step ol {
    margin-left: 1.5rem;
    color: #444;
}

.guide-step li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.key-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.key-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.key-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.key-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--roblox-blue), var(--roblox-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.key-card:hover::before {
    transform: scaleX(1);
}

.key-card:hover {
    border-color: #0078D7;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 120, 215, 0.15);
}

.key-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    filter: drop-shadow(0 0 15px rgba(0, 120, 215, 0.5));
}

.key-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #0078D7;
    text-align: center;
    font-weight: 700;
}

.key-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.key-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f0f7ff;
    border-left: 3px solid #0078D7;
    border-radius: 8px;
    transition: all 0.3s;
}

.key-step:hover {
    background: #e0f0ff;
    border-left-color: #00A8FF;
    transform: translateX(5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--roblox-blue), var(--roblox-blue-light));
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 120, 215, 0.4);
}

.key-step p {
    color: #444;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.key-step strong {
    color: #0078D7;
    font-weight: 600;
}

.key-note {
    background: #f0f7ff;
    border: 2px solid #0078D7;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.key-note p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.key-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--roblox-blue), var(--roblox-blue-light));
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 120, 215, 0.4);
    border: 2px solid transparent;
}

.key-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 120, 215, 0.6);
    border-color: var(--roblox-blue-light);
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-horizontal-scroll {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-spoiler {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.faq-spoiler:hover {
    border-color: #0078D7;
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.15);
    transform: translateY(-2px);
}

.faq-spoiler.active {
    border-color: #0078D7;
    box-shadow: 0 6px 16px rgba(0, 120, 215, 0.2);
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: #f0f7ff;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0078D7;
    flex: 1;
    line-height: 1.5;
    margin: 0;
}

.faq-icon {
    font-size: 0.8rem;
    color: #0078D7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-spoiler.active .faq-icon {
    transform: rotate(180deg);
    color: #00A8FF;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-spoiler.active .faq-content {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.75rem;
    font-size: 0.9rem;
}

.footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 2rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
}

.footer-note a {
    color: #0078D7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-note a:hover {
    color: #005A9E;
}

/* Roblox Elements */
.roblox-blocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.roblox-blocks::before,
.roblox-blocks::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 120, 215, 0.1);
    border: 2px solid rgba(0, 120, 215, 0.3);
    transform: rotate(45deg);
    animation: blockFloat 20s infinite ease-in-out;
}

.roblox-blocks::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.roblox-blocks::after {
    top: 60%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes blockFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-30px);
    }
}

.roblox-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 120, 215, 0.1) 10px, rgba(0, 120, 215, 0.1) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 168, 255, 0.1) 10px, rgba(0, 168, 255, 0.1) 20px);
    pointer-events: none;
}

/* Roblox Avatar */
.roblox-avatar-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.roblox-avatar {
    width: 80px;
    height: 80px;
    position: relative;
    animation: avatarBounce 2s ease-in-out infinite;
}

@keyframes avatarBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.avatar-face {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #0078D7;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 120, 215, 0.4);
}

.avatar-face::before,
.avatar-face::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0078D7;
    border-radius: 50%;
    top: 20px;
}

.avatar-face::before {
    left: 15px;
}

.avatar-face::after {
    right: 15px;
}

.avatar-body {
    width: 50px;
    height: 40px;
    background: #0078D7;
    border-radius: 5px;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 10px rgba(0, 120, 215, 0.3);
}

.roblox-badge-icon {
    font-size: 3rem;
    margin: 1rem 0;
    animation: badgeSpin 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 120, 215, 0.6));
}

@keyframes badgeSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Roblox Card Styles */
.roblox-card {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.roblox-card-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 20px solid var(--roblox-blue);
    border-right: 20px solid transparent;
    border-radius: 8px 0 0 0;
}

.roblox-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.roblox-icon {
    position: relative;
    z-index: 2;
}

.roblox-style-badge {
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.3), rgba(0, 168, 255, 0.3));
    border: 2px solid var(--roblox-blue);
    box-shadow: 0 2px 8px rgba(0, 120, 215, 0.4);
    transition: all 0.3s;
}

.roblox-style-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.6);
}

/* Roblox Toolbar */
.roblox-toolbar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.toolbar-btn {
    flex: 1;
    background: rgba(0, 120, 215, 0.2);
    border: 2px solid var(--roblox-blue);
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--roblox-blue-light);
    cursor: pointer;
    transition: all 0.3s;
}

.toolbar-btn:hover {
    background: rgba(0, 120, 215, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 120, 215, 0.3);
}

/* Roblox Logo Small */
.roblox-logo-small {
    display: inline-block;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Roblox Status Indicator */
.roblox-status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-left: 0.5rem;
    animation: statusPulse 2s infinite;
    box-shadow: 0 0 8px #00ff88;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.script-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Code Syntax Highlighting */
.code-comment {
    color: #888;
    font-style: italic;
}

.code-keyword {
    color: #00A8FF;
    font-weight: 600;
}

.code-property {
    color: #00ff88;
}

.code-number {
    color: #ff6b6b;
}

/* Roblox Blocks Preview */
.roblox-blocks-preview {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.preview-block {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--roblox-blue), var(--roblox-blue-light));
    border: 2px solid var(--roblox-blue-light);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 120, 215, 0.4);
    animation: blockRotate 4s infinite ease-in-out;
    position: relative;
}

.preview-block:nth-child(2) {
    animation-delay: 0.5s;
}

.preview-block:nth-child(3) {
    animation-delay: 1s;
}

@keyframes blockRotate {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.preview-block::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Additional Roblox Elements */
.hero {
    position: relative;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .download-grid,
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-horizontal-scroll {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .faq-spoiler {
        min-height: auto;
    }
    
    .key-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .key-card {
        padding: 1.5rem;
    }
    
    .key-step {
        padding: 1rem;
        gap: 1rem;
    }
    
    .key-link-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .roblox-avatar-container {
        position: relative;
        top: 0;
        right: 0;
        margin: 1rem auto;
        display: flex;
        justify-content: center;
    }
    
    .roblox-blocks-preview {
        flex-wrap: wrap;
    }
}
