/* ===================================
   TURUNCU-SİYAH TEMA ACCENT'LERİ
   =================================== */

/* Scrollbar styling - Orange & Black */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b35, #e85a2a);
    border-radius: 6px;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8c61, #ff6b35);
}

/* Selection color */
::selection {
    background: #ff6b35;
    color: #ffffff;
}

::-moz-selection {
    background: #ff6b35;
    color: #ffffff;
}

/* Focus states - Orange glow */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Links - Orange on hover */
a {
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff6b35;
}

/* Buttons focus glow */
.btn-primary:focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.3);
}

/* Loading animation - Orange */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Orange accent borders */
.accent-border-top {
    border-top: 3px solid #ff6b35;
}

.accent-border-left {
    border-left: 3px solid #ff6b35;
}

/* Orange text utilities */
.text-orange {
    color: #ff6b35 !important;
}

.text-black {
    color: #0a0a0a !important;
}

.bg-orange {
    background: #ff6b35 !important;
}

.bg-black {
    background: #0a0a0a !important;
}

/* Orange glow utilities */
.glow-orange {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.glow-orange-strong {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.7);
}

/* Animated gradient text - Orange */
.gradient-text {
    background: linear-gradient(90deg, #ff6b35, #ff9066, #ff6b35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Orange divider */
.divider-orange {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 40px 0;
}

/* Black section with orange accents */
.section-black {
    background: #0a0a0a;
    color: #ffffff;
    position: relative;
}

.section-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent);
    pointer-events: none;
}

/* Orange pulse animation */
@keyframes orangePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

.pulse-orange {
    animation: orangePulse 2s infinite;
}

/* Badge with orange accent */
.badge-orange {
    background: linear-gradient(135deg, #ff6b35, #e85a2a);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Card with orange hover */
.card-orange-hover {
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.card-orange-hover:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

/* Input with orange focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Orange progress bar */
.progress-bar-orange {
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-orange::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff9066);
    animation: progressSlide 2s ease-in-out infinite;
}

@keyframes progressSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Orange tooltip */
.tooltip-orange {
    position: relative;
}

.tooltip-orange::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    color: #ff6b35;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid #ff6b35;
}

.tooltip-orange:hover::after {
    opacity: 1;
}

/* Neon glow effect - Orange */
.neon-orange {
    color: #ff6b35;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4),
        0 0 40px rgba(255, 107, 53, 0.2);
}

/* Animated border - Orange */
.border-animated-orange {
    position: relative;
}

.border-animated-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff9066, #ff6b35);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    to { background-position: 200% 0; }
}

