/* Breadcrumb Styles */
.breadcrumb {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    padding: 15px 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.breadcrumb a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: #bdc3c7;
    font-weight: 500;
}

/* Main Background */
.main {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: calc(100vh - 80px);
}

.main-inner {
    padding: 20px 0 40px 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 50px 30px;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 126, 34, 0.2);
    text-align: center;
}

.hero-section h1 {
    color: #e67e22;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-section h1 i {
    font-size: 38px;
}

.hero-section p {
    color: #bdc3c7;
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e67e22 0%, #ff8800 100%);
}

.section-header h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff9f43 0%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.section-header p {
    color: #bdc3c7;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(145deg, #2a3547 0%, #1e2738 100%);
    border: 2px solid rgba(255, 159, 67, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff9f43;
    box-shadow: 0 20px 50px rgba(255, 159, 67, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff9f43 0%, #ff8800 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
}

.feature-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #2ecc71;
}

/* Özel animasyonlar için ekstra stiller */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature-card:nth-child(1) .feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation: float 3s ease-in-out infinite 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation: float 3s ease-in-out infinite 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation: float 3s ease-in-out infinite 1.5s;
}

.feature-card:nth-child(5) .feature-icon {
    animation: float 3s ease-in-out infinite 2s;
}

.feature-card:nth-child(6) .feature-icon {
    animation: float 3s ease-in-out infinite 2.5s;
}

/* Pulse animasyonu badge için */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.feature-badge {
    animation: pulse 2s infinite;
}

/* Widget Wrapper - Settings'i genişletmek için grid ayarı */
.widget-wrapper {
    display: grid;
    grid-template-columns: 400px 700px 500px; /* Settings orta sütunu genişlettim */
    gap: 25px;
    align-items: start;
}

/* Pariteler Section */
.parites {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-header-custom {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 20px 25px;
    border-bottom: 3px solid #e67e22;
}

.section-header-custom h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header-custom i {
    color: #e67e22;
    font-size: 20px;
}

.bilgi {
    padding: 15px 20px;
    background: rgba(230, 126, 34, 0.08);
    border-left: 3px solid #e67e22;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.bilgi b {
    color: #e67e22;
}

#currencies {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

#currencies::-webkit-scrollbar {
    width: 8px;
}

#currencies::-webkit-scrollbar-track {
    background: rgba(230, 126, 34, 0.1);
    border-radius: 4px;
}

#currencies::-webkit-scrollbar-thumb {
    background: #e67e22;
    border-radius: 4px;
}

#currencies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#currencies li {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(230, 126, 34, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

#currencies li:hover {
    background: rgba(230, 126, 34, 0.08);
}

#currencies input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e67e22;
}

#currencies li label {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
}

/* Settings Section - Genişletilmiş */
.settings {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 25px;
    min-width: 0;
}

.version-btn {
    padding: 12px 24px;
    background: rgba(230, 126, 34, 0.1);
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 10px;
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 20px;
}

.version-btn:hover {
    background: rgba(230, 126, 34, 0.2);
    border-color: #e67e22;
}

.version-btn.active {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-color: #e67e22;
    color: white;
}

.control-group {
    margin-bottom: 20px;
}

.control-label {
    display: block;
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.controls input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    background: rgba(230, 126, 34, 0.05);
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 0;
}

.controls input[type="text"]:focus {
    outline: none;
    border-color: #e67e22;
    background: rgba(230, 126, 34, 0.08);
}

.colorSelector {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid rgba(230, 126, 34, 0.3);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.colorSelector:hover {
    border-color: #e67e22;
    transform: scale(1.05);
}

.colorSelector div {
    width: 100%;
    height: 100%;
}

#code {
    width: 100%;
    height: 250px;
    padding: 15px;
    background: #0f1419;
    border: 2px solid rgba(230, 126, 34, 0.2);
    border-radius: 8px;
    color: #2ecc71;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    resize: vertical;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
}

#code:focus {
    outline: none;
    border-color: #e67e22;
}

#code:hover {
    border-color: #e67e22;
}

.copy-notice {
    color: #bdc3c7;
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

/* Preview Section */
.preview {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.preview-content {
    display: none;
    padding: 30px;
    min-height: 400px;
}

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

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1e2738 0%, #273449 100%);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 40px;
    margin-top: 40px;
}

.faq-section h2 {
    color: #e67e22;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: rgba(230, 126, 34, 0.05);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(230, 126, 34, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #e67e22;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 20px 25px;
    background: rgba(15, 20, 25, 0.5);
}

.faq-answer p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .widget-wrapper {
        grid-template-columns: 350px 600px 450px;
    }
}

@media (max-width: 1200px) {
    .widget-wrapper {
        grid-template-columns: 1fr;
    }

    .preview {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 35px 20px;
    }

    .hero-section h1 {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .settings,
    .faq-section,
    .feature-card {
        padding: 25px 20px;
    }

    .version-btn {
        width: 100%;
        margin-right: 0;
    }

    #code {
        font-size: 11px;
        height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .breadcrumb {
        padding: 12px 20px;
    }
}