/* Getting Started Page Styles */

:root {
    --bg-page: #0a0a0b;
    --bg-card: #141416;
    --bg-elevated: #1a1a1d;
    --text-primary: #f5f5f4;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent: #f59e0b;
    --border: #27272a;
    --border-light: #3f3f46;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

/* Header */
.gs-header {
    position: relative;
    padding: 140px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.gs-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 40% at 50% 0%,
        rgba(245, 158, 11, 0.15) 0%,
        transparent 60%
    );
}

.gs-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.gs-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Container */
.gs-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Tabs Wrapper */
.gs-tabs-wrapper {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.gs-tabs {
    display: flex;
    gap: 4px;
    padding: 0 24px;
    justify-content: center;
}

.gs-tab {
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gs-tab:hover {
    color: var(--text-secondary);
}

.gs-tab--active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Content */
.gs-content {
    padding: 60px 24px 120px;
}

.gs-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.gs-panel--active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gs-panel > h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gs-panel > p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

/* Steps */
.gs-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    margin-bottom: 56px;
}

.gs-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.gs-step-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.gs-step-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gs-step-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.gs-step-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: disc;
}

.gs-step-content strong {
    color: var(--text-primary);
}

/* Screenshots */
.gs-screenshots {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
    align-items: flex-start;
}

.gs-screenshots img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    object-fit: contain;
}

.gs-widget-wrap {
    height: 180px;
    width: 280px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 4px 20px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.gs-widget-wrap img {
    height: 140px;
    width: auto;
    min-width: 140px;
    border: none;
    border-radius: 12px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Tips */
.gs-tip {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: var(--accent-glow);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    margin-top: 20px;
}

.gs-tip-label {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--bg-page);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    flex-shrink: 0;
}

.gs-tip p,
.gs-tip span:not(.gs-tip-label) {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Tips Panel Styles */
#tips h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

#tips h3:first-child {
    margin-top: 0;
}

#tips ul {
    margin-bottom: 32px;
}

#tips li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    list-style: disc;
    padding-left: 8px;
}

#tips strong {
    color: var(--text-primary);
}

#tips a {
    color: var(--accent);
}

#tips a:hover {
    text-decoration: underline;
}

/* Footer override for getting-started */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
    .gs-header {
        padding: 120px 24px 60px;
    }

    .gs-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .gs-tab {
        white-space: nowrap;
        padding: 14px 18px;
    }

    .gs-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gs-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .gs-screenshots {
        flex-direction: column;
    }

    .gs-screenshots img {
        width: 100%;
    }
}
