/* styles.css transformed to hell unknown theme */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0b0a0f;
}
::-webkit-scrollbar-thumb {
    background: #3a1c3a;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a2c5a;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #08080a;
    color: #e0d8e8;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(139, 0, 139, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 85% 30%, rgba(75, 0, 130, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(47, 0, 100, 0.04) 0%, transparent 20%);
}

#background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(128, 0, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 0, 128, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, transparent 0%, #08080a 70%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(75, 0, 130, 0.3);
    background: rgba(15, 5, 25, 0.6);
    backdrop-filter: blur(10px);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 0, 139, 0.7);
    box-shadow: 
        0 15px 35px rgba(75, 0, 130, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(25, 5, 35, 0.8);
}

.gradient-text {
    background: linear-gradient(90deg, #8a2be2, #da70d6, #9370db, #4b0082);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% auto;
    animation: unknownGradient 4s ease infinite;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.emoji-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(75, 0, 130, 0.2);
    border-radius: 10px;
    margin-right: 12px;
    font-size: 20px;
    border: 1px solid rgba(139, 0, 139, 0.3);
    box-shadow: inset 0 0 10px rgba(138, 43, 226, 0.2);
}

.protocol-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.2), rgba(139, 0, 139, 0.1));
    border-radius: 20px;
    font-size: 14px;
    margin: 4px;
    border: 1px solid rgba(138, 43, 226, 0.4);
    color: #d8bfd8;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.protocol-badge:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(218, 112, 214, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.copy-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.2), rgba(139, 0, 139, 0.15));
    border: 1px solid rgba(138, 43, 226, 0.4);
    color: #e0d8e8;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(218, 112, 214, 0.25));
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.copy-btn:hover::after {
    content: 'Copy';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8a2be2, #9370db);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.alpha-badge {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
    color: white;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 10px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.4);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2, #4b0082, #9400d3);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9400d3, #8a2be2, #4b0082);
    box-shadow: 
        0 10px 25px rgba(138, 43, 226, 0.4),
        0 0 30px rgba(148, 0, 211, 0.3);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

.input-field {
    background: rgba(15, 5, 25, 0.7);
    border: 1px solid rgba(75, 0, 130, 0.5);
    color: #e0d8e8;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.input-field:focus {
    outline: none;
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 
        0 0 0 3px rgba(138, 43, 226, 0.2),
        inset 0 0 20px rgba(138, 43, 226, 0.1);
    background: rgba(25, 5, 35, 0.8);
}

a {
    color: #da70d6;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #da70d6, #9370db);
    transition: width 0.3s ease;
}

a:hover {
    color: #e0b0ff;
}

a:hover::after {
    width: 100%;
}

code {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.2), rgba(139, 0, 139, 0.15));
    color: #e0b0ff;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(138, 43, 226, 0.3);
    font-weight: 500;
}

::selection {
    background-color: rgba(138, 43, 226, 0.4);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: contain;
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.4),
        inset 0 0 20px rgba(138, 43, 226, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.logo-img:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 
        0 0 60px rgba(138, 43, 226, 0.6),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
    border-color: rgba(218, 112, 214, 0.6);
    filter: drop-shadow(0 0 20px rgba(218, 112, 214, 0.5));
}

.logo-fallback {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, #8a2be2, #9400d3, #4b0082);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 40px;
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.4),
        inset 0 0 20px rgba(138, 43, 226, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.logo-fallback::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateShine 3s linear infinite;
}

.logo-fallback:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 60px rgba(138, 43, 226, 0.6),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
}