.int8-logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    position: relative;
}

.int8-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.int8-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.int8-icon::before {
    content: "I";
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.int8-text {
    font-size: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.int8-text .ai-part {
    font-weight: 300;
    margin-left: 4px;
}

/* Compact version for nav */
.int8-logo-compact {
    display: inline-flex;
    align-items: center;
}

.int8-logo-compact .int8-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.int8-logo-compact .int8-icon::before {
    font-size: 20px;
}

.int8-logo-compact .int8-text {
    font-size: 18px;
}
