/* Developers Page Styles */

/* API Documentation Section */
.api-docs-section {
    background-color: var(--dark-secondary);
    padding: 60px 5%;
    margin-bottom: 40px;
}

.api-category {
    margin-bottom: 60px;
}

.api-category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.api-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.api-product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.api-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.api-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    object-fit: contain;
}

.api-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4cc9f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 150, 255, 0.3);
}

.api-icon i {
    font-size: 2.2rem;
    color: white;
}

.api-product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.api-product-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.api-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.api-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.api-link:hover {
    color: #4cc9f0;
    text-decoration: underline;
}

/* Integration Section */
.integration-section {
    padding: 60px 5%;
    margin-bottom: 40px;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.integration-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.integration-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.integration-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.integration-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
}

.integration-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.integration-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.integration-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
    color: var(--light-text);
}

.integration-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

/* Dev Resources Section */
.dev-resources-section {
    padding: 60px 5%;
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .api-products-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
    }
    
    .api-category-title {
        font-size: 1.5rem;
    }
    
    .api-product-card {
        padding: 20px;
    }
}

/* Hero Section */
.dev-hero {
    background: linear-gradient(135deg, rgba(11, 14, 21, 0.9), rgba(26, 31, 43, 0.9)), url('../../images/heroes/hero2.png') no-repeat center center;
    background-size: cover;
    padding: 8rem 5% 4rem;
    text-align: center;
}

.dev-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 150, 255, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dev-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #b3e0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dev-hero-content p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tertiary-button {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tertiary-button:hover {
    background: rgba(0, 150, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Developer Navigation */
.dev-nav {
    background-color: var(--dark-secondary);
    padding: 0.5rem 5%;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dev-nav-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.dev-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--light-text);
}

.dev-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dev-nav-item.active {
    background-color: rgba(0, 150, 255, 0.1);
    color: var(--primary-color);
}

.dev-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Developer Sections */
.dev-section {
    padding: 5rem 5%;
    display: none;
}

.active-section {
    display: block;
}

.dev-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Documentation Intro */
.docs-intro {
    background-color: var(--dark-secondary);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.docs-intro-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.docs-intro-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.docs-paths {
    display: flex;
    gap: 2rem;
}

.docs-path {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
}

.docs-path h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.docs-path h4 i {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.docs-path p {
    color: var(--light-text);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.path-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.path-link:hover {
    transform: translateX(5px);
}

/* Documentation Cards */
.docs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.doc-card {
    background-color: var(--dark-secondary);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.doc-card.featured {
    border: 1px solid rgba(0, 150, 255, 0.3);
    background: linear-gradient(to bottom, rgba(0, 150, 255, 0.1), var(--dark-secondary));
}

.doc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.doc-icon {
    background: linear-gradient(135deg, #0096FF, #4cc9f0);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.doc-icon i {
    font-size: 1.6rem;
    color: white;
}

.doc-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
}

.doc-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.doc-features {
    margin-bottom: 1.5rem;
    list-style: none;
}

.doc-features li {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.doc-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.doc-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.doc-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.doc-link:hover {
    transform: translateY(-2px);
}

.doc-link:hover i {
    transform: translateX(5px);
}

/* Additional Resources */
.docs-resources {
    margin-top: 4rem;
}

.docs-resources h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.resource-item {
    background-color: var(--dark-secondary);
    border-radius: 8px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.resource-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.resource-item span {
    font-weight: 500;
}

.resource-item:hover {
    background-color: rgba(0, 150, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

/* API Explorer */
.api-explorer {
    display: flex;
    background-color: var(--dark-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.api-sidebar {
    width: 250px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    flex-shrink: 0;
}

.api-group {
    margin-bottom: 2rem;
}

.api-group h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light-text);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.api-group ul {
    list-style: none;
}

.api-group ul li {
    margin-bottom: 0.2rem;
}

.api-group ul li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--light-text);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.api-group ul li.active a,
.api-group ul li a:hover {
    background-color: rgba(0, 150, 255, 0.1);
    color: var(--primary-color);
}

.api-content {
    flex: 1;
    padding: 3rem;
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.api-header h3 {
    font-size: 1.8rem;
    color: white;
}

.api-version {
    background-color: rgba(0, 150, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.api-description {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.endpoint {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 6px;
}

.http-method {
    background-color: #00b894;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
}

.endpoint-path {
    font-family: monospace;
    font-size: 1rem;
    color: white;
}

.api-content h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.api-content pre {
    margin-bottom: 2rem;
    border-radius: 6px;
    overflow: hidden;
}

.api-examples {
    margin-top: 3rem;
}

.code-tabs {
    display: flex;
    margin-bottom: 1rem;
}

.code-tab {
    background: none;
    border: none;
    color: var(--light-text);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.code-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.code-panel {
    display: none;
}

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

/* SDK Cards */
.sdk-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.sdk-card {
    background-color: var(--dark-secondary);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sdk-logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sdk-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.sdk-version {
    display: inline-block;
    background-color: rgba(0, 150, 255, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sdk-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.sdk-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sdk-button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sdk-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.sdk-button.primary:hover {
    background-color: #0084e3;
}

.sdk-button.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.sdk-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sdk-install {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.sdk-install pre {
    margin: 0;
    padding: 0.8rem;
    font-size: 0.9rem;
}

.sdk-install code {
    color: #f8f8f2;
}

/* Examples */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.example-card {
    background-color: var(--dark-secondary);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.example-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.example-icon {
    background: linear-gradient(135deg, #0096FF, #4cc9f0);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.example-icon i {
    font-size: 1.2rem;
    color: white;
}

.example-card h3 {
    font-size: 1.3rem;
    color: white;
}

.example-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.example-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--light-text);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.example-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.example-link:hover {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background-color: var(--dark-secondary);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.support-icon {
    background: linear-gradient(135deg, #0096FF, #4cc9f0);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.support-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.support-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-button:hover {
    background-color: #0084e3;
    transform: translateY(-2px);
}

/* API Playground */
.playground-container {
    display: flex;
    background-color: var(--dark-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.playground-sidebar {
    width: 250px;
    background-color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.endpoint-list {
    padding: 1rem 0;
}

.endpoint-category {
    margin-bottom: 1.5rem;
}

.endpoint-category h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light-text);
    padding: 0 1.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.endpoint-category ul {
    list-style: none;
}

.endpoint-category ul li {
    margin-bottom: 0.2rem;
}

.endpoint-category ul li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--light-text);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.endpoint-category ul li.active a,
.endpoint-category ul li a:hover {
    background-color: rgba(0, 150, 255, 0.1);
    color: var(--primary-color);
}

.playground-content {
    flex: 1;
    padding: 0;
}

.playground-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playground-header h3 {
    font-size: 1.4rem;
    color: white;
    margin: 0;
}

.playground-actions {
    display: flex;
    gap: 0.8rem;
}

.http-method-select {
    background-color: var(--dark-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.endpoint-url {
    background-color: var(--dark-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.playground-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playground-button:hover {
    background-color: #0084e3;
}

.playground-editor {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-tab {
    background: none;
    border: none;
    color: var(--light-text);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.editor-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.editor-content {
    display: none;
    padding: 1.5rem;
}

.editor-content.active {
    display: block;
}

.param-editor {
    width: 100%;
}

.param-row {
    display: flex;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.param-row.header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.param-key, .param-value {
    flex: 1;
}

.param-key input, .param-value input {
    width: 100%;
    background-color: var(--dark-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.param-actions {
    display: flex;
    align-items: center;
}

.delete-param {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.delete-param:hover {
    color: #ff4d4d;
}

.add-param {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.add-param:hover {
    background-color: rgba(0, 150, 255, 0.1);
}

.no-params-message {
    color: var(--light-text);
    font-style: italic;
}

.playground-response {
    padding: 1.5rem;
}

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.response-header h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.response-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.response-status {
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.response-status.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.response-status.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.response-time {
    color: var(--light-text);
    font-size: 0.9rem;
}

.response-body {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
}

/* Webhooks Section */
.webhooks-overview {
    background-color: var(--dark-secondary);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.overview-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.webhook-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.benefit-icon {
    background: linear-gradient(135deg, #0096FF, #4cc9f0);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: white;
}

.benefit-content h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

.webhook-events {
    margin-bottom: 3rem;
}

.webhook-events h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.webhook-events > p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: var(--dark-secondary);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.event-icon {
    background: linear-gradient(135deg, #0096FF, #4cc9f0);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-icon i {
    font-size: 1.2rem;
    color: white;
}

.event-content h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.event-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-list li {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-family: monospace;
    font-size: 0.95rem;
}

.webhook-setup {
    margin-bottom: 3rem;
}

.webhook-setup h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #0096FF, #4cc9f0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.code-preview {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-link, .testing-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.dashboard-link i, .testing-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dashboard-link:hover i, .testing-link:hover i {
    transform: translateX(5px);
}

.webhook-testing {
    background-color: var(--dark-secondary);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.webhook-testing h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.webhook-testing p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .api-explorer,
    .playground-container {
        flex-direction: column;
    }
    
    .api-sidebar,
    .playground-sidebar {
        width: 100%;
        padding: 1rem;
    }
    
    .api-group,
    .endpoint-category {
        margin-bottom: 1rem;
    }
    
    .api-group ul,
    .endpoint-category ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .api-group ul li,
    .endpoint-category ul li {
        margin-right: 0.5rem;
    }
    
    .dev-nav-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }
    
    .dev-nav-item {
        flex: 0 0 auto;
    }
    
    .webhook-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .setup-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .dev-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .dev-hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .sdk-buttons {
        flex-direction: column;
    }
    
    .playground-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .playground-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .endpoint-url {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .docs-cards, 
    .sdk-cards, 
    .examples-grid, 
    .support-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .api-content {
        padding: 1.5rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-icon {
        margin-bottom: 1rem;
    }
    
    .param-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .param-row.header {
        display: none;
    }
}