select {
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.5;
    height: 42px;

    /* OK İKONU */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
.ozel-divider {
    border: none;
    height: 1px;
    background: linear-gradient(
            to right,
            rgba(16,185,129,0.9),
            rgba(16,185,129,0.2),
            rgba(16,185,129,0)
    );
    margin: 0 0 1.25rem 0;
}
.dark .ozel-divider {
    background: linear-gradient(
            to right,
            rgba(52,211,153,0.9),
            rgba(52,211,153,0.25),
            rgba(52,211,153,0)
    );
}
/* Mobil footer menü scrollbar gizle */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ozel-buton{
    min-height: 42px;
}

/* === GLASSMORPHISM UTILITIES === */

/* Temel glass card */
.glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Light mode glass */
:root:not(.dark) .glass {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* Glass card (tool kartları için) */
.glass-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(20,184,166,0.3);
    box-shadow: 0 8px 40px rgba(20,184,166,0.1);
    transform: translateY(-2px);
}
:root:not(.dark) .glass-card {
    background: rgba(255,255,255,0.6);
    border-color: rgba(0,0,0,0.08);
}
:root:not(.dark) .glass-card:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(20,184,166,0.3);
}

/* Glass input */
.glass-input {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.glass-input:focus {
    border-color: rgba(20,184,166,0.5);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
    outline: none;
}
:root:not(.dark) .glass-input {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.1);
}

/* Glass button */
.glass-btn {
    background: rgba(20,184,166,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(20,184,166,0.3);
    color: #14b8a6;
    transition: all 0.2s;
}
.glass-btn:hover {
    background: rgba(20,184,166,0.9);
    color: #fff;
    box-shadow: 0 4px 20px rgba(20,184,166,0.3);
}

/* Gradient border efekti */
.gradient-border {
    position: relative;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(20,184,166,0.4), rgba(52,211,153,0.1), rgba(20,184,166,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Header glass */
.glass-header {
    background: rgba(10,15,28,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
:root:not(.dark) .glass-header {
    background: rgba(255,255,255,0.8);
    border-bottom-color: rgba(0,0,0,0.06);
}

/* Footer glass */
.glass-footer {
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.06);
}
:root:not(.dark) .glass-footer {
    background: rgba(255,255,255,0.9);
    border-top-color: rgba(0,0,0,0.06);
}

/* IP kutusu glow efekti */
.ip-glow {
    box-shadow: 0 0 20px rgba(20,184,166,0.15), 0 0 60px rgba(20,184,166,0.05);
}

/* Tool card icon circle */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    backdrop-filter: blur(4px);
}

/* Module result container */
.glass-result {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
:root:not(.dark) .glass-result {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.06);
}

/* Animated gradient background */
.hero-gradient {
    background: radial-gradient(ellipse at 30% 0%, rgba(20,184,166,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, rgba(52,211,153,0.08) 0%, transparent 50%);
}
:root:not(.dark) .hero-gradient {
    background: radial-gradient(ellipse at 30% 0%, rgba(20,184,166,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 100%, rgba(52,211,153,0.05) 0%, transparent 50%);
}

/* Strength bar glassmorphism */
.glass-bar-track {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
}
:root:not(.dark) .glass-bar-track {
    background: rgba(0,0,0,0.06);
}

/* === FOOTER TOOL BUTTONS === */
.footer-tool-btn {
    position: relative;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Alt gradient çizgi (idle) */
.footer-tool-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #14b8a6, #34d399);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-tool-btn:hover::after,
.footer-tool-btn.active::after {
    width: 60%;
}

.footer-tool-btn:hover {
    background: rgba(20,184,166,0.08);
    border-color: rgba(20,184,166,0.25);
    box-shadow: 0 4px 20px rgba(20,184,166,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.footer-tool-btn:active {
    transform: translateY(0) scale(0.97);
}

.footer-tool-btn.active {
    background: rgba(20,184,166,0.12);
    border-color: rgba(20,184,166,0.35);
    box-shadow: 0 0 16px rgba(20,184,166,0.15);
}

/* Icon wrapper */
.footer-tool-btn .ft-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(20,184,166,0.08);
    border: 1px solid rgba(20,184,166,0.12);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-tool-btn:hover .ft-icon {
    background: rgba(20,184,166,0.18);
    border-color: rgba(20,184,166,0.3);
    box-shadow: 0 0 12px rgba(20,184,166,0.2);
    transform: scale(1.1);
}

.footer-tool-btn.active .ft-icon {
    background: rgba(20,184,166,0.2);
    border-color: rgba(20,184,166,0.4);
    box-shadow: 0 0 14px rgba(20,184,166,0.25);
}

/* Label */
.footer-tool-btn .ft-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}

.footer-tool-btn:hover .ft-label {
    opacity: 1;
    color: #14b8a6;
}

.footer-tool-btn.active .ft-label {
    opacity: 1;
    color: #2dd4bf;
}

/* Light mode */
:root:not(.dark) .footer-tool-btn {
    background: rgba(255,255,255,0.6);
    border-color: rgba(0,0,0,0.06);
}
:root:not(.dark) .footer-tool-btn:hover {
    background: rgba(20,184,166,0.06);
    border-color: rgba(20,184,166,0.2);
    box-shadow: 0 4px 20px rgba(20,184,166,0.08);
}
:root:not(.dark) .footer-tool-btn .ft-icon {
    background: rgba(20,184,166,0.06);
    border-color: rgba(20,184,166,0.1);
}
:root:not(.dark) .footer-tool-btn:hover .ft-icon {
    background: rgba(20,184,166,0.12);
    border-color: rgba(20,184,166,0.25);
}

/* === DNS TYPE BADGE === */
.dns-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(20,184,166,0.1);
    color: #14b8a6;
    border: 1px solid rgba(20,184,166,0.18);
}

/* === DNS ANALYSIS STATUS BADGES === */
.dns-status-ok {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.2);
}
.dns-status-warning {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    border: 1px solid rgba(245,158,11,0.2);
}
.dns-status-info {
    background: rgba(99,102,241,0.1);
    color: #818cf8;
    border: 1px solid rgba(99,102,241,0.2);
}
:root:not(.dark) .dns-status-ok {
    background: rgba(34,197,94,0.08);
    color: #16a34a;
}
:root:not(.dark) .dns-status-warning {
    background: rgba(245,158,11,0.08);
    color: #d97706;
}
:root:not(.dark) .dns-status-info {
    background: rgba(99,102,241,0.08);
    color: #6366f1;
}

/* DNS Score Ring */
.dns-score-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dns-score-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(#14b8a6 var(--score-pct, 100%), rgba(255,255,255,0.06) 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
:root:not(.dark) .dns-score-ring::before {
    background: conic-gradient(#14b8a6 var(--score-pct, 100%), rgba(0,0,0,0.06) 0);
}

.w-57 {
    width: 15rem;
}