.peer-title{
	font-size: 50px;
  	line-height: 108%;
  	font-family: Poppins;
  	color: #12567f;
    font-weight: 700;
    margin-top: 20px;
}
.peer-title-blue{
    background: linear-gradient(90deg, #0082cf, #58b5eb);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}

.peer-desc{
    text-align: center;
  	line-height: 1.6;
  	font-weight: 500;
  	font-family: Poppins;
    color: #555;
    font-size: 1.1rem;    
    margin-bottom: 40px;
    max-width: 1000px;
}
.bg-world{
    background-image: url('/public/assets/media/world.svg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left;
}
.peer-card{
    box-shadow: 5px 8px 13.9px rgba(0, 0, 0, 0.11);
  	background-color: #fff;
  	border: 1px solid #f1f5f9;
  	box-sizing: border-box;
  	font-size: 16px;
  	color: #1e293b;
  	font-family: Poppins;
    padding: 75px 60px;
    padding: 33px;
    border-radius: 12px;
}
.peer-card-blue{
     background: linear-gradient(90deg, #0082cf, #002941);
     color: #fff!important;
}
.peer-card-blue .peer-title, .peer-card-blue .peer-desc{
         color: #fff!important;

}
.peer-card-title{
  	color: #12567f;
    font-size: 18px;
  	line-height: 28px;
}
.peer-desc{
	font-size: 14px;
  	line-height: 22.75px;
  	font-family: Poppins;
  	color: #64748b;
}
.card-bg{
    background: linear-gradient(180deg, #fff, #0d79bb);
  padding: 40px;
  border-radius: 12px;
}

/* Teknik Kaynaklar Sayfası Ek Stilleri */
.documents-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins';
    color: #068bdb;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #12567f;
    font-family: 'Poppins';
    max-width: 700px;
    margin: 0 auto;
}

/* Filtre Bölümü */
.filter-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #068bdb;
    background: transparent;
    color: #068bdb;
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border-color: transparent;
}

/* Belge Kartları */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.document-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.document-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 139, 219, 0.15);
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4fc, #d0ebf9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.document-icon svg {
    width: 30px;
    height: 30px;
    color: #068bdb;
}

.document-category {
    display: inline-block;
    padding: 5px 12px;
    background: #e8f4fc;
    color: #068bdb;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    font-family: 'Inter';
}

.document-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 12px;
    line-height: 1.4;
}

.document-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    line-height: 1.6;
    margin-bottom: 20px;
}

.document-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.document-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #9ca3af;
    font-family: 'Inter';
}

.document-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter';
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(90deg, #006bb3, #0082cf);
    transform: scale(1.05);
}

/* Öne Çıkan Belge */
.featured-document {
    background: linear-gradient(135deg, #12567f, #068bdb);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.featured-document::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.featured-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.featured-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Inter';
}

.featured-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.featured-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter';
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #fff;
    color: #068bdb;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter';
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-image {
    width: 280px;
    height: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.featured-image svg {
    width: 80px;
    height: 80px;
    color: #068bdb;
}

/* İstatistikler */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins';
}

.stat-label {
    font-size: 15px;
    color: #6b7280;
    font-family: 'Inter';
    margin-top: 8px;
}

/* Abone Ol Bölümü */
.subscribe-section {
    background: linear-gradient(90deg, #000, #444445);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.subscribe-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 10px;
}

.subscribe-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
}

.subscribe-form {
    display: flex;
    gap: 15px;
}

.subscribe-form input {
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-family: 'Inter';
    width: 300px;
    outline: none;
}

.subscribe-form button {
    padding: 15px 30px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter';
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-document {
        flex-direction: column;
        text-align: center;
    }
    .featured-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .subscribe-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }
    .subscribe-form input {
        width: 100%;
    }
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 540px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    .filter-section {
        flex-direction: column;
        align-items: center;
    }
    .filter-btn {
        width: 100%;
        max-width: 280px;
    }
}

.api-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins';
    color: #068bdb;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #12567f;
    font-family: 'Poppins';
    max-width: 800px;
    margin: 0 auto;
}

/* API Hero Stats */
.api-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.api-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #068bdb;
    transition: all 0.3s ease;
}

.api-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 139, 219, 0.15);
}

.api-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4fc, #d0ebf9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.api-stat-icon svg {
    width: 28px;
    height: 28px;
    color: #068bdb;
}

.api-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
}

.api-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    margin-top: 5px;
}

/* Quick Start Section */
.quick-start-section {
    background: linear-gradient(135deg, #12567f 0%, #068bdb 100%);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.quick-start-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.quick-start-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.quick-start-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
    margin: 0;
}

.api-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 500;
}

.quick-start-content {
    position: relative;
    z-index: 2;
}

.base-url-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.base-url-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter';
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.base-url-value {
    font-size: 18px;
    color: #fff;
    font-family: 'Monaco', 'Menlo', monospace;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter';
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.quick-start-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.quick-step-number {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #068bdb;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.quick-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter';
    margin-bottom: 8px;
}

.quick-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    line-height: 1.5;
    margin: 0;
}

/* Authentication Section */
.auth-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.auth-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-section h3 svg {
    width: 28px;
    height: 28px;
    color: #068bdb;
}

.auth-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.auth-method-card {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.auth-method-card:hover {
    border-color: #068bdb;
    background: #f8fafc;
}

.auth-method-card.recommended {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.auth-method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.auth-method-name {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
}

.recommended-badge {
    padding: 4px 12px;
    background: #10b981;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'Inter';
}

.auth-method-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    line-height: 1.6;
    margin: 0;
}

/* Code Block Styles */
.code-block {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #2d2d2d;
    border-bottom: 1px solid #3d3d3d;
}

.code-lang {
    display: flex;
    gap: 10px;
}

.code-lang button {
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 13px;
    font-family: 'Inter';
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.code-lang button.active {
    background: #068bdb;
    color: #fff;
}

.code-lang button:hover:not(.active) {
    background: #3d3d3d;
}

.code-copy {
    background: transparent;
    border: 1px solid #4d4d4d;
    border-radius: 6px;
    padding: 6px 12px;
    color: #9ca3af;
    font-size: 12px;
    font-family: 'Inter';
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.code-copy:hover {
    border-color: #068bdb;
    color: #068bdb;
}

.code-content {
    padding: 20px;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* API Endpoints Section */
.endpoints-section {
    margin-bottom: 60px;
}

.endpoints-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.endpoints-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    margin: 0;
}

.endpoints-filter {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter';
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #068bdb;
    color: #068bdb;
    background: #e8f4fc;
}

/* Endpoint Categories */
.endpoint-category {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-header {
    padding: 25px 30px;
    background: linear-gradient(90deg, #f8fafc, #fff);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #068bdb, #58b5eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 4px;
}

.category-desc {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
}

.category-count {
    padding: 8px 16px;
    background: #e8f4fc;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #068bdb;
    font-family: 'Inter';
}

.category-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-toggle svg {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.category-header.open .category-toggle svg {
    transform: rotate(180deg);
}

/* Endpoint List */
.endpoint-list {
    display: none;
    padding: 0;
}

.endpoint-list.open {
    display: block;
}

.endpoint-item {
    padding: 20px 30px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.endpoint-item:last-child {
    border-bottom: none;
}

.endpoint-item:hover {
    background: #f8fafc;
}

.endpoint-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-badge {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter';
    min-width: 60px;
    text-align: center;
}

.method-badge.get {
    background: #dcfce7;
    color: #15803d;
}

.method-badge.post {
    background: #dbeafe;
    color: #1d4ed8;
}

.method-badge.put {
    background: #fef3c7;
    color: #b45309;
}

.method-badge.delete {
    background: #fee2e2;
    color: #dc2626;
}

.method-badge.patch {
    background: #e9d5ff;
    color: #7c3aed;
}

.endpoint-path {
    font-size: 15px;
    font-family: 'Monaco', 'Menlo', monospace;
    color: #12567f;
}

.endpoint-desc {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    margin-left: 20px;
}

.endpoint-actions {
    display: flex;
    gap: 10px;
}

.try-btn {
    padding: 8px 16px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter';
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-btn:hover {
    transform: scale(1.05);
}

.docs-btn {
    padding: 8px 16px;
    background: #fff;
    color: #068bdb;
    border: 1px solid #068bdb;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter';
    cursor: pointer;
    transition: all 0.3s ease;
}

.docs-btn:hover {
    background: #e8f4fc;
}

/* SDK Section */
.sdk-section {
    margin-bottom: 60px;
}

.sdk-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 30px;
    text-align: center;
}

.sdk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sdk-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sdk-card:hover {
    border-color: #068bdb;
    transform: translateY(-5px);
}

.sdk-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdk-icon img {
    max-width: 100%;
    max-height: 100%;
}

.sdk-name {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 8px;
}

.sdk-version {
    font-size: 13px;
    color: #9ca3af;
    font-family: 'Inter';
    margin-bottom: 15px;
}

.sdk-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sdk-link {
    padding: 8px 14px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Inter';
    text-decoration: none;
    transition: all 0.3s ease;
}

.sdk-link:hover {
    background: #068bdb;
    color: #fff;
}

/* Rate Limits Section */
.rate-limits-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rate-limits-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rate-limits-section h3 svg {
    width: 28px;
    height: 28px;
    color: #068bdb;
}

.rate-limits-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-limits-table th,
.rate-limits-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.rate-limits-table th {
    background: #f8fafc;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    font-family: 'Inter';
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-limits-table td {
    font-size: 15px;
    color: #12567f;
    font-family: 'Inter';
}

.rate-limits-table tr:last-child td {
    border-bottom: none;
}

.plan-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter';
}

.plan-badge.free {
    background: #f3f4f6;
    color: #6b7280;
}

.plan-badge.starter {
    background: #dbeafe;
    color: #1d4ed8;
}

.plan-badge.professional {
    background: #dcfce7;
    color: #15803d;
}

.plan-badge.enterprise {
    background: #fef3c7;
    color: #b45309;
}

/* Error Codes Section */
.error-codes-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.error-codes-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 30px;
}

.error-codes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.error-code-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid;
}

.error-code-item.info {
    border-left-color: #3b82f6;
}

.error-code-item.success {
    border-left-color: #10b981;
}

.error-code-item.redirect {
    border-left-color: #f59e0b;
}

.error-code-item.client-error {
    border-left-color: #ef4444;
}

.error-code-item.server-error {
    border-left-color: #8b5cf6;
}

.error-code-number {
    font-size: 20px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Monaco', monospace;
    min-width: 50px;
}

.error-code-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Inter';
    margin-bottom: 4px;
}

.error-code-info p {
    font-size: 13px;
    color: #6b7280;
    font-family: 'Inter';
    margin: 0;
}

/* Webhook Section */
.webhook-section {
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.webhook-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.webhook-section > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    margin-bottom: 30px;
}

.webhook-events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.webhook-event {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.webhook-event-name {
    font-size: 14px;
    font-family: 'Monaco', monospace;
    color: #10b981;
    margin-bottom: 8px;
}

.webhook-event-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter';
}

/* Support Section */
.api-support-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.support-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 139, 219, 0.15);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4fc, #d0ebf9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon svg {
    width: 28px;
    height: 28px;
    color: #068bdb;
}

.support-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 10px;
}

.support-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    margin-bottom: 20px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #068bdb;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter';
    text-decoration: none;
}

.support-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
    .api-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sdk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .quick-start-steps {
        grid-template-columns: 1fr;
    }
    
    .auth-methods {
        grid-template-columns: 1fr;
    }
    
    .webhook-events {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .error-codes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .api-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .sdk-grid {
        grid-template-columns: 1fr;
    }
    
    .webhook-events {
        grid-template-columns: 1fr;
    }
    
    .api-support-section {
        grid-template-columns: 1fr;
    }
    
    .endpoint-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .endpoint-actions {
        width: 100%;
    }
    
    .try-btn,
    .docs-btn {
        flex: 1;
        text-align: center;
    }
    
    .quick-start-section {
        padding: 30px 20px;
    }
    
    .base-url-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .rate-limits-table {
        font-size: 14px;
    }
    
    .rate-limits-table th,
    .rate-limits-table td {
        padding: 12px 10px;
    }
}


.bg-world {
    padding: 80px 0;
    position: relative;
}

.bg-world::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23068bdb' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.peer-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins';
    color: #12567f;
}

.peer-title-blue {
    color: #068bdb;
}

.peer-desc {
    font-size: 16px;
    color: #6b7280;
    font-family: 'Inter';
    line-height: 1.7;
    max-width: 800px;
}

.card-bg {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.peer-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.peer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 139, 219, 0.15);
    border-color: #068bdb;
}

.peer-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
}

/* ASN Info Section */
.asn-section {
    padding: 80px 0;
}

.asn-main-card {
    background: linear-gradient(135deg, #12567f 0%, #068bdb 50%, #58b5eb 100%);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.asn-main-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.asn-main-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.asn-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.asn-info h3 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter';
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.asn-number {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins';
    line-height: 1;
    margin-bottom: 10px;
}

.asn-name {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter';
    margin-bottom: 20px;
}

.asn-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.asn-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter';
    backdrop-filter: blur(10px);
}

.asn-badge svg {
    width: 18px;
    height: 18px;
}

.asn-stats {
    display: flex;
    gap: 30px;
}

.asn-stat {
    text-align: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.asn-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
}

.asn-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    margin-top: 5px;
}

/* Policy Types Section */
.policy-types-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    text-align: center;
    margin-bottom: 15px;
}

.section-title span {
    color: #068bdb;
}

.section-desc {
    font-size: 18px;
    color: #6b7280;
    font-family: 'Inter';
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.policy-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.policy-type-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.policy-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 139, 219, 0.15);
}

.policy-type-card:hover::before {
    transform: scaleX(1);
}

.policy-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4fc, #d0ebf9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.policy-type-icon svg {
    width: 40px;
    height: 40px;
    color: #068bdb;
}

.policy-type-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.policy-type-card p {
    font-size: 15px;
    color: #6b7280;
    font-family: 'Inter';
    line-height: 1.7;
    margin-bottom: 25px;
}

.policy-features {
    text-align: left;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    list-style: none;
    margin: 0;
}

.policy-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #4b5563;
    font-family: 'Inter';
    border-bottom: 1px solid #e5e7eb;
}

.policy-features li:last-child {
    border-bottom: none;
}

.policy-features li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

/* IX Points Section */
.ix-section {
    padding: 80px 0;
    background: #fff;
}

.ix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.ix-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #12567f;
    font-family: 'Poppins';
    margin: 0;
}

.ix-view-toggle {
    display: flex;
    gap: 10px;
}

.ix-view-toggle button {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ix-view-toggle button.active,
.ix-view-toggle button:hover {
    border-color: #068bdb;
    color: #068bdb;
    background: #e8f4fc;
}

.ix-view-toggle button svg {
    width: 18px;
    height: 18px;
}

.ix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ix-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.ix-card:hover {
    border-color: #068bdb;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 139, 219, 0.12);
}

.ix-card.active {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.ix-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.ix-name {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
}

.ix-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter';
}

.ix-status.online {
    background: #dcfce7;
    color: #15803d;
}

.ix-status.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.ix-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    margin-bottom: 20px;
}

.ix-location svg {
    width: 16px;
    height: 16px;
    color: #9ca3af;
}

.ix-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.ix-stat {
    text-align: center;
}

.ix-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #068bdb;
    font-family: 'Poppins';
}

.ix-stat-label {
    font-size: 11px;
    color: #9ca3af;
    font-family: 'Inter';
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #12567f 0%, #068bdb 100%);
    position: relative;
    overflow: hidden;
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.requirements-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.requirement-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #068bdb;
    font-family: 'Poppins';
    flex-shrink: 0;
}

.requirement-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter';
    margin-bottom: 8px;
}

.requirement-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter';
    line-height: 1.6;
    margin: 0;
}

/* Technical Policies Section */
.technical-section {
    padding: 80px 0;
    background: #f8fafc;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.technical-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #068bdb;
    transition: all 0.3s ease;
}

.technical-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(6, 139, 219, 0.1);
}

.technical-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #068bdb, #58b5eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.technical-card-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.technical-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
    margin-bottom: 10px;
}

.technical-card p {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter';
    line-height: 1.6;
    margin: 0;
}

/* PeeringDB Section */
.peeringdb-section {
    padding: 80px 0;
    background: #fff;
}

.peeringdb-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.peeringdb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.peeringdb-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.peeringdb-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #068bdb, #12567f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peeringdb-logo-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.peeringdb-logo span {
    font-size: 22px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Poppins';
}

.peeringdb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter';
    text-decoration: none;
    transition: all 0.3s ease;
}

.peeringdb-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 139, 219, 0.3);
}

.peeringdb-link svg {
    width: 18px;
    height: 18px;
}

.peeringdb-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.peeringdb-info-item {
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.peeringdb-info-item label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    font-family: 'Inter';
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.peeringdb-info-item span {
    font-size: 18px;
    font-weight: 600;
    color: #12567f;
    font-family: 'Inter';
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #1a1a2e, #16213e);
}

.contact-cta-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.contact-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter';
    margin: 0;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter';
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(6, 139, 219, 0.4);
}

.cta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter';
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .ix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .peeringdb-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .policy-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .asn-content {
        flex-direction: column;
        text-align: center;
    }
    
    .asn-badges {
        justify-content: center;
    }
    
    .asn-stats {
        justify-content: center;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .technical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .peer-title {
        font-size: 32px;
    }
    
    .policy-types-grid {
        grid-template-columns: 1fr;
    }
    
    .ix-grid {
        grid-template-columns: 1fr;
    }
    
    .ix-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .asn-number {
        font-size: 48px;
    }
    
    .asn-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .peeringdb-info-grid {
        grid-template-columns: 1fr;
    }
    
    .peeringdb-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Sistem Durumu Banner */
.system-status-banner {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    flex-shrink: 0;
}

.status-content {
    flex: 1;
}

.status-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.status-time {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Section Title */
.section-title-status {
    font-size: 32px;
    font-weight: 700;
    color: #12567F;
    font-family: 'Poppins', sans-serif;
}

/* Services Container */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-category {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #12567F;
    margin: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    color: #068BDB;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #F3F4F6;
    transform: translateX(4px);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.service-location {
    font-size: 14px;
    color: #6B7280;
    font-family: 'Inter', sans-serif;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 6px 12px;
    border-radius: 20px;
}

.service-status.operational {
    color: #059669;
    background: #D1FAE5;
}

.service-status.degraded {
    color: #D97706;
    background: #FEF3C7;
}

.service-status.outage {
    color: #DC2626;
    background: #FEE2E2;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

/* Maintenance Section */
.maintenance-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.maintenance-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #068BDB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.maintenance-item.upcoming {
    border-left-color: #F59E0B;
    background: #FFFBEB;
}

.maintenance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.maintenance-badge {
    background: linear-gradient(90deg, #F59E0B, #D97706);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.maintenance-date {
    font-size: 14px;
    color: #6B7280;
    font-family: 'Inter', sans-serif;
}

.maintenance-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.maintenance-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-family: 'Inter', sans-serif;
}

.maintenance-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.affected-service {
    background: #E5E7EB;
    color: #374151;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.no-maintenance {
    text-align: center;
    padding: 40px;
    background: #F9FAFB;
    border-radius: 12px;
}

.no-maintenance i {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 16px;
}

.no-maintenance p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Incidents Timeline */
.incidents-timeline {
    position: relative;
}

.timeline-month {
    margin: 32px 0 16px 0;
}

.timeline-month h3 {
    font-size: 18px;
    font-weight: 700;
    color: #12567F;
    font-family: 'Poppins', sans-serif;
}

.incident-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border-left: 4px solid #10B981;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.incident-date {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.incident-status {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.status-badge.resolved {
    background: #D1FAE5;
    color: #059669;
}

.status-badge.investigating {
    background: #FEF3C7;
    color: #D97706;
}

.duration {
    font-size: 13px;
    color: #6B7280;
    font-family: 'Inter', sans-serif;
}

.incident-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.incident-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-family: 'Inter', sans-serif;
}

.incident-timeline-details {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-update {
    display: flex;
    gap: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.update-time {
    color: #6B7280;
    font-weight: 600;
    min-width: 50px;
}

.update-text {
    color: #374151;
}

.view-all-incidents {
    color: #068BDB;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-incidents:hover {
    gap: 12px;
}

/* Metrics Cards */
.metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.metric-icon.uptime {
    background: #D1FAE5;
    color: #059669;
}

.metric-icon.response {
    background: #DBEAFE;
    color: #0082CF;
}

.metric-icon.incidents {
    background: #FEF3C7;
    color: #D97706;
}

.metric-icon.resolution {
    background: #E0E7FF;
    color: #6366F1;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.metric-label {
    font-size: 14px;
    color: #6B7280;
    font-family: 'Inter', sans-serif;
}

/* Subscription Banner */
.subscription-banner {
    background: linear-gradient(135deg, #12567F 0%, #068BDB 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.subscription-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.subscription-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.subscription-form {
    display: flex;
    gap: 12px;
    min-width: 400px;
}

.subscription-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.subscription-btn {
    background: #fff;
    color: #068BDB;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscription-btn:hover {
    background: #F3F4F6;
}

/* Responsive */
@media (max-width: 768px) {
    .system-status-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .status-title {
        font-size: 24px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .maintenance-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .subscription-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .subscription-form {
        flex-direction: column;
        width: 100%;
        min-width: auto;
    }
    
    .subscription-input {
        width: 100%;
    }
}